Mercurial > wow > bloodhound2
changeset 0:ff01eb61abab
Initial beta version
Updated original addon herb and ore database
Fixed the configuration options (maybe - requires testing)
Added the 2 new zones in Pandaria (Isle of Giants and Isle of Thunder)
author | only1yzerman |
---|---|
date | Thu, 09 May 2013 18:53:18 -0400 |
parents | |
children | 6ab5b23877a6 |
files | .hgignore Bloodhound2.lua Bloodhound2.toc Circle.tga Config.lua HerbDatabase.lua LocalizeDefault.lua MinimapArrow.tga OreDatabase.lua ZoneDatum.lua |
diffstat | 9 files changed, 1693 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Bloodhound2.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,425 @@ + +-------- SINGLE OBJECT IN GLOBAL NAMESPACE + +Bloodhound2 = {}; + + +-------- CREATE OUR INVISIBLE FRAME TO RECEIVE EVENTS AND UPDATES + +local frame = CreateFrame("Frame", nil, UIParent); +Bloodhound2.Frame = frame; + + +-------- DEFINE AND REGISTER EVENT HANDLERS + +local events = {}; + +function events:MINIMAP_UPDATE_TRACKING(...) + if player and player.Z then + Bloodhound2.UpdateMinimap(); + end +end + +frame:SetScript("OnEvent", + function(self, event, ...) + events[event](self, ...); + end); + +local k, v; + +for k, v in pairs(events) do + frame:RegisterEvent(k); +end + + + + + + +---------------------------------------------------------------------------------------------------- +-------- STORES A POINTER TO THE MINIMAP LOCALLY SO IT CAN BE CHANGED BY A RE-PARENTING FUNCTION +-------- - Added by Zasurus(www.curseforge.com/profiles/Zasurus/) for MiniHugeHUD +---------------------------------------------------------------------------------------------------- +local Minimap = _G.Minimap; +Minimap.MinimapName = "Minimap"; +---------------------------------------------------------------------------------------------------- + + + + + + +-------- WORK AROUND WOW BUG THAT CAUSES GetPlayerMapPosition TO RETURN 0,0 + +WorldMapFrame:Show() +WorldMapFrame:Hide() + + +-------- HOOK INTO PER-FRAME UPDATE HANDLER + +local player = {}; -- player position +local totalElapsed = 0.0; -- time elapsed since last update +local updatePeriod = 0.1; -- sec. interval for each minimap update +local cpuThrottle = 0.05; -- throttle to 5% usage while moving +local minUpdatePeriod = 0.04; -- sec. don't update more often than this +local lastzoom = 0; -- previous minimap zoom level +local updateTotalTime = 0; -- time spent updating minimap +local updateCount = 0; -- number of times minimap updated + +---------------------------------------------------------------------------------------------------- +-------- MOVED OnUpdate Script into seperate function so it could be called by re-parent function +-------- - Added by Zasurus(www.curseforge.com/profiles/Zasurus/) for MiniHugeHUD +---------------------------------------------------------------------------------------------------- +frame:SetScript("OnUpdate", function(self, elapsed) Bloodhound2.OnUpdateScript(self, elapsed) end); +function Bloodhound2.OnUpdateScript(self, elapsed) + totalElapsed = totalElapsed + elapsed; -- measure total elapsed time + + if (totalElapsed >= updatePeriod) then -- if enough time has passed + totalElapsed = mod(totalElapsed, updatePeriod); + local isInInstance, instanceType = IsInInstance() + + if isInInstance ~= nil then + Bloodhound2.DrawArrow(0, 0, 0, 0) + return + end + + local cmap = GetCurrentMapContinent(); + local zmap = GetCurrentMapZone(); + SetMapToCurrentZone(); + local c = GetCurrentMapContinent(); -- get current player position + local z = GetCurrentMapZone(); + local x, y = GetPlayerMapPosition("player"); + local f = GetPlayerFacing(); + local m = Minimap:GetZoom(); + SetMapZoom(cmap, zmap); + + if (c ~= player.C and c ~= 0) then -- reload continent data if continent has changed + Bloodhound2.HerbNodes, Bloodhound2.ContinentHerbs = Bloodhound2.ReloadNodes(Bloodhound2.HerbDatabase[c], Bloodhound2.ZoneDatum[c]); + Bloodhound2.OreNodes, Bloodhound2.ContinentOre = Bloodhound2.ReloadNodes(Bloodhound2.OreDatabase[c], Bloodhound2.ZoneDatum[c]); + end + + if (c ~= player.C or z ~= player.Z or x ~= player.X or y ~= player.Y or f ~= player.F or m ~= lastzoom) then + player.C = c; + player.Z = z; + player.X = x; + player.Y = y; + player.F = f; + lastzoom = m; + local t0 = GetTime(); + Bloodhound2.UpdateMinimap(); -- player has moved or minimap scale has changed + local t1 = GetTime() - t0; + + -- calculate and throttle CPU usage to 5% + updateTotalTime = updateTotalTime + t1 + + if updateCount > 10 then + local avgTime = updateTotalTime / updateCount + updatePeriod = avgTime / cpuThrottle + Print(updateCount); + + if updatePeriod < minUpdatePeriod then + updatePeriod = minUpdatePeriod + end + + if updateCount >= 100 then + updateTotalTime = updateTotalTime / 2 + updateCount = updateCount / 2 + end + end + end + end + end + +function Bloodhound2.UpdateMinimap() + local facing = 0 + + if GetCVar("rotateMinimap") ~= "0" then + facing = GetPlayerFacing() * 57.2957795; + end + + local cf = cos(facing); + local sf = sin(facing); + local gx, gy = Bloodhound2.CalculateForce(cf, sf); + Bloodhound2.DrawArrow(gx, gy, cf, sf); +end + + +-------- DATABASE LOADING + +Bloodhound2.HerbNodes = {}; +Bloodhound2.OreNodes = {}; +Bloodhound2.ContinentHerbs = {}; +Bloodhound2.ContinentOre = {}; + +function Bloodhound2.ReloadNodes(database, zoneDatum) + + if (database == nil) then return {}; end + + local nodes = {}; + local db = {}; + + local zoneNode, positions; + for zoneNode, positions in pairs(database) do + local _, _, zone, node = string.find(zoneNode, "Z(%d+)N(%d+)"); + local z = tonumber(zone); + local datum = zoneDatum[z]; + local n = tonumber(node); + db[n] = true; + local pxy = 0 + + for _,pos in ipairs(positions) do + local xy = pos + pxy + pxy = xy + local x = floor(xy / 1000); + local y = xy - 1000 * x; + x, y = Bloodhound2.ZoneDatum.LocalToGlobal(x / 1000.0, y / 1000.0, datum); + tinsert(nodes, {Z = z, N = n, X = x, Y = y, TimeStamp = time() - 60 - 3600 * math.random() }); + end + end + + return nodes, db; +end + + +-------- UTILITY FUNCTIONS + +function Print(message) + DEFAULT_CHAT_FRAME:AddMessage(message); +end + + + +-------- ARROW LOADING AND DISPLAY + +local function GetArrowTexture() + + local tex = Bloodhound2.GravityTexture + + if not ( tex ) then + tex = Minimap:CreateTexture(); + tex:SetTexture("Interface\\AddOns\\Bloodhound2\\MinimapArrow"); + Bloodhound2.GravityTexture = tex + end + + return tex +end + +function Bloodhound2.DrawArrow(grx, gry, cf, sf) + + local gravityX = grx * cf - gry * sf; + local gravityY = gry * cf + grx * sf; + local gravityTexture = GetArrowTexture() + + if (gravityX == 0 and gravityY == 0) then + gravityTexture:Hide(); + return; + end + + local gravityScale = sqrt(gravityX * gravityX + gravityY * gravityY) + gravityX = gravityX / gravityScale + gravityY = gravityY / gravityScale + + -- determine rotated and scaled texture coordinates + local gy = (gravityX + gravityY) / 2.82843 + local gx = (gravityX - gravityY) / 2.82843 + + gravityTexture:SetTexCoord( + 0.5 - gx, 0.5 + gy, + 0.5 + gy, 0.5 + gx, + 0.5 - gy, 0.5 - gx, + 0.5 + gx, 0.5 - gy); + + gravityTexture:SetPoint("CENTER", Minimap, "CENTER", 40 * gravityX, -40 * gravityY) + gravityTexture:Show() +end + + +-------- "RUBY" MANAGEMENT (REUSE RUBIES AND ONLY CREATE NEW ONES WHEN NEEDED) + +local circles = {}; +local nextCircle = 1; +local circleScale = 1; + +function Bloodhound2.ResetCircles() + nextCircle = 1; + circleScale = Minimap:GetHeight() * 0.015 / (7 - Minimap:GetZoom()); +end + +function Bloodhound2.SetCircle(dx, dy, alpha) + local circle; + if (#circles < nextCircle) then + circle = Minimap:CreateTexture(); + circles[nextCircle] = circle; + circle:SetTexture("Interface\\AddOns\\Bloodhound2\\Circle"); + circle:SetWidth(12); + circle:SetHeight(12); + circle:SetAlpha(1); + else + circle = circles[nextCircle]; + end + + nextCircle = nextCircle + 1; + circle:SetPoint("CENTER", Minimap, "CENTER", dx * circleScale, -dy * circleScale); + circle:SetAlpha(alpha); + circle:Show(); +end + +function Bloodhound2.HideExtraCircles() + for i=nextCircle,#circles,1 do + circles[i]:Hide(); + end +end + + + +-------- MAIN FUNCTION FOR CALCULATING RECOMMENDED DIRECTION OF TRAVEL + +function Bloodhound2.CalculateForce(cf, sf) + + local c = player.C; -- get player position + local z = player.Z; + local x = player.X; + local y = player.Y; + + if c == 0 or z == 0 then return 0,0 end -- don't draw arrow if using world coordinates + if not Bloodhound2.ZoneDatum then return 0,0 end + + local datum = Bloodhound2.ZoneDatum[c][z]; -- get scale and offset for current zone map + if datum == nil then return 0,0 end + + local gx, gy = Bloodhound2.ZoneDatum.LocalToGlobal(x, y, datum); -- convert player position to world coordinates + local now = time(); -- value to use for time-stamping visited nodes + local fx = 0; -- cumulative force, X-component + local fy = 0; -- cumulative force, Y-component + local multiZone = true; -- whether to include more than the current zone + local inspectionRadius = 60; + + if Settings then + if Settings.MultiZoneMode==0 then + multiZone = IsFlying(); + elseif Settings.MultiZoneMode==1 then + multiZone = true; + else + multiZone = false; + end + + if Settings.InspectionRadius then + inspectionRadius = Settings.InspectionRadius; + end + end + + local settingsFilter = {}; -- which node types to ignore + local nodes = {}; -- which nodes to track + + for i=1,GetNumTrackingTypes(),1 do + local name, _, active, _ = GetTrackingInfo(i); + if (active == 1) then + if (name == L["Find Herbs"]) then + for k,v in pairs(Settings.HerbFilter) do settingsFilter[k] = v end + for k,v in pairs(Bloodhound2.HerbNodes) do tinsert(nodes, v) end + elseif (name == L["Find Minerals"]) then + for k,v in pairs(Settings.OreFilter) do settingsFilter[k] = v end + for k,v in pairs(Bloodhound2.OreNodes) do tinsert(nodes, v) end + end + end + end + + local avoidZones = {}; -- which zones to avoid + + if multiZone then + local cmc = GetCurrentMapContinent() + + if not Settings.ZoneFilter[cmc] then + Settings.ZoneFilter[cmc] = {} + end + + for k,v in pairs(Settings.ZoneFilter[GetCurrentMapContinent()]) do + avoidZones[k] = true; + end + end + + local avoidNodes = {}; -- which node types to ignore + + if settingsFilter then + for k,v in pairs(settingsFilter) do + avoidNodes[k] = true; + end + end + + local minimapSize = Minimap:GetWidth() / 2 - 2; + Bloodhound2.ResetCircles(); + + for key, node in pairs(nodes) do + if (avoidNodes[node.N] ~= true) and (avoidZones[node.Z] ~= true) and (multiZone or (node.Z == z)) then + local dx = node.X - gx; + local dy = node.Y - gy; + local rsqrd = dx * dx + dy * dy; + local r = sqrt(rsqrd); -- distance to node + local age = now - node.TimeStamp; -- time since last inspected + + if (r < inspectionRadius) then + node.TimeStamp = now; + else + --[[ + The magnitude of the force is proportional to the age and inversely + proportional to the square of the distance, and the direction is towards + the node. The math for this starts out as + + local force = age / rsqrd + local angle = math.atan2(dy, dx) + fx = fx + force * math.cos(angle) + fy = fy + force * math.sin(angle) + + But cos(angle) is just dx/r and sin(angle) is just dy/r, so we don't + actually need atan2, cos, and sin and instead we can write this as + ]] + local force = age / (r * rsqrd) + fx = fx + force * dx + fy = fy + force * dy + end + + if (r * circleScale < minimapSize) and (age > 60) then -- draw ruby + local alpha = r / (minimapSize / circleScale) / 0.7 - 0.3; + alpha = max(0, alpha); + Bloodhound2.SetCircle(dx * cf - dy * sf, dy * cf + dx * sf, alpha); + end + end + end + + Bloodhound2.HideExtraCircles(); + return fx, fy; +end + + + + + + + +---------------------------------------------------------------------------------------------------- +-------- REPARENT THE MINIMAP FOR 3RD PARTY MINIMAPS AND HUDS +-------- - Added by Zasurus(www.curseforge.com/profiles/Zasurus/) for MiniHugeHUD +---------------------------------------------------------------------------------------------------- +function Bloodhound2.ReparentMinimap(NewMinimap, MinimapName) + Bloodhound2.OnUpdateScript(nil, 1000000) + -- Hide the circles currently on the minimap + Bloodhound2.ResetCircles(); + Bloodhound2.HideExtraCircles(); + -- Hide this minimap's copy of the arrow + if Bloodhound2.GravityTexture then + Bloodhound2.GravityTexture:Hide(); + end; + -- Store the current set of circles and arrow on this minimap for later + Minimap.Bloodhound2Circles = circles; + Minimap.Bloodhound2Arrow = Bloodhound2.GravityTexture; + -- Pull back (or create for circles) the arrow and circles for this minimap + circles = NewMinimap.Bloodhound2Circles or {}; + ZasCircles = circles; + Bloodhound2.GravityTexture = NewMinimap.Bloodhound2Arrow; + -- Move Bloodhound2's Local Minimap pointer to the new minimap + Minimap = NewMinimap; + Minimap.MinimapName = MinimapName; + -- Update all points + Bloodhound2.UpdateMinimap(); +end +---------------------------------------------------------------------------------------------------- \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Bloodhound2.toc Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,18 @@ +## Interface: 50200 +## Title: Bloodhound2 +## Author: Paul Louis +## Former Author: Bret Mulvey +## Version: 2.0b +## HerbDB: 5/8/2013 +## OreDB: 5/9/2013 +## Notes: An herb and ore gathering add-on with a focus on ease-of-use. +## eMail: plouis3@hotmail.com +## DefaultState: Enabled +## LoadOnDemand: 0 +## SavedVariables: Settings +LocalizeDefault.lua +Bloodhound2.lua +HerbDatabase.lua +OreDatabase.lua +ZoneDatum.lua +Config.lua
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Config.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,323 @@ +-------- YOU'RE ON YOUR OWN HERE, THIS IS A FRIKKIN MESS - Osmium +-------- Challenge Accepted - Whyzerman + +local element; +local frame; + +Settings = {}; +Settings.MultiZoneMode = 0; +Settings.HerbFilter = {}; +Settings.OreFilter = {}; +Settings.ZoneFilter = {{}, {}, {}, {}, {}}; +Settings.InspectionRadius = 60; +local function Title(text) + local str = frame:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge"); + str:SetPoint("TOPLEFT", element, "TOPLEFT", 16, -16); + str:SetJustifyH("LEFT"); + str:SetJustifyV("TOP"); + str:SetText(text); + element = str; +end + +local function Column2(offset) + local str = frame:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge"); + str:SetPoint("TOPLEFT", element, "TOPRIGHT", -offset, -16); + str:SetText(" "); + element = str; +end + +local function Heading(text) + local str = frame:CreateFontString(nil, "OVERLAY", "GameFontHighlight"); + str:SetPoint("TOPLEFT", element, "BOTTOMLEFT", 0, -8); + str:SetText(text); + element = str; +end + +local ddCount = 0; + +local function DropDown(settings, key, width, init) + ddCount = ddCount + 1; + local dd = CreateFrame("Frame", "dropDown"..ddCount, frame, "UIDropDownMenuTemplate"); + dd:EnableMouse(true); + dd:SetPoint("TOPLEFT", element, "BOTTOMLEFT", 0, -8); + dd.State = {}; + UIDropDownMenu_Initialize(dd, init); + UIDropDownMenu_SetWidth(dd, width); + UIDropDownMenu_JustifyText(dd, "LEFT"); + UIDropDownMenu_SetSelectedValue(dd, settings[key]); + element = dd; +end + +function AddButton(settings, key, menu, label, value) + local info = UIDropDownMenu_CreateInfo(); + info.text = label; + info.value = value; + info.owner = menu; + info.func = function() + UIDropDownMenu_SetSelectedValue(menu, value); + settings[key] = value; + Bloodhound2.UpdateMinimap(); + end; + UIDropDownMenu_AddButton(info); +end + +local cbCount = 0; + +function CheckBox(label, value, relative, anchor, dx, dy, state) + cbCount = cbCount + 1; + local cb = CreateFrame("CheckButton", "checkBox"..cbCount, frame, "UICheckButtonTemplate"); + cb:SetWidth(16); + cb:SetHeight(16); + cb:SetPoint("TOPLEFT", relative, anchor, dx, dy); + local text = getglobal(cb:GetName() .. "Text"); + text:SetText(label); + cb:SetChecked(not state[value]); + cb:SetScript("OnClick", function(self) + if (self:GetChecked()) then + state[value] = nil; + else + state[value] = 1; + end + Bloodhound2.UpdateMinimap(); + end); + element = cb; + return text:GetWidth(); +end + +function ContinentName() + return select(GetCurrentMapContinent(), GetMapContinents()); +end + +function CheckBoxes(table, state) + local relative; + local bottom; + local height = 1; + local maxWidth = 0; + local i = 0; + local checkboxes = {}; + + for k, v in pairs(table) do + height = height + 1; + end + + height = floor(height / 2); + if height > 19 then height = 19; end; + + for k, v in pairs(table) do + i = i + 1; + if (i > 1) and (mod(i, height) == 1) then + width = CheckBox(v, k, relative, "TOPRIGHT", maxWidth + 6, 0, state); + relative = element; + maxWidth = width; + else + width = CheckBox(v, k, element, "BOTTOMLEFT", 0, 0, state); + if (i == 1) then relative = element; end; + maxWidth = max(width, maxWidth); + end + if (i == height) then bottom = element; end; + checkboxes[k] = element; + end + + local button = CreateFrame("Button", nil, frame, "UIPanelButtonTemplate"); + button:SetText(L["All"]); + local allWidth = button:GetTextWidth() + 30; + button:SetWidth(allWidth); + button:SetHeight(22); + button:SetPoint("TOPLEFT", bottom, "TOPLEFT", 0, -20); + button:SetScript("OnClick", + function(self, button, down) + for k, v in pairs(table) do + checkboxes[k]:SetChecked(true); + state[k] = nil; + end + end + ); + + element = button; + + local button = CreateFrame("Button", nil, frame, "UIPanelButtonTemplate"); + button:SetText(L["None"]); + button:SetWidth(button:GetTextWidth() + 30); + button:SetHeight(22); + button:SetPoint("TOPLEFT", bottom, "TOPLEFT", allWidth + 20, -20); + button:SetScript("OnClick", + function(self, button, down) + for k, v in pairs(table) do + checkboxes[k]:SetChecked(false); + state[k] = 1; + end + end + ); +end + +function AddZones(...) + local table = {}; + + for i=1,select("#", ...),1 do + table[i] = select(i, ...); + end + + if not Settings.ZoneFilter then + Settings.ZoneFilter = {{},{},{},{},{}}; + end + + local c = GetCurrentMapContinent() + + if not Settings.ZoneFilter[c] then + Settings.ZoneFilter[c] = {} + end + + CheckBoxes(table, Settings.ZoneFilter[c]); +end + +function AddHerbs() + local table = {}; + + for h, v in pairs(Bloodhound2.ContinentHerbs) do + local name = L[h]; + if not name then name="Herb "..h; end; + table[h] = name; + end + + if not Settings.HerbFilter then + Settings.HerbFilter = {}; + end + + CheckBoxes(table, Settings.HerbFilter); +end + +function AddOre() + local table = {}; + + for h, v in pairs(Bloodhound2.ContinentOre) do + local name = L[h]; + if not name then name="Ore "..h; end; + table[h] = name; + end + + if not Settings.OreFilter then + Settings.OreFilter = {}; + end + + CheckBoxes(table, Settings.OreFilter); +end + +local function CopyTable(table) + local copy = {}; + for k,v in pairs(table) do + if (type(v) == "table") then + copy[k] = CopyTable(v); + else + copy[k] = v; + end + end + return copy; +end + +local configFrame; +local BackupSettings; + +local function RefreshConfigFrame() + if (configFrame) then + configFrame:Hide(); + end + + BackupSettings = CopyTable(Settings); + + configFrame = CreateFrame("Frame", nil, Bloodhound2.panel); + configFrame:SetAllPoints(Bloodhound2.panel); + frame = configFrame; + element = frame; + Title(L["Bloodhound2 Options"]); + Heading(L["Multi-Zone"]); + DropDown(Settings, "MultiZoneMode", 120, function(menu) + AddButton(Settings, "MultiZoneMode", menu, L["While flying"], 0); + AddButton(Settings, "MultiZoneMode", menu, L["Always"], 1); + AddButton(Settings, "MultiZoneMode", menu, L["Never"], 2); + end); + Heading(L["Zones"].." ("..ContinentName()..")"); + AddZones(GetMapZones(GetCurrentMapContinent())); + element = frame; + Column2(150); + Heading(L["Inspection radius"]); + DropDown(Settings, "InspectionRadius", 70, function(menu) + AddButton(Settings, "InspectionRadius", menu, 30, 30); + AddButton(Settings, "InspectionRadius", menu, 35, 35); + AddButton(Settings, "InspectionRadius", menu, 40, 40); + AddButton(Settings, "InspectionRadius", menu, 45, 45); + AddButton(Settings, "InspectionRadius", menu, 50, 50); + AddButton(Settings, "InspectionRadius", menu, 60, 60); + AddButton(Settings, "InspectionRadius", menu, 70, 70); + AddButton(Settings, "InspectionRadius", menu, 80, 80); + AddButton(Settings, "InspectionRadius", menu, 90, 90); + AddButton(Settings, "InspectionRadius", menu, 100, 100); + AddButton(Settings, "InspectionRadius", menu, 120, 120); + end); +end + +local herbFrame; + +local function RefreshHerbs() + if (herbFrame) then herbFrame:Hide(); end; + herbFrame = CreateFrame("Frame", nil, Bloodhound2.herbPanel); + herbFrame:SetAllPoints(Bloodhound2.herbPanel); + frame = herbFrame; + element = frame; + Title(L["Bloodhound2 Options"]); + Heading(L["Herbs"].." ("..ContinentName()..")"); + AddHerbs(); +end + +local oreFrame; + +local function RefreshOre() + if (oreFrame) then oreFrame:Hide(); end; + oreFrame= CreateFrame("Frame", nil, Bloodhound2.orePanel); + oreFrame:SetAllPoints(Bloodhound2.orePanel); + frame = oreFrame; + element = frame; + Title(L["Bloodhound2 Options"]); + Heading(L["Minerals"].." ("..ContinentName()..")"); + AddOre(); +end + +local function RestoreHerbDefaults() + Settings.HerbFilter = {}; +end + +local function RestoreOreDefaults() + Settings.OreFilter = {}; +end + +local function RestoreZoneDefaults() + Settings.MultiZoneMode = 0; + Settings.InspectionRadius = 60; + Settings.ZoneFilter[GetCurrentMapContinent()] = {}; +end + +Bloodhound2.panel = CreateFrame("FRAME", "Bloodhound2", Bloodhound2.Frame); +Bloodhound2.panel.name = L["Bloodhound2"]; +Bloodhound2.panel.default = RestoreZoneDefaults; +Bloodhound2.panel.okay = function() end; +Bloodhound2.panel.cancel = function() Settings = BackupSettings; Bloodhound2.UpdateMinimap(); end; +Bloodhound2.panel.refresh = RefreshConfigFrame; +InterfaceOptions_AddCategory(Bloodhound2.panel); + +Bloodhound2.herbPanel = CreateFrame("FRAME", "Bloodhound2_Herbs", Bloodhound2.Frame); +Bloodhound2.herbPanel.name = L["Herbs"]; +Bloodhound2.herbPanel.parent = "Bloodhound2"; +Bloodhound2.herbPanel.default = RestoreHerbDefaults; +Bloodhound2.herbPanel.okay = function() end; +Bloodhound2.herbPanel.cancel = function() end; +Bloodhound2.herbPanel.refresh = RefreshHerbs; +InterfaceOptions_AddCategory(Bloodhound2.herbPanel); + +Bloodhound2.orePanel = CreateFrame("FRAME", "Bloodhound2_Ore", Bloodhound2.Frame); +Bloodhound2.orePanel.name = L["Minerals"]; +Bloodhound2.orePanel.parent = "Bloodhound2"; +Bloodhound2.orePanel.default = RestoreOreDefaults; +Bloodhound2.orePanel.okay = function() end; +Bloodhound2.orePanel.cancel = function() end; +Bloodhound2.orePanel.refresh = RefreshOre; +InterfaceOptions_AddCategory(Bloodhound2.orePanel); +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/HerbDatabase.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,362 @@ +-- Don't change anything here. Adding coords here without knowing what you are doing will break the addon. +-- You've been warned. - Whyzerman + +Bloodhound2.HerbDatabase = +{ + { -- continent 1 - Kalimdor + Z4N1617 ={ 271674,1,9006,13000,53031,7,17007, }, + Z5N1617 ={ 114880,999,9930,29034,999,91823,999,4088,5817,18083,1968,14947,164,7887,8146,1,2780,159,1,838,2981,1,9081,11910,2071,15180,4400,43,13366,84,12688,1391,569,4256,1,961,3738,1,1407,7050,680,211,109,6500,4373,999,9955,702,4022,439,7937,1653,1831,2,317,3,2651,2253,5051,9884,267,733,268,3565,10214,11743,1,1183,950,2001,3421,4467,457,5606,6144,1036,10096,998,3132,817,2843,5394,8518,3123,5195,2917,8821,1,1370,999,6053,5875,11918,999, }, + Z6N1617 ={ 188394,1,1928,26304,6784,18957,4099,3041,8065,21766,6286,6782,2146,36167,4063,1611,22150,1,27218,602,7879,1,6085,3414,3738,5924,13173,1747,1077,1003,4485,1999,5436,7158,1001,6746,17050,1000,2600,603,2001,3970,2999,2,2294,34648,1001,2375,7912,4611,5056,14478,4585,4451,4484,3121,9175,5163,8669,9405,3,1879,20797,7215,1915,812,1190,12884,2275,1001,8778,20606,12529,3896,1,999,29643, }, + Z8N1617 ={ 448244,2001,5005,6037,1021,1973,2986,3041,1975,950,3994,5008,2078,3999,10,5003,62869,2,8009,999,1003, }, + Z11N1617 ={ 361297,1991,10009,4001,6918,1000,995,2298,2692,11288,2015,1,999,1,16639,1,4001,997,5163,1996,999,1986,5022,21988,8506,1494,1000,3035,5464,3525,3426,3996,1500,2006,4428,867,987,19,981,19,1204,1,5920,999,2524,461,6546,8006,7005,4248,1,3004,992,9883,1,4013,1891,437,1578,1,113,374,511,114,376,491,1,2515,774,1,1029,178,832,1,949,1068,1110,1000,746,5104,7906,996, }, + Z18N1617 ={ 303250,18018,2158,9773,15145,1,1037,876,1295,238,2622,1000,203,5112,846,1,2179,1,684,8677,64,541,6953,460,2,1236,1115,275,2764,5657,248,159,1040,2074,1,20789,1,1609,530,2,4566,1356,999,1585,10226,8296,3673,155,4199,4415,412,3874,6792,1,3162,110,4849,2369,597,402,1799,2,7633,2306,1001,9242,1529,998,1,4109,1001,91,3708,1,5377,13742,366,635,213,786,1,213,4742,8374,3,4875,4082,2,2705,4102,1001,58,8265,811,999,2137,1,4726,1963,1,999,1,929,1,1277,62,2,10116,16951,3945,13141,7873,6055,18044, }, + Z19N1617 ={ 654474,2,2006,16715,1141,7,994,6,846,6,10399,1994, }, + Z26N1617 ={ 378279,1973,7030,74,1972,9070,975,1856,5290,1048,3133,618,3222,1001,1743,1,4955,1024,1,1059,178,822,84,64,30,52,1,3119,1,7634,2914,1464,2919,4737,277,5060,2719,3074,897,3321,597,955,7127,314,1,578,385,1014,687,1063,814,90,2087,4076,5757,1985,6289,1028,2099,6824,3201,6797,5070,74,2,5963,2898,1178,1,1879,2,1148,1,8959,1,1000,955,5043,6038,946,2030,1831,11194,3903,3083,3890,3074,3848,10073,4088,8931,80,919,32,49,10881,96,948,4044,7925,2043,1895,1,986,1000,985,2102,5924,999,2037,9939,92,6942,999,29,1960, }, + Z29N1617 ={ 477132, }, + Z4N1618 ={ 193639,4110,4894,2019,1000,1082,4990,2918,1000,1095,75873,8008,1020,11125,8006,1014,172038,4985,3012,189486,1,11991,5013,19002, }, + Z5N1618 ={ 109889,1905,17039,13083,16877,9081,63810,1,20045,9905,999,4070,1001,4042,2824,999,7030,6084,1,1947,18948,2104,2,57,29868,5701,4062,1,7349,1952,4079,1001,8386,1000,4412,1,58,628,8084,8049,2,2198,1,539,1,7398,7159,1045,1000,567,1,1141,5185,7531,432,1,2659,1,87,3,959,1,1001,1077,3045,1676,2,3348,1000,1,2214,22493,2939,8277,1926,1,15939,2,8212,3156,1,6963,14865,217,716,3236,5707,936,20403,7826,2,5131,6827,1, }, + Z6N1618 ={ 233486,28871,4255,17886,28104,6945,1877,23076,19943,8858,1998,23125,1,2287,2792,3,4728,4675,1420,14050,13184,1,11326,6816,3900,4701,1199,997,22043,11293,6949,3910,1001,3673,34919,172,999,24420,3610,2134,4791,21478,6828,1,14859,1,12885,6322,927,54078, }, + Z8N1618 ={ 446373,21,1,963,5057,1999,953,48,942,3055, }, + Z11N1618 ={ 356404,1988,6019,1000,1992,5046,5835,2,160,742,1980,294,1846,1014,999,2127,3729,9129,1867,4021,226,4984,2,5016,2046,1942,3758,7289,6752,224,5766,1000,7255,1,4755,1020,6573,1000,14981,1,3013,594,4995,1015,6398,552,36,6112,3220,989,1634,2021,1,3198,2,54,945,55,915,1,189,1,775,14,1,3114,942,1010,1025,194,949,1000,825,1,3211,2948,10,61,527,4011,1401,1,5586,1000,13,1,1813,2239,747,158,852,1160,1,66,2026,175,826,749,408,1823,322,1988,606,1,255,1887,1130,881,255,2,756,3829,9417, }, + Z18N1618 ={ 316232,12038,5939,1000,10097,6967,215,938,5918,1,7171,4877,4225,836,1,110,1089,1,5529,1,4966,2265,4710,384,18108,954,553,447,552,3320,1,209,1,6853,5689,7214,63,1,3642,9192,3878,184,7065,4853,1044,158,11630,6048,5202,1925,1000,16121,1046,3741,1,1129,1001,4787,149,879,524,1,475,11037,257,1,5933,4929,1329,588,1,5357,999,3779,84,1,12027,1798,6394,1,4565,280,46,674,280,46,5044,25974,1,4119,1,959,1,30017,1910,5055, }, + Z19N1618 ={ 563519,93930,14005,1,21094,5004, }, + Z26N1618 ={ 384308,5973,4072,1000,5026,1041,828,2146,1,2190,959,1,4788,7151,1,118,3924,3767,1,1129,1,1264,2775,1,787,139,3237,9016,1,4659,1,1097,2857,86,35,880,86,33,2233,870,2795,47,1,2337,3978,1682,1039,16,1914,1176,777,1,157,842,157,4219,672,3934,1000,14258,1,3109,1,1075,10874,1,31,1000,2944,7056,2068,2941,1959,1,125,809,13174,903,4027,6045,12938,1050,46,818,4151,9930,5069,904,1,4037,900,2011,171,1,853,4070,1000,1957,4989,1,7099,1,3931,978,1,5944,4063,1000,4911,11115,1953,5019,2913,1021,1,12038,1000, }, + Z4N1619 ={ 44272,3997,56263,3,998,2,74888,2002,2999,449046,1005,998,101074,41807,1004,34356,63777,63056,1997, }, + Z5N1619 ={ 108844,28987,10945,11100,19019,1912,4057,1,13935,31932,2940,2962,1,3125,11834,1,6102,44086,13017,1000,6463,104,33820,21577,1,20880,999,1542,14888,1,9130,999,9532,2336,4077,21287,13805,1893,1,9548,8524,3188,10766,28321,957,4110,1000,1835,1,1059,25055, }, + Z6N1619 ={ 191387,2905,29111,24948,38247,3735,6206,50080,11104,9601,1,7504,18043,5769,5819,4075,998,733,10495,6578,25159,21345,30547,13810,18496,123,7588,13927,1001,2556,34548,8022,1000,42,50035,17269,31865,999, }, + Z8N1619 ={ 603107,3994,38940,5009,1008, }, + Z11N1619 ={ 356343,10,2,970,12012,4182,6,3999,1,6889,1,1000,993,10005,4004,1849,996,4005,2992,61242,4289,703,8,8280,1006,11426,3018,8,294,10991,1,1049,2009,944,56,548,7,577,4988,2,1892,1994,10644,999,1067,9,1981,1972,1985,453,3913,1089,1921,1012,9853,679,331,4666,999,71,3990,4006,948, }, + Z18N1619 ={ 297271,37216,1000,1924,6063,5887,1153,1,4053,92,2883,101,1,41,4916,8542,1,4976,13981,7972,1,16016,1001,49614,15015,24369,999,14614,8024,1377,10626,3392,6022,1,39,1,5547,1000,7682,1,779,1,999,1,7243,1897,999,1,14113,6858,2162,1760,3291,5700,4286,2708,7340,31145,1000,15981,6961,943, }, + Z19N1619 ={ 562530,94617,987,1,372,650,6384,1983,1,1807,1991,3990, }, + Z26N1619 ={ 373314,1,3012,22,10022,8206,2664,7452,2654,255,6659,1000,1359,695,204,1715,1,186,1242,1890,814,2330,2795,820,957,2337,2045,1000,4821,15805,39,110,1211,1707,1,1064,248,1828,744,241,14,9843,1948,4088,5931,2199,902,2250,1601,268,1,1015,3017,11069,1028,884,5057,1000,5052,3917,1,14071,43023,18980,15983, }, + Z3N1620 ={ 224198,1000,11001,455451,2014,1,13,16130,6986,1,6022,21884,1000,4009,8004,1,96851,2027,7979,1001, }, + Z4N1620 ={ 129664,1,5014,1000,8982,4920,6099,921,7011,18871,4978,14009,6993,28169,5858,4989,3015,1,7988,136,1022,4893,1,999,1125,37690,999,1066,1001,3945,5980,74,1,974,7941,4068,12370,9913,3964,1131,14888,4095,36544,4380,2493,1622,5467,1398,153,5363,135,1,3507,1862,1,1107,861,3507,141,6487,11985,13009,11420,15974,999,1037,597,6902,965,2583,2534,3984,2953,6474,1,10542,1476,5010,12989,23036,12986,1,5028,1000,7972,20605,936,7017,449,4972,1,13018,30, }, + Z6N1620 ={ 192608,45761,28061,3904,1,34076,1001,15100,41813,999,195,9118,4094,39535,1199,12222,32687,93015,35127,53293,29985,24415,427,49618, }, + Z8N1620 ={ 359879,6007,2997,1985,2951,988,1000,1020,5632,2363,1000,623,913,77,966,331,2941,11,797,241,706,926,157,3979,182,723,331,1645,18,107,168,1140,1971,42,582,376,993,3124,7,2906,733,11,275,1,939,1000,134,3455,185,378,858,1,529,1,302,1753,103,66,945,1,119,1,880,120,14,1981,724,1010,1,1143,884,6016,66,2007,1219,1147,638,1045,161,2162,2,621,221,835,1309,3937,1995,1000,2005,2151,1019,840,704,1008,954,1,481,519,481,1466,2035,514,466,2029,56,2014,1000,2897,2989,1026,8001,11,3977,1000,2877,1,8995,1013,8993,21997,5018,2990,2029,8928,2988,1027,1945,16,2,981,3012,3035,1,16989,1921,993,1056,1,1014,25,1,3918,1988,76,4977,1,51,949,3044,2012,911,2990,1036,4035,2953,946,1006,106,1,3894,1083,15,2846,9003, }, + Z19N1620 ={ 287473,2,9002,6991,27021,25,1,9982,830,13001,1000,2081,1903,2072,1,2983,1000,4292,9,2012,17890,7002,895,113,906,8997,1,16216,10001,3011,11755,3296,1,5693,1233,3005,4762,236,1,13119,1,2608,2989,2405,2610,5392,7461,1030,1000,6962,1437,4006,2631,1010,353,7027,520,74,1415,2520,305,8,3164,5828,700,6211,1007,1706,1,47,982,1,1644,615,1,384,316,130,999,860,1,687,7007,359,103,986,14037,1,2819,1,299,1,999,3865,2835,1,301,1886,1825,8596,1000,1984,21898,113,2008,2875,1000,9,110,5768,996,2039,1000,1012,2034,2009,950,4046,1,4485,8684,324,2678,4305,23498,1987,5007,3005, }, + Z23N1620 ={ 443204,1, }, + Z24N1620 ={ 389391,4341,5970,3022,1,1645,1001,3017,9979,3359,61598,983,34,1001,12012,2,38105,2024,5989,1,15989,53060,2,28,2,7976,9068,14004,1,8972,5020,52942,5978,1040,10986,61280,10021,1,2981, }, + Z26N1620 ={ 408537,5992,1000,18134,637,5952,7132,1,22079,1160,9770,1,17285,4950,1873,1000,17042,13032,1037,1,33963,14057,1000,24967,944,94,7991,10953,7974,909,18996,15030, }, + Z3N1621 ={ 194166,9008,1,984,363608,2008,1979,1,69108,11996,97677,3993,1000,5012,130910,8992,16,14052,999,7993,1016,1001, }, + Z4N1621 ={ 103724,1,1017,14990,10749,8016,6987,1,9159,1,999,1,6048,3019,1000,3946,972,4107,3962,88881,2830,4024,1,999,7012,1142,2836,1,2179,2001,12082,7027,1,5941,3959,2116,977,5936,1002,4720,1000,3302,9723,963,7843,5186,4926,5015,1,887,5978,3115,924,75,13450,1,7970,52,949,8018,1,36488,9945,4081,1001,1450,6021,407,1665,1001,446,3571,23,850,47,10420,80594,998,2016,1000,6979,10966,1,21056,3017,7499,1474,8508,9034,5976,23951,1000,5968,4014,9012,1,1000, }, + Z6N1621 ={ 179308,85141,1000,11991,11184,4934,13990,21039,15991,832,10322,31615,2191,33887,869,1342,8855,3055,23799,328,671,299,21989,17866,2867,29852,65101,66545,10824,10126, }, + Z8N1621 ={ 381874,1,5923,1071,14,2,883,4023,106,1874,920,666,1979,558,1,1024,790,1197,1445,137,212,773,870,169,2968,1256,1012,986,751,3879,1,26,9,110,1276,718,874,3419,2613,2381,1611,4272,1,3672,1120,362,515,238,1088,12,2652,353,151,746,1,102,644,1141,2302,1,4674,1000,133,192,661,1995,2070,737,275,270,1568,74,2816,1263,3837,909,3093,11016,3927,3997,13,999,1,2984,42001,5998,1996,29984,993,6003,1,1884,5009,3004,6990,36021,2010,4010, }, + Z19N1621 ={ 294424,1,5016,32985,1994,1005,999,10106,2992,15,5091,1000,4834,174,2816,3005,893,1992,4251,4006,994,1841,2011,280,991,720,8288,1,16006,5007,10740,2005,53246,635,2376,1627,992,8,1930,2444,24952,1000,6146,991,3466,555,382,556,3505,506,880,6,3100,8976,1000,8769,1001,5224,3066,2706,1259,45,991,1958,7378,629,362,31354,1,5001,4199,2993,3798,1860,1991,12885,1996,8545,1009,1000,4989,9855,41045,974,1030,966,1040,5963,1, }, + Z23N1621 ={ 293094,1,8013,977,999,126076, }, + Z24N1621 ={ 382546,3985,3015,6986,37654,1000,20,4017,4957,999,26135,107410,1,25,910,9020,1058,4933,999,4013,14136,2011,12021,1984,999,46663,6030,5963,18,5080,1000,1013,6980,2013,1,35979,1,2973,999,7013,5010,33372, }, + Z3N1622 ={ 64137,999,10993,75039,4001,2989,15099,1012,1000,990,26162,1886,9,109,891,110,872,27,14201,1010,2986,999,4934,45170,2998,8987,6713,999,4981,2251,1,3997,23116,2010,4659,1016,3326,2681,34976,6012,1000,18376,1,5002,995,67972,1,1013,9989,50765,5334,5000,71816,5003,1999,129143,1992,19675,19,3003,1364,993,1000,1016,23671,4030,1000,991,75255,3011, }, + Z6N1622 ={ 170301,29003,2236,18838,52175,6845,32276,30698,12215,9756,1000,32978,2253,12716,12018,294890,9028,37021, }, + Z24N1622 ={ 372562,2007,6998,22616,7994,2011,2988,105248,1,25,1987,1000,4017,1,5884,95225,10,1,5989,1,21980,999,7004,12,40275,12002,6779,1215,1013,1,753,11,14277,1981,5014,22907,11996,1,999,1006, }, + Z3N1623 ={ 151446,2011,4993,6920,6990,7159,1008,8,3699,1,3994,11,26376,1000,993,2743,6262,2747,914,2996,7093,14792,1992,15,6376,2007,4990,30616,2990,9438,5001,4004,1658,2012,1994,27335,7,993,3703,3307,1,8687,172,2004,5000,24183,2983,1006,43813,3010,3985,70186,7002,1000,1992,24105,931,1077,2917,2916,97,891,12016,116195,985,6011,5777,2994,1000,4990,93948,1001,6324,2670,1000,1334,4674,27061,6990,6018, }, + Z10N1623 ={ 294587,2955,2024,43321,1686,1000,2333,3641,10049,18255,17854,6943,1000,20,9054,46632,1,1978,10980,2000,13984,85863,6142,882,1,7015,1076,1516,8970,2956,59,941,59,2899,570,3018,1001,4422,1107,15103,7411,1607,998,5371,1,4605,2432,418,8973,5963,6076,44822,1,2032,2901,10090,976,7880,1,2025,2021, }, + Z24N1623 ={ 341717,10017,1,4012,12996,15518,8982,18,8001,3350,1000,5013,2031,5731,1242,3748,4997,1,10999,1,12873,966,1,1021,1000,1988,27290,1000,3012,11991,34027,1,999,1,4019,1069,2,3985,1001,937,3090,5919,8066,14866,10013,7990,4274,1846,8996,986,1,1171,914,103,897,7006,1978,1,999,1,8851,346,654,1992,3978,3386,6644,348,1,39977,7986,29,5594,2402,1622,1991,13015,1001,6301,9985,986,1,5073,3902,31,3990,9070,3938,133,953,909,123,3962,1000,6021,18, }, + Z3N1624 ={ 299496,8002,913,2076,2916,96996,8,6995, }, + Z10N1624 ={ 364315,999,1,8049,1,3975,1981,926,23982,999,8046,1,972,1000,59202,999,22962,8977,117,1,4969,2,5013,1880,11140,4094,1000,3985,24,1924,2097,9892,999,3114,6893,999,3090,6791,2216,1963,4807,10007,1,999,1,22009,1,21154,15987,25,975,25,6961,4970,16970,1000,38779,1000,3921,2031,2,12013,58,14945,3063,1,11962, }, + Z12N1624 ={ 353230,1223,1000,2,18699,285,714,287,8818,1000,2946,1,7971,293,8268,4666,2946,1761,146,176,823,8539,1,5424,1212,7715,15292,15747,999,280,1,14348,1000,4383,23018,1,10057,3469,4574,999,1522,25404,11549,11497, }, + Z15N1624 ={ 487490,4010,12,9004,43160,22,4014,5955,3897,1,6031,988,1,999,7019,14,4032,7985,1,976,98877,1000,1983,67,2034,1947,2929,1000,3096,1,1056,13,1,1808,161,1, }, + Z23N1624 ={ 401814,1,5995,5018,2011,10455,1,977,5462,1,3122,12,887,101,721,983,2722,590,2621,1,239,1,4741,2391,711,1118,870,111,2998,1998,813,202,196,1,577,9421,927,6991,1017,3062,930,614,1,9485,2654,987,245,1104,544,1,77,368,1022,893,3650,897,102,1,979,1,2344,750,2811,456,7565,10986,47062,2027,2981,7990,45034,2987,12004,8998, }, + Z3N2041 ={ 602770,2991,88823,1,9973,18,981,42906,2017,21977,8047,1,2223,799,988,1000,4197,7032,1,52951,6006,13985, }, + Z10N2041 ={ 617442,1907,113,9887,2063,2968,1000,59,8965,1,89,1,910,88,985,10893,1020,5108,910, }, + Z12N2041 ={ 337416,12050,5116,2769,6086,5726,1541,1,5549,1,1242,5053,9036,2938,1,3192,1735,688,1084,1,928,1347,4827,1887,1,2052,1364,3615,4238,1,64,2988,1000,1623,4231,5178,1163,437,285,1,3168,874,3687,1,1251,1183,785,3798,2540,2751,3047,6052,2045,113,1043,8424,5999,4358,1,5215,2783,2176,4530,1001,1452,3887,905,1,2649,1,14,986,13536,4580,5934,1110,26374,1513,11016,7066,1, }, + Z23N2041 ={ 424349,5003,6,9004,1932,1,6007,992,6077,2991,6009,12008,6001,5000,11026,6013,3004,4005,8022,3007,6001, }, + Z28N2041 ={ 86355,2987,2011,7990,17,3033,934,77,1,909,1,4063,1929,2013,40,49,979,8,975,2945,64,1977,1977,1,721157,7997,1012,3994,16995,10,7996,3368,2,4991,3021,4630,1349,5647,2002,5015,6993,1, }, + Z12N2042 ={ 334720,13515,999,13467,1814,672,327,2,11667,14036,1488,6847,1,9017,5582,1,998,8036,444,2,889,1,998,1606,2290,1041,5779,4294,740,4490,16797,3059,897,198,1,11445,7517,3942,1642,8453,1,9956,9637,3287,999,3964,5964,21165,1000,21520,14056,12081,1, }, + Z14N2042 ={ 382225,1024,2961,2980,978,1066,1,2919,1,5080,999,906,55,999,984,4056,1,4901,2073,1000,973,6069,2946,918,1027,72,1,1889,1,1979,1,3992,3147,1,30,6849,8011,26,966,3061,23,50,4006,1904,1071,959,40,4033,1,3916,7890,1103,1,1902,20,980,20,959,1114,12999,90,3975,999,3978,2053,1,2970,14,977,23,944,983,16535,971,1000,16059,932,46,2010,1000,5024,3875,1000,2947,39,1,1058,12,907,2907,140,1948,1107,1,1838,1972,993,2025,108,979,999,3903,3035,141,4873,1061,1918,12,6025,1047,1,1024,4949,1007,4024,1934,40911,1,9006,5128,1867,2140,960,2972,914,129,9,991,1922,917,1018,179,924,52,1894,2030,1941,3065,891,1,22,42,11,68,992,6061,3888,13,924,926,109,952,2080,3875,1258,758,1,959,1,223,2971,811,1076,1152,10935,6058,962,1820,164,4109,736,987,7235,800,1,15054,14994,4958,4977,15021,6024,6977,2041,7948,5017,1987,4987, }, + Z10N2043 ={ 287790,16008,14974,175795,9999,1001,6010,2875,1000,118,7892,2979,4013,1001,7948,3980,7014,31967,1,9986,2017,1000,11233,6934,999,24,1000,33,3023,1,6980,999,935,5019,27889,7987,1,5022,8005,99756,4974,3990,1027, }, + Z12N2043 ={ 343462,3262,1,5874,3770,4279,5813,4098,113,6798,8720,368,1960,8909,6312,9734,41,1,2668,1405,2116,1001,3681,1000,6236,2565,3018,999,4177,2319,1001,11757,10000,351,4349,6479,1076,1869,2153,27,972,4795,15,1,3953,2193,2943,1,14071,3979,21,2857,1277,677,4721,25973,16546,11609,9887,2, }, + Z15N2043 ={ 369243,6957,4960,957,2021,1000,1026,1001,951,1979,2089,11916,997,983,9027,1264,4723,3002,2002,4983,7992,281,5002,1000,4887,984,3154,863,1,1825,3114,1,79,1,2788,5316,7995,1,750,1046,928,5286,999,1,2982,986,4968,1000,43,1,686,2261,7029,1753,2102,1965,172,763,2069,1000,998,6933,16064,568,778,621,17,1,2967,3636,4961,3798,1992,169,16,1,8829,1,5230,1902,1000,7104,1857,62,938,62,4014,1,10061,824,6037,6971,1138,34,3848,142,61737,1082,2874,1000,89,39,3042,790,235,830,3039,1912,123,907,211,2814,1005,1103,814,1162,1086,1,778,91,1,5130,999,961,888,17909,230,799,188,2902,3026,1029,6838,1,1213,35833,12995,11950,2026,14982,1,7060,999,6924,12050, }, + Z23N2043 ={ 407509,4654,3018,2312,2006,311,3388,3619,12777,234,2771,4017,2733,8002,14004,13419,1,999,1,10968,1020,12001,1,24632,2075,17,925,3067,3923,53,4968,4029,964,21,16,964,11,8,8974,1000, }, + Z3N2045 ={ 80170,80,1909,1991,5100,7992,9042,1922,4079,4916,1077,2930, }, + Z6N2045 ={ 369206,58989,62783,221392,77996,25882, }, + Z8N2045 ={ 363766,997,176368,5013,5010,4976,10024,10964, }, + Z12N2045 ={ 458344,1,8958,22120,54720,13019,454,6883,7615,10020,5319,12147,7093,8488,6990,16036,13054, }, + Z28N2045 ={ 86138,1982,2072,3966,57,1001,922,4037,3983,1000,71,8903,999,38,2084,966,21,3909,1053,1925,129,15,6865,2024,1000,1121,2017,2898,948,1001,1121,1000,957,2089,847,3038,2967,1001,2070,11132,9013,4965,1019,1,1962,5015,46,3871,3021,4121,924,947,1951,49,1012,2100,1,921,4105,2013,1,2844,56,902,97,37,888,3060,1000,73,5840,102,99,7807,75,999,148,1813,980,127,2916,5142,1874,1,32,900,122,878,1214,826,1200,5782,3032,3043,902,37,1184,10823,23,924,1000,93,3037,2042,1018,2871,1940,7111,934,1964,2024,109,23,21,1,4863,170,980,38,1000,3024,1986,766,261,937,860,954,1,158,842,159,2118,1914,68,1,799,1936,5170,890,222,908,819,1071,2964,1,1000,3977,1248,814,13,97,1001,3841,265,813,1001,1956,14,999,2016,932,29,1078,1057,1852,1106,1,144,815,1,13,3047,2965,1909,235,1,3026,1876,873,2070,1073,11923,4092,4023,67,2854,102,1001,59,1,784,6231,789,2151,1944,1,5899,1,219,2798,1107,984,33,3022,2056,786,4089,999,2132,1803,1141,1038,870,3121,861,1,119,1,4917,1132,4816,123,3053,5911,4903,86,980,43,1082,1836,3107,1,2019,1,1018,4883,62,1886,1,7036,23,1096,1959,897,4061,1013,2058,956,1,4917,102,1,6943,2968,6100,1923,7057,2964,2966,5028,1,1012,6967,1,23,1021,8955,1,37,9005,1957,4107,923,1,1029,1,1025,1000,911,4015,4108,965,35,3882,98,1,1892,2086,47,6016,2950,1907,1000,1011,1001,6087,926,122,1862,1114,998,4984,6045,1873,9134,4882,4336,5761,3284,1674,961,3104,178,1000,1784,1,5949,1001,2312,1806,1245,4889,3969,1950,1113,6818,2924,1119,174,1,1737,300,843,157,2912,1,961,3938,1,7162,697,1,52,31,890,1363,3685,6203,38,2724,2969,5205,28,854,117,1,28,2059,2759,101,3183,41,1645,4248,831,14,1,2038,4843,2157,53,856,31,2930,316,2818,949,4125,5804,1248,1083,2794,149,2752,4067,2956,76,1944,133,959,41,3922,1974,1213,998,946,3804,1,979,1,42,40,7104,1895,3076,1949,939,34,172,794,6080,1949,3100,3038,935,3918,6002,5116,6877,7998, }, + Z10N2046 ={ 249825,34013,10894,1000,1976,2126,1,10855,131,7883,1,119527,3032,1001,23960,10015,26007,21002,23977,6941,1000, }, + Z12N2046 ={ 330643,4607,280,4730,366,3568,1000,9020,7912,4417,10140,10078,3886,33022,4083,4587,6315,1,458,215,5972,1368,1985,3725,4285,761,1,864,3123,1432,1,6594,5252,1000,8589,5884,1,298,13014,12837,1,5179,1001,2122,1000,3734,799,4504,1,5850,2091,3765,3214,999,91,1175,4701,718,1924,2486,6489,14598,1353,3093,13106,2939,27928,8091, }, + Z15N2046 ={ 408357,14000,4002,27999,10289,1000,3953,1983,1006,200890,5997,6989,2021,2047,971,1,1116,1857,111,20,869,944,16,138,1829,61,61,919,951, }, + Z25N2866 ={ 300554,1,8939,1028,15020,9040,1000,18008,1066,4907,4800,249,711,17,23,18971,1,999,1,2283,40,10731,5883,1000,1126,262,10720,1894,1,4982,149,851,5032,4437,1000,1716,4880,12149,1000,1037,1933,2900,2982,3357,39,4794,3881,1,3029,1316,1789,1785,1,179,1,999,1,6906,9977,5029,2171,18963,4034,17997,4880,9077,1931,2131,8953,1,1934,1027,4058,1,999,1,3903,2138,2917,1000,7063,10966,5047,6978,5985,44975,2021,15989,1000,980,15927,1022,9010, }, + Z14N142140 ={ 359659,14016,983,1000,4994,22,6,9003,4769,5,240,747,253,1754,25914,992,2005,64932,6,12,5004,7995,54538,3008,3993,8008,2996,5010,1, }, + Z14N142141 ={ 380444,30954,6467,13278,15691,8541,6783,716,15893,5160,44234,9682,27058, }, + Z15N142142 ={ 440127,3985,6020,2989,12080,2916,73,942,50,1985,945,32,1,1069,3905,2035,1,5078,835,1027,149,874,941,1991,59,967,15,2059,99,3800,19,2009,32,14,105,833,178,846,14,1051,1980,27,999,1900,9,1068,4015,1904,1083,919,2001,14,1058,22,2929,2041,36,900,64,2036,925,1074,911,45,2980,11,3038,980,8,1946,25,1013,3969,11,1001,68460,6951,987,24,1008,2971,33,974,3024,3990,1021,2024,4020,948,1071,10,958,24,962,65,935,65,2956,1008,975,1054,2977,3005,16,1991,57935,1,4988,4013,991,6962,867,11,122,2987,3024,2854,1000,1,2012,2125,20983,3993,18,986,5019,986,5003,9, }, + Z22N142142 ={ 287724,1,554,36,999,7069,967,35,12379,2,20943,10645,1001,2392,1000,14547,1,16433,716,1,8126,3086,2953,1792,5830,6266,1946,1,5924,1190,1000,719,1427,4060,999,1450,1,2082,1026,2,2188,86,10647,8238,1002,3872,2273,7667,18223,7219,15822,1000,9092,1,49,1,949,1,95,12828,952,14746,1000,6254,9683,6064,304,657,23198,73,5691,217,826,2241,1,4039,1,998,3769,162,7097,8035,1703,4955,1,1142,6032,2151,1616,8073,404,1931,1,4089,1,2607,3108,823,2,1422,13039,5741,18955, }, + Z23N142142 ={ 432960,990,971,19,981,3013,12,5989,3999,1, }, + Z25N142142 ={ 367265,6997,1000,3008,4984,11264,1000,6976,1,2223,1000,792,200,10799,1218,2992,18422,24495,1000,5021,3992,1000,3987,40818,1,4993,5027,59,1,9925,3074,1,11003,1000,52906,1,4018,12993,9151,832,4152,10991,51,6792,999,4982,7004,32116,1980,6992,1007, }, + Z28N142142 ={ 54422,1000,15001,3833,1000,98,1,1878,3095,1045,39,880,982,1,119,1,4035,3886,65,3036,1000,1873,1972,5166,1000,12996,1,5941,36,965,36,974,7047,1,3967,2985,6041,1013,14002,1002,4018,4960,28,2982,5019,22,1,11987,26,2958,1000,8014,1018,1000,3020,5969,1001,5025,13997,1000,11020,12009,1019,1045,13,989,6007,6976,1000,1024,6965,8011,9995,9039,7964,8041,592,380,10017,11995,23,1,8989,26,975,12026,1968,1017,1000,13998,1,8998,9014,11012,16003,1000,14996,19008,16992,14005,7981,5008,9972,1,3026,5968,7822,166,19,4020,1000,10808,1,2182,10,12001,7822,2174,1,11997,1025,4801,3185,7014,15003,2794,1001,1232,9179,798,1,232,935,2625,232,227,6017,2,1878,2976,944,2,213,2516,1,7487,751,58,192,3530,295,2957,999,1229,1000,8539,5461,7558,6453,1,5535,5456,998,1,6554,2459,1000,5523,15009,22989,15459,1000,7543,14465,536,13008,3444,999,5553,7014,424,1,4986,7571,8407,6599,2020,4376,1,7623,7379,1967,1,678,2,1969,1,6334,1681,2351,1668,313,688,312,949,2978,1048,9680,302,1681,1271,773,1,1000,2244,3782,6178,3010,15,1,952,14,7054,999, }, + Z31N142142 ={ 211403,184,62787,1001,992,10273,42082,648,17286,28095,1001,13582,2,3118,8065,7118,3155,6752,1001,10172,12193,23840,999,6529,9421,1142,783,2,16017,25191,1000,1,35469,1,3597,999,7280,2001,3634,11784,9150,10799,68765,1,55046,1000,63239,6803, }, + Z31N142143 ={ 429186,26971,24174,855,4048,1,29054,1000,11903,17054,1001,49997,1,7057,34922,1, }, + Z31N142144 ={ 644161,1001,2007,3975,1,6993,2017,1020,2972,2008,1999,6013,1007,4949,4024,11,2978,38,945,6041,1014,1, }, + Z3N142145 ={ 808664,989,7006,11037,9006,11002,1, }, + Z10N142145 ={ 469829,9985,1,33,6981,6945,1001,11955,3033,2,1047,11920,6099,4960,5981, }, + Z14N142145 ={ 332652,12004,6001,10931,1010,3005,8003,4796,1988,217,1992,884,235,719,13,1259,688,1027,1,112,11,48,1785,63,1,118,4113,1028,12,988,1,12,1965,1631,1274,1085,809,101,939,1016,1000,677,219,820,331,682,42,362,1694,1,349,1,660,219,1,917,706,182,951,375,28,1,15,983,1766,844,367,686,88,1,1694,15,580,1,975,1582,453,2390,147,159,1292,375,38,1957,268,208,1552,1157,454,376,7,1065,384,11,516,2201,2987,295,1024,2491,208,992,1325,733,246,22,1468,101,1,481,2603,47,1289,39,1,640,1809,1,561,624,2899,85,1,2073,354,646,312,42,986,2514,3075,2061,1000,842,2517,2025,2555,1411,1000,489,977,589,398,126,894,123,1,4433,1015,1000,407,161,971,16,2802,4057,2018,112,508,999,289,1194,1819,118,1,941,10,1097,927,1000,608,291,157,2908,1,614,490,968,983,1059,3538,353,3031,41,2014,5991,983,8986,25,1566,395,620,6009,404,999,12,5595,1386,14,12912,10993,6998,1,18011,17,983,16,9999,3982,8,1035,3942,1017,989,1,39,1,982, }, + Z14N176583 ={ 356612,991,3014,2966,3905,2115,7997,1883,2126,1061,13,981,889,2015,10,830,2073,108,1082,3879,1000,276,976,678,170,21,2141,511,1017,48,272,1163,1021,713,288,711,959,998,749,147,439,1449,251,1889,1405,540,10,35,20,980,21,401,395,408,877,142,6576,317,1,196,485,1181,152,941,19,50,22,2061,949,39,2574,2,397,1132,434,374,192,1014,4398,984,245,1845,535,365,1488,23,5063,2964,705,1,1015,246,9,4011,583,434,3203,1001,799,548,1,495,650,332,54,2099,889,1,642,1763,1000,3993,1735,505,363,1457,1509,133,295,572,1011,3631,1,1985,868,2925,184,1435,2584,426,1023,2989,1000,1347,1113,1,6069,1,999,1,3989,1825,3127,1000,1610,4015,1923,1,51,362,71,1596,999,1,240,112,887,4690,1,17,12,1,2440,958,3011,6,3862,2082,1,14972,14985,8917,6082,1905,2038,1,1017,1000,955,32,9048,5987,1,969,1014,988,1003,1955,1035,985,1001,41,2947, }, + Z22N176583 ={ 276252,14959,7945,12132,29986,1,871,20283,2233,1001,12720,1251,1001,2536,4246,11,7255,1637,955,999,460,1001,10665,2213,539,2087,1212,7753,9423,3040,10541,443,2533,1375,29881,3104,1,1823,4115,9068,9902,2143,998,7837,7732,2317,21758,19914,4052,1,6089,1,4955,5074,1,5939,1,3889,1,22219,1000,1,1043,7746,1,25078,1139,10031,968,14902,4103,11921,16059,9934,13042, }, + Z31N176583 ={ 209416,8188,36880,1,998,1086,37750,1000,14255,1,2149,12696,1001,8822,999,5040,19072,2,5351,998,17536,2317,41273,11090,10447,22933,21382,9069,15422,1,10168,24821,2,2664,1000,1344,1,546,6181,2200,31286,3126,1,5691,491,2106,28702,998,4812,449,1,549,1337,27585,12260,4296,9506,8345,34903,8033, }, + Z14N176584 ={ 390798,5014,3008,4009,4004,9001,3949,1066,1991,1897,1000,8644,374,38,961,1,37,3601,2043,2012,1358,1582,1428,642,973,360,1010,7000,2022,14,5044,1000,1943,578,465,967,1,12,967,1080,1012,3963,2043,6991,5986,1994,981,1,1000,6998,7312,3993,4010,5672,321,7014,649,1,26,282,4704,3287,1,1072,1975,10,4020,6016,911,2970,1023,1956,2123,5003,1,2018,28849,6026,1000,1974,46,2029,6998,929,1,1059,1,5989,2017,1958,2978, }, + Z22N176584 ={ 266274,1,3947,18139,2812,3077,1000,1046,123,3290,12618,6805,2312,297,636,11310,21027,999,694,4750,5206,2,1080,855,1950,2947,3486,16037,4659,1778,5427,1,999,1080,2,1638,1,953,941,16191,145,999,1635,1170,924,2,219,1,5739,1,498,2,1035,4828,5722,11350,7606,1292,808,7133,6817,392,999,8865,1001,184,3854,3049,8869,7260,2900,500,554,4970,2,2938,1147,1754,2738,1208,3721,3371,1000,6570,5645,3762,7692,1252,5668,8043,1000,1,8059,3,253,917,1000,6716,7337,4707,355,646,354,1696,13279,11670,11974,1001,2437,2932,701,1432,1,5969,1,8639,1,5411,33592, }, + Z31N176584 ={ 211500,47037,7912,16205,1,30014,7781,9328,10850,12666,2,2249,999,7797,1000,2438,15946,999,1000,4864,2610,17271,8930,19295,2,6944,5143,2,30478,23625,1000,4308,998,6016,12376,10182,23848,5033,432,616,1675,6296,30610,453,6853,1001,10757,26153,999,8180,2,16066,1832,1,17744,29363,15702,1,8067,36961,18188, }, + Z22N176586 ={ 253282,7529,413,1,87,9870,222,116,885,1953,818,182,768,4266,1753,6337,59645,69014,40023,60645,11005,1,129978,6048,2989,6760,1000,3164,4889,6625,11177,14952,14872, }, + Z31N176586 ={ 202388,99,1125,19007,5882,6959,8923,231,1,999,1,767,4945,16969,1403,19088,23403,4623,75337,4697,51029,13602,6972,8084,2,930,28635,773,1,7605,12001,966,8102,2970,9945,1,23661,5753,35968,7300,27656,45390,2,611,386,614,45897,13628,1338,15734,196, }, + Z33N176586 ={ 218624,1950,54,1982,968,1012,3033,1964,5042,11999,1829,5010,3140,12,5962,1894,999,1,112,3996,6894,997,1115,19001,7889,5115,1,1877,7122,877,124,9875,11128,2877,1000,3121,1876,2117,3882,5119,1991,7008,869,2017,996,1992,8006,109,2875,3011,1,2109,1,8873,136,1,871,10,3114,1884,1,12079,1,3026,1886,1000,106,906,1106,1993,964,5950,1989,2676,17,1,3078,1000,968,14,959,1,1010,939,1,4132,5990,3075,1798,6205,802,1477,1,1715,1000,1019,284,5820,986,173,532,1000,1,2282,1016,6721,1,977,8041,16458,3542,1000,4461,24,520,1493,1970,13,2018,1769,1740,243,1,1258,4499,249,4319,1010,1962,12,1,450,252,5310,2012,19,3399,1000,10991,8262,1000,4015,1992,2978,1013,982,791,158,4880,1018,436,525,156,1,281,563,1162,2889,2390,736,279,10117,7009,2677,2012,1001,1318,3012,1661,2215,2791,216,1,5025,69,2924,775,198,2106,1444,1475,69,1028,691,3765,1,535,481,539,1687,301,512,246,818,1,1114,136,1699,1,217,96,686,314,18,902,736,1,290,20,45,17,697,1,203,63,717,247,2787,1007,228,5780,1033,1976,13, }, + Z33N176588 ={ 226467,6022,6108,1901,1023,18,1041,990,940,1000,1028,948,4091,940,7007,1,967,6029,983,26,5982,1047,1000,1935,1,6076,963,1,4993,3030,1978,8028,977,24,5976,2031,4968,17,2013,2960,5038,1945,2017,2954,1,1019,4986,22,2970,89,3930,9,1055,6928,70,930,8061,1,6008,6995,3012,3982,4015,2991,7000,6936,1,48,1000,13,2947,1990,57,3961,1000,8978,9,991,5007,6072,985,7031,1,1000,6563,429,18,1938,625,4051,15,1,1922,452,688,247,1,56,603,1,1049,1,2012,911,15,89,30,217,1715,1,972,389,624,2349,36,679,1,219,30,1,47,679,243,1,11,1656,1132,9,1883,1124,1214,1,753,872,22,1000,990,405,916,1101,1603,1045,1283,999,663,1306,2744,14,2230,116,630,351,614,1395,1655,2970,1279,29,707,251,1105,986,1625,1,999,1,2027,2018,248,846,1,2187,67,6,612,2199,20,146,1645,1013,276,108,1,709,1,4961,115,123,1,69,1,691,239,69,1721,102,897,333,3950,639,157,121,1,1149,1000,1,1744,887,57,1984,50,1203,2094,553,165,172,1095,701,157,177,1,1757,1765,121,2196,1,28,811,1,202,36,63,627,88,912,1246,694,1099,17,900,1024,164,342,534,60,183,206,38,876,1745,239,687,74,239,542,317,48,252,1502,42,249,651,483,488,1,205,96,1138,1,1062,558,39,1,192,26,171,1,496,92,908,92,399,106,466,1,338,1127,947,507,1,476,980,667,1203,297,722,1059,1000,1097,2608,1,512,464,3241,1307,1000,774,80,17,4729,14,368,478,300,178,977,1,562,1000,521,954,2896,608,469,675,286,757,111,1,713,502,683,21,1,332,646,354,830,616,1310,899,1228,1702,230,852,1,897,4097,860,154,213,44,1986,621,283,623,461,1,2023,556,1,322,696,1073,92,26,3041,155,1579,47,33,128,759,268,1,774,1111,124,1,40,16,23,1,12,881,768,38,1290,743,1217,987,828,887,255,1016,47,1816,4104,1,2884, }, + Z22N176589 ={ 208233,73914,102460,38157,1439,1333,29378,29794,115776,48775,41009, }, + Z33N176589 ={ 591600,59043,32723, }, + Z17N202747 ={ 99382,27022,1001,13057,8941,8095,11043,991,4013,14021,3018,1,19997,27009,13,1002,2009,11816,947,1242,2000,6904,1001,1880,233,766,180,1,5976,1040,1000,4801,3,3189,3950,1,5983,8039,5944,3357,1895,1002,757,1000,889,2405,2927,2,1507,1656,1000,1825,2799,2418,2014,1,999,1,2685,332,358,1233,1814,2157,1,77,922,2,76,747,6901,322,55,317,1,1681,4627,2,3942,320,680,4358,999,2020,965,37,20,924,4086,8958,1,699,2,8275,58,1705,1,7984,6292,952,3770,2946,3290,13723,2962,1,9093,4940,2000,15066,1,5945,10074,1,4151,38,2,13039,1999,1,2737,1201,2,802,2233,942,999,4805,27,236,5776,19,980,981,46,1919,6005,4218,147,4093,1000,777,3039,1989,2101,2629,2449,546,5468,572,408,20,1816,720,297,1001,84,2130,22,517,3000,2176,1,1649,1,2365,714,1,1969,1,493,506,1,493,1982,89,4055,1,6869,2,62,20,1776,2,2248,1,1905,1000,1479,387,6987,1000,4021,1,27919,2,12030,11978,1,10704,21305,1,16139,1,9902,5037,1,999,1,7963,3038,2055,11988,12962,945,18,999,2,981,7926,62,1,937,62,1,5086,5891,2072,1,10903,120,9886,2,11116,875,16117,1,2972,1973,21910,40,960,40,18990,1000,3978, }, + Z30N202747 ={ 169610,6023,6954,10039,3923,5035,1,3049,1,6919,1,28533,13995,1000,8975,1001,8075,1,939,1,207,792,1,207,5868,2147,877,1,999,1,7021,2085,32,968,32,18771,1,999,1,1014,2372,3981,30,4831,13,4142,6636,1,3222,806,8168,16380,3642,2,3318,3684,2020,12305,431,2231,1,999,1,1369,1,23586,18,799,1080,7010,2098,828,1,1061,2121,2813,3111,938,8070,4018,1000,3967,1,16985,533,5169,2790,1000,1022,1,1034,1146,348,1665,3358,1000,7973,3647,6038,8744,1599,4035,975,2908,999,6040,1,426,1547,4408,1000,4693,1904,1446,45578,4975,55,945,55,22943,6297,1000,4971,5704,2374,2950,7677,2199,168,5651,1283,1,3098,773,16,178,5853,8817,35416,11973,12014,97,874,1,5083,7026,1,14976,1000,4822,2014,9974,4978, }, + Z17N202748 ={ 113365,974,24,975,25,2951,2,11113,4911,1000,6108,2023,843,2,998,1,24149,2,51857,19996,12015,1,1999,8966,1000,8258,5956,1,12038,2,4954,22958,9135,1629,45,998,378,815,8061,4076,1,999,1,8933,1000,1656,1,1046,4208,7084,2,14913,1001,6973,14028,4970,23006,1000,66882,1916,1,999,1,1081,3017,4846,1000,137,4908,1,3113,3904,69,43,3987,4987,10977,3068,6943,2996,3067,7021,15997,5929,17988,1,7978,19018, }, + Z17N202749 ={ 281338,12983,1000,1008,5012,222968,44037,115318,1,25034,3059,10975, }, + Z30N202752 ={ 418724,1,6980,999,13000,1,10969,1,8615,10680,314,1,3678,3934,1392,12,4609,2402,1006,591,3433,2542,7,4,462,570,13,366,51,542,30,1017,1014,983,30,11,3,2886,2476,1000,3011,64,1,2546,8,355,1002,99,2011,1000,1896,3114,3896,1000,9007,9100,9018,981,3031,4972,13,1,749,2,22,252,3690,1265,818,218,682,1036,25,1,13,1199,2837,1,180,820,179,2077,603,1,132,197,715,286,1049,1,1772,1255,761,3981,280,1001,728,2,284,128,944,12,1023,453,382,155,64,894,1,2156,946,2813,272,955,30,1327,1,1438,1000,1246,4977,1015,1319,1000,4672,1979,12982,1000,2020,5983,13996,1987,1957,6047,3006,1945,8,7007,25,1,3016,2973,1,13019,1, }, + Z9N1617 ={ 335433,7967,4984,1,1073,1966,1,2084,847,3044,2062,3060,1908,1000,2938,165,2857,99,6927,145,1949,7016,1029,3986,7020,10991,6767,1032,7216,16019,5760,2972,1269,12016,971,1,7990,998,18,36969,4008,1000,1989,5024,2979,1013,1002,2832,2988,999,30,1999,2981,1,2218,2802,5015,4194,1,7971,3021,999,4966,9006,37957,6028,2,3979,2,7040,1001,7965,1010,1000,3,6955,39006,6051,8968,19,980,982,6044,1001,48920,999,1984,1,15009,1,2014,1000,8964,1000,11072,998,10991,1,1953,10096,1001,3969,1001,18035,999,6964, }, + }, + { -- continent 2 - Eastern Kingdoms + Z9N1617 ={ 335433,7967,4984,1,1073,1966,1,2084,847,3044,2062,3060,1908,1000,2938,165,2857,99,6927,145,1949,7016,1029,3986,7020,10991,6767,1032,7216,16019,5760,2972,1269,12016,971,1,7990,998,18,36969,4008,1000,1989,5024,2979,1013,1002,2832,2988,999,30,1999,2981,1,2218,2802,5015,4194,1,7971,3021,999,4966,9006,37957,6028,2,3979,2,7040,1001,7965,1010,1000,3,6955,39006,6051,8968,19,980,982,6044,1001,48920,999,1984,1,15009,1,2014,1000,8964,1000,11072,998,10991,1,1953,10096,1001,3969,1001,18035,999,6964, }, + Z12N1617 ={ 162717,51020,20041,17145,2,13953,1001,3965,1,2839,1,4233,17796,1,999,1,7949,3,910,1997,3,2318,999,3774,2001,12875,1,12037,2298,6789,1075,57,907,38,7872,8963,9216,12927,1003,6807,1,3214,3094,2,998,2,5730,999,1947,32,2,965,34,1,8239,1001,999,1,2043,5726,2,2002,4340,7606,1,242,10136,13951,1,27966,2781,7099,8939,10169,8906,998,3900,2,21065,12084,1002,846,30008,43,2,7029,1,999,2,3103,9751,16085,999,4,9042,999,8760,379,1001,619,7173,3050,4857,8052,202,920,16950,4787,22255,1,999,1,17082,12081,1001,1572,5221,2070,1000,14077,4902,146,853,1147,7717,1,1999,1,924,4335,2,2824,1000,8134,2,1074,924,1,1076,13726,17263,15898,920,138,864,79,57,998,17013,1999, }, + Z13N1617 ={ 226774,37860,7071,999,1875,1000,2047,7056,1001,1874,3051,2253,6671,14199,10051,3869,1160,11727,163,11942,20969,140,1809,9031,1000,6937,25,1,12337,7928,6692,2340,5886,6764,162,2,836,162,1,11889,1,3125,6909,2930,4054,1000,2083,3121,7807,1001,5035,1000,3046,4091,28815,291,653,8226,7803,999,1234,2756,283,765,1001,280,4644,2131,8059,25,2115,2923,1106,10776,2040,1920,1222,1,4898,6010,3838,3129,5827,5041,4233,2751,2139,53,1,13891,930,70,18001,3964,4082,2816,3065,1,3885,3273,1000,2085,19044,9833,7930, }, + Z14N1617 ={ 154371,13141,37098,18930,10603,142,859,1,1448,8608,13256,2875,13079,7196,1855,9050,1802,1000,2950,268,733,13123,6185,5691,1,41,772,186,42,960,2385,25545,1000,2949,278,31796,922,20374,131,71,11013,7679,3823,1001,14958,14335,1002,3111,2791,25175,1998,2041,1,2893,3935,31141,2,30024,547,5035,1999,2328,9215,1,899,1,30791,1696,3,33409,999,10931,1,12672,8259,8902,11934,14934,15217,2,22922,5124,10780,4055,862,15239, }, + Z19N1617 ={ 190758,27408,15127,2,17943,41,5051,8248,3002,3609,3155,1,999,1,3058,2,1897,3138,2001,3793,1001,4129,2000,1,3812,1103,434,3,40,2356,1001,1,2687,2630,6886,996,42,337,2,1658,12203,998,9851,932,67,935,64,2,7306,5810,2614,1999,6230,2,938,1,19044,912,1882,2999,3597,4478,997,1000,1, }, + Z24N1617 ={ 293700,954,1,2037,1961,23109,4006,2011,37087,3004,7989,1900,1989,20985,106111,1012,23934,2988,1986,1,48110,4995,2009,1867,17998,1,2987,1998,15000,13180,1001,8006,4997,1,53520,6010,2993,19848,3009, }, + Z25N1617 ={ 258755,998,6008,6005,21935,953,1,1000,1039,1,3956,21110,3007,1000,1852,158,1836,35086,166,834,2170,4823,2166,1000,1900,1989,20985,4084,1990,923,1014,1,5074,85873,5167,1984,2,1011,1817,8023,14093,2989,999,987,1,42987,4124,998,2868,2128,2009,1867,17998,1,2987,1998,15000,13181,1000,8006,4997,1,53519,1,6010,2993,17868,1978,2,3009,999,1,32184,8000,1992, }, + Z29N1617 ={ 416284,7001,3030,15991,27958,1,3961,1001,3009,1048,1002,3898,1,999,1,1167,3,1914,54,8941,1,7131,72,928,72,1734,82,1,893,6258,1000,1913,1053,6830,1003,1119,2,2142,1016,1,1673,2273,1001,5696,1246,1001,834,2115,16,17,56,912,90,1084,5610,1000,1285,1002,913,9013,4801,2,16993,1934,20000,2046, }, + Z36N1617 ={ 299469,35,1,35016,1000,1937,25006,1,20988,2,5926,2031,3102,1,999,1,6055,5920,930,5218,2826,1,1070,999,139,8840,2098,1811,2878,397,603,397,7667,2,4088,1002,4065,1116,30,3614,3157,246,1,1904,2069,9868,998,1,6036,810,241,1821,155,999,1099,963,1841,4813,999,1242,2810,1,3259,1,936,9028,2078,51,948,52,3822,2952,778,6037,2318,999,820,1,89,1002,2974,1960,5093,2,997,2034,998,2829,1002,7973,2117,999,969,2967,7046,999,4854,48,4031,1884,13288,799,2084,7970,3886,1001,4042,14982,1,999,1,1053,8116,999,2,2855,16112,1839,4259,18839,9889,10286,1,6764,16004,2048,1000,14077,1046,1,3119,1,662,999,7392,8866,1,22815,8221,11120,13729,6071,4117,56832,1000,916, }, + Z43N1617 ={ 292614,1,8069,1,21794,12298,1000,857,1001,14752,14943,3457,23537,2,998,1,14943,1905,2,4633,7401,999,4170,14413,1999,6344,1002,7118,2,18132,4385,10405,14222,9744,1,3590,998,10064,997,27559,1002,1349,1,1436,1000,9171,1000,2412,1,6361,1000,4161,1907,1,2969,1,1001,998,6150,1003,3480,3445, }, + Z9N1618 ={ 329404,1,2044,11062,3841,176,939,2938,999,6114,2951,947,18,1,1937,5128,9878,10987,16945,3031,4220,4026,4750,2245,1000,14011,3745,7017,10240,999,10996,7953,13010,987,9913,86,914,86,101,6921,5890,5950,1000,83,7137,1957,999,16962,71,1873,1000,4086,7892,138,3920,1921,3055,1084,9859,27121,999,7898,83,10927,103,897,4043,5030,1001,8953,1000,7091,1,5972,22987,1,3025,1000,6973,2,25941,6009,27,972,1,27,42985,23022,9965,1,3039,1,1001,12014,5044,1,23979,12980, }, + Z12N1618 ={ 227754,2,31133,955,2,1969,999,16925,71842,5113,1,179,2,14733,17265,1,10889,1,5139,1,999,1,3632,157,1,18915,9100,9843,2,4081,998,10228,5882,2,3065,19022,3761,3,997,2,38244,2000,18964,1,999,1,44948,1002,3054,1001,15814,2,2955,1000,4197,9860,2015,2,17127,5850,999,19183,1,999,1,20799,3,11210,22011,4701,1000,25225,1,17818,2,218,2,52046,18759,1043,1002,10056,13060,41,959,41, }, + Z13N1618 ={ 250817,5951,2901,5948,16190,1780,121,24918,139,10963,12819,19191,12882,2118,10848,1072,21999,1858,999,4108,102,1,4820,999,159,13875,7303,3683,1,8267,10826,9023,3910,3927,1000,5257,8866,1937,10140,156,1,13977,7798,111,8919,1888,3233,1951,8854,19215,1887,4896,1,41,958,1,4245,7714,1,10026,10065,1071,10037,1,2055,9784,1,8068,2946,21997,1102,3761,6199,5915,6170,4731,1,2203,15903,3822,5338,3714, }, + Z14N1618 ={ 180628,20906,1,23635,4218,10818,232,21164,17706,8096,17954,1310,3596,1,11158,16175,1795,808,24077,999,44409,12837,1106,776,999,1,36037,21109,11881,1001,21014,15157,1,31955,13067,997,24869,27994,16948,998,25924,999,2111,15949,998,23044,9944,39981,6881,3,13042, }, + Z19N1618 ={ 208770,35378,1001,9055,1,999,1,14099,1,11064,5775,1001,6316,41288,1000,24575,1,10053,23856,1,999,1001,3274,25041,1000,13076,29041,24035,25003,998,67058,1001,20517,5320,7042,18910,9913,1,31960,69,2,927, }, + Z24N1618 ={ 298762,42041,3005,1855,2074,954,2042,4991,1,24096,4992,94059,46003,4865,3980,3155,838,61049,9022,33021,6996,3007,11945,1109,5898,1984,1002,117,1006,66628,52880, }, + Z25N1618 ={ 242684,1,15,6988,45066,2,4007,5990,1001,1,7951,4997,2,18094,6875,2,132,1855,146,856,2026,45,1997,3991,1000,1,22088,2008,5991,35939,4013,1,6075,7004,1,26024,1001,2988,10014,46002,1,999,1,3865,3980,2000,1154,1,838,14181,1,2926,1000,6991,5993,1999,27958,1003,6003,2015,2,33021,998,5997,2008,12943,1110,5898,2984,2,117,1006,2003,45638,7968,12020,41888,998,53,1001,2935,5004,6046,2031,1, }, + Z36N1618 ={ 292454,1,18023,18026,2,32968,1001,14959,1,7054,1001,9044,1,999,1,1872,4043,22134,1,14989,1,1757,2976,92,1026,1001,8186,2,876,999,5024,1,32,8803,47,25,3061,10835,1196,1,2768,2,7348,1000,3740,1286,1828,5834,379,943,4901,1000,964,2100,10104,3750,6139,689,14341,15757,2193,2960,1001,1066,29959,2847,2,17923,2119,16962,3088,4836,1000,207,794,4161,5875,12972,13191,1,49,1,2049,1,999,1,7662,15187,1,1846,306,5822,3885,1,7242,1077,2,22788,1001,1827,1000,3438,4650,10306,10933,41,1959,17054,3058,27695,1000,8078,1,27957, }, + Z43N1618 ={ 309374,1,43918,2,3066,76960,25848,4103,3,49896,25038,16397,998,1003,11662,6413,999,15662,2,5067,1003,26086,1999,18070,1114,1,59,1,939,1,59,1,36978, }, + Z9N1619 ={ 412587,13971,14041,25010,8932,44035,24027,5976,9965,1,5077,2897,1041,60025,23986,988,6990,3064,919,14985,8042,1955,1,11043,11988,972,11992,22,978,22,12000,3055,985,1912,1,2079,1,9997,1027,2899,5056,1,1981,26,1983,6046,2951,952,1,2091,2980,15992,2970,4950,10036,1,16956, }, + Z12N1619 ={ 252669,29978,7935,3,17972,68949,24974,78025,999,21344,2998,894,809,308,986,5969,1000,8764,1000,27994,4249,16969,1000,11776,1,1224,40724,9930,3020,9900,358,9757,230,11644,340,660,340,13652,1,33997,13205,17947,1,999,1,4825,4042,1000,18022,3,11365,1000,4621,14019,1000,5149,3963,1,999,3294,9659,5355,2000,1716,2248,810,8218,2,25781,34,965,36, }, + Z13N1619 ={ 264782,999,5961,15055,12941,7979,2863,8987,5061,140,860,4930,30253,2724,9227,3051,11955,24967,2064,12960,21975,1,13074,12980,65842,2049,3094,1,2954,16957,2067,6873,16062,3161,14918,2056,23915,15893,81,18747,1095,1,9113,14859,54,13288,10833,3071, }, + Z14N1619 ={ 165600,5925,13888,21227,21499,11098,5029,5108,1,830,999,14864,2563,24548,9958,7948,34068,46026,101340,18117,3788,1,999,1,50249,1001,2864,10699,24536,1000,14433,17954,13517,7682,22878,8313,22803,1,4121,46715,1001,13947,11192, }, + Z19N1619 ={ 221232,27152,1,4099,1,8048,2,13069,10216,18013,26757,36190,1000,10781,18105,2002,6942, }, + Z23N1619 ={ 159485,999,4051,1999,1,30777,9030,1003,2320,999,32644,1999,2272,16063,1003,997,13573,998,34539,3,996,4,14359,2002,19018,2,3175,999,21393,2,11454,26123,999,26873,1,4567,17592,1,999,1,19325,35809,29258,26951,8083,1001,30739,4966,17088,1998,22825,981,1000,19,9355,1999,7682,1,1001,1998,14210,1865,138,24737,1,30119,1002,5095,999, }, + Z24N1619 ={ 605843,12006,2955,6890,6001,6992,69664,1990,7059,9990,1992,50949,5978, }, + Z25N1619 ={ 604843,1000,8959,1000,2046,2957,4997,1892,6001,2001,4991,69664,1990,7060,9989,1992,22072,2,4002,3009,16849,5015,5978, }, + Z29N1619 ={ 346134,1,2048,5021,1,12929,1,4073,13001,8015,1,10919,1,11068,941,1,11,988,4161,6844,2164,2987,17001,5031,820,135,1000,3032,12835,1001,5151,6845,7403,1,7570,421,2918,1,957,25,957,1,3139,1,985,592,6987,26002,8000,2287,946,1,3158,17,2024,1,882,2986,143,12116,1000,10998,12928,65,8999,2389,1543,91,994,16,4903,10466,4628,6347,4988,6576, }, + Z36N1619 ={ 312451,40012,16953,4977,1000,14977,20274,1,1745,11929,24,976,24,11045,2269,40619,3398,1,3768,3039,9787,9064,2,3099,1,2929,1000,1,2091,12963,16983,5907,8041,11931,1025,1000,23149,999,2857,22190,1000,5781,35309,50067,21072,2674,1,6887,2272,1,1751,3154,4849,1027,15948,1,12019,2,1097,2028,8948,855,1,8377,8011,935,184,3894,1670,1000,18044,20196,2818,1,19016,26042,2081,1, }, + Z43N1619 ={ 276613,2871,1,2952,884,11222,1000,4231,1001,2934,20700,1000,906,999,1496,40409,39943,31961,1756,60270,1999,26976,1,24004,23975,1, }, + Z10N1620 ={ 91454,1001,38252,76538,999,6442,1000,48668,1,999,2,8909,1999,1,54975,6483,1002,24003,39009,997,76026,15971,1000,4975,998,19054,20849,52983,2001,39579,13199,1396,997,71976,26435,56561,1,1933,12936,2, }, + Z15N1620 ={ 294684,1,999,7943,67,1,783,1001,3139,1869,11,969,3143,94,1,905,94,1,919,1,56,1773,1,8061,1175,1768,165,1,1045,1918,3708,218,1001,39,1,49,1,12,20,943,100,2784,1,4968,112,961,38,758,369,813,1,209,1,834,825,1,1409,1,1516,40,147,272,541,40,147,272,3604,1,94,96,153,846,2179,1548,193,1,51,252,503,192,38,16,252,711,903,2046,1103,3175,745,956,44,2800,1292,1,204,2675,1,7129,1,167,512,1,1199,2,18,1,2038,1259,1000,2812,2,1646,3280,985,265,735,265,815,627,1,523,5832,945,999,1,74,1019,3136,1,452,514,2058,1830,1000,2582,3433,1,1161,751,1646,1364,3611,1034,1345,30,92,1969,925,75,1950,3606,1,346,2113,2,496,1000,2482,1,3542,3339,1000,5125,525,3032,2000,958,2458,2,4576,308,692,308,661,543,1,1973,1495,464,871,1028,1071,2945,1634,311,2037,1,949,1,32,4660,524,6492,4483,501,47,1,979,1,5036,999,3969,2018,5532,1482,540,3652,817,1192,1000,1320,2048,2592,18,362,1651,806,215,1,338,446,216,297,41,1469,2472,1,1072,638,321,482,196,1959,2,999,1,2392,1951,951,1019,7734,960,60,235,1063,1922,4747,2390,945,1,2983,2929,131,912,2041,896,3163,1000,2980,2858,1948,68,1,95,817,122,15,1,61,801,122,17,60,785,179,792,4061,2180,836,1000,900,36,2116,959,2089,825,1,2249,1,821,179,847,1019,152,2765,53,45,2108,954,47,779,1,37,963,37,1116,2085,1808,2943,1,176,856,1000,985,5199,825,146,1048,2968,5830,1162,60,3790,187,931,2050,1819,8010,2136,4879,4110,5014,864,5019,5978,30,4990,967,1,999,1,4055,3984,1001,3042,975,16009, }, + Z19N1620 ={ 269471,38059,1971,60670,1279,8004,2,24920,1000,2047,909,19,3963,4830,1,16277,12792,1,3317,1003,8831,932,10285,2,3637,2000,53,18027,1000,9326,999,8897,1760,7383,1999,3075,4663,2,1146,1000,4952,1,3162,2585,3033,999,252,800,198,834,239,997,6587,14451,7963,999,616,999,3175,1,1855,3937,2000,6272,21795,1,998,28065,5408,998,837,45,12734,133,1002,999,8040,1999,871,1,77033,9946,1001,95,1000,6117, }, + Z20N1620 ={ 180638,32535,23151,2,56147,27831,8053,24321,6824,1102,1,1836,8922,9895,1415,1002,18010,4674,75,1,2140,999,12667,87237,9146,1002,61060,6763,749,6329,998,37943,11220,17496,1,16107,8199,97665,998,2, }, + Z23N1620 ={ 112673,1003,31064,1002,18736,996,2,9108,1,999,1,12923,39753,5097,166,1003,1000,6157,1,5844,15690,2001,5048,15973,10473,1,25527,1003,10326,2002,17102,998,26462,999,22225,1999,2953,16381,3,997,3,2989,53651,6113,16233,4,997,1692,2002,89015,49269,23789,14132,5911,15885,17171,1001,25945,2002, }, + Z29N1620 ={ 203628,162537,998,23989,12028,14004,1,24319,1002,3780,1191,4045,5725,1024,7285,940,2054,698,3945,1324,1000,3963,4059,6688,1019,8938,1,2055,2203,1000,2,143,6871,758,1267,1,998,1056,33,1625,1224,2177,3727,999,2041,999,4810,1,166,833,1,166,1150,1066,970,2061,1841,2343,800,200,924,2028,1,2782,927,1,756,37,1464,14,43,943,58,4492,966,569,1547,1,841,593,405,1,595,14874,1,2028,124,3379,8471,1000,3163,1853,439,72,1,1604,3370,3493,5160,1000,1899,1436,495,1470,4516,1076,1,1965,140,964,1,1908,2108,2844,982,2512,2638,46,1817,1000,1964,54,1936,3026,4184,1,2826,942,975,1062,1908,1000,13362,1663,304, }, + Z43N1620 ={ 234420,999,37082,1101,10785,307,1,692,307,1863,1767,1,15461,1000,12655,6813,1002,18576,3,997,6875,10516,2,3039,1,1616,16293,999,4078,4357,7111,31392,4308,10745,1001,16554,1000,30592,818,3458,33834,1000,6712,14281,2,12675,24213,1,1252,1000,19127,1,999,2,2788,1001,53228,1002,20046, }, + Z44N1620 ={ 191403,17120,16021,1,999,1,4733,17056,2,1164,740,38007,9959,998,1095,23855,2,4184,151,12950,11075,9966,24820,60042,1,42899,1,32115,5934,2,25951,177,1,243,88,540,321,679,321,53634,1227,11837,999,21048,1000,16280,769,2164,999,1,10142,23717,1, }, + Z10N1621 ={ 124489,1000,18785,1,999,1,3285,30117,3755,6327,20545,3,25343,2001,7645,2000,7390,102,25935,1002,12676,2101,1003,1817,1029,12203,2,3193,999,8918,998,2,10608,1,1145,2941,10202,1002,8949,1,228,1002,2549,1,999,1,13389,1,2907,88133,1998,77848,30200,8539,15376,686,67,933,315,753,1030,4101,15950,19978,758,997,8295,1765,1,14224,1997,3745,181,10191,2,27989,2,15049,999,16680,1,4267,1001,8654,427,1,572,428,998,11847,11964,1,2119,1,3663,2045,2,6210,999,4,7830,18143,6780, }, + Z14N1621 ={ 127242,28194,33015,34770,37252,830,14268,2076,34788,4853,6930,1001,11343,17993,2002,6836,28241,36043,8877,24944,14913,21232,40990,2918,81867,18146,1002,3927,15886,17215,5614,16048,12174,9775,37034,4057,999, }, + Z15N1621 ={ 290687,16000,25,5004,2886,1063,999,1967,3959,1015,999,1001,6094,12593,408,1000,4574,1,1014,425,1,591,3987,2,2066,2956,2020,942,72,36,21,871,44,28,36,20,3281,1573,1449,2738,805,195,929,7050,246,814,748,252,4191,790,28,3728,1,1197,1019,4012,1756,1286,999,182,1000,44,1984,1,782,3680,2565,3918,2836,1669,999,1319,210,2,3818,1645,1579,780,3164,1948,905,1,231,974,3391,25,565,410,25,565,932,893,2982,229,749,128,1,518,363,6097,2,877,643,998,1975,4341,2025,1,649,1,2507,467,515,2,27,2,4489,1,3986,1973,1,383,140,476,524,1866,1,1654,1361,5933,79,585,1045,1277,693,3292,1,110,635,243,756,244,2101,1,1067,5972,2,77,26,897,77,1501,256,745,4557,1472,1,374,134,866,134,2,1973,746,18,205,4802,1999,2753,473,1,555,373,3801,1,1018,999,1971,2,63,830,4914,1128,1000,3054,2,43,3025,1,191,574,553,4518,1958,4989,73,337,173,417,72,511,1933,1,1851,656,4376,3942,13041,2099,957,1001,2074,992,1959,4931,1,5170,772,132,95,790,1,919,1,177,855,202,942,4968,87,2778,1,243,768,143,856,145,3148,743,8029,956,5232,970,46,999,2,756,61,1120,19,828,3235,1,4789,1,943,3030,225,1016,903,10848,1209,1000,838,3971,1020,2131,5855,1,7127,3974,913,3017,1000,7978,1,1051,37,964,36,1930,2,11994,7042,2980,14997, }, + Z19N1621 ={ 500212,26164,17984,1000,5900,2158,10734,1001,14515,26656,5894,4075,2002,1105,1172,792,1,18069,1,5276,1000,6821,6892,1,7954,105,1,13247,5502,1,6172,997,4109,7211,1,999,1001,2660,999,2838,1308,692,308,10843,8893,5150,3048,1,5052,3151,2973,1999,6075,8715,1884,1,345,15058, }, + Z23N1621 ={ 116714,4,1099,32796,1002,1949,1001,1000,246,1639,25054,1,9169,1001,763,943,1000,57,7114,11951,8822,999,1001,999,18345,1859,1138,5950,2000,6108,1001,19606,6402,1002,41855,3072,2001,31024,1952,45009,1001,22693,31337,4953,1999,21810,32130,11993,1,4097,3,7943,9812,1000,13088,4180,30968,23827,2,28889,1,5272,927,1,17162,18911,4829,20940,1997,2,27106,2000, }, + Z29N1621 ={ 537783,9984,2852,4099,63,938,25,1,37,881,2,5952,1982,190,810,190,5862,1014,1965,1001,2983,2,4152,10023,5839,4017,8112,1905,1,8996,11063,8046,9977,782,928,53,9266,5038,1,9669,307,2043,1, }, + Z43N1621 ={ 252550,34897,9046,6067,6300,2568,2286,2,816,1000,1262,1,6598,2,1294,1000,14870,2082,1741,1001,1879,5349,7704,12534,913,585,1001,2885,1002,3455,6625,998,4368,1001,2112,1,6501,1000,14351,1069,1622,4216,1,11148,22971,1,7649,1,31368,1002,11082,8933,21970,18063,45754,12227,2,2647,1002,6186,8851,11174,12916,13231,2,998,2,25981,16041, }, + Z44N1621 ={ 134490,1000,38887,1000,11934,22061,1069,7071,3808,4928,315,9965,3717,999,16198,9046,14880,7086,50877,4949,8918,26007,1999,12138,12943,28064,999,905,1002,11068,5100,919,1000,3125,4809,31224,1000,1958,19861,5129,3823,5980,1393,1,3708,1002,2075,17904,5033,10920,1001,14953,6006,6237,1,2296,1001,3579,11893,1,1467,7562,1001,146,13939,8106,88,1,909,1001,12953,4939,13147,1942, }, + Z2N1622 ={ 114697,999,35918,1002,28001,4039,1000,19026,1000,22969,16623,1001,8038,2,998,15997,210093,24964,11046, }, + Z10N1622 ={ 142675,999,18708,11964,1000,1998,24100,1,11276,19638,381,2982,38074,8522,42376,1,1000,1997,11094,7976,3686,2924,1003,301,1000,14843,13784,999,3960,5492,1,997,3,17956,1999,101911,33183,1,17492,5239,2000,10818,1,8067,1001,38380,2,23961,934,1974,1,4079,1,999,1,21632,29177,1,57016,37143,1002,3986,2003,1882,2013,978,51908,998,1001, }, + Z14N1622 ={ 164537,1001,39892,110461,45987,12855,22094,180821,1627,65442,2934,5929,2196,3772,5732,1229,4091,19926,78906,20958,15970,16039, }, + Z15N1622 ={ 281451,979,2996,19000,5002,13,8990,4007,6982,885,18,2,979,3127,872,128,7882,3011,1,3020,1992,197920,17986,7,3974,1,3522,3004,2481,991,3027,1000,1993,13,6390,992,999,4997,103,3913,1000, }, + Z19N1622 ={ 649232,38,27049,3952,13051,1166,1001,3961,1841,2865,380,1000,3815,4832,1000,1258,14049,1962,4125,3640,34325,7789,4020,9413,1001,18879,1,33967, }, + Z21N1622 ={ 192245,1989,1,35,964,1,1052,2961,5030,1001,8010,22922,4033,2,3974,1000,2021,1013,1001,3943,12,3017,5967,1,61,954,44,2988,5010,1958,14,976,1000,3024,1,8976,2054,1960,999,2029,8,991,9,24106,23003,1992,5000,54945,3996,1013,3998,46229,1011,2849,4006,2135,2,876,8009,56189,13,987,13,8976,1000,4753,8,3005,4012,6831,1001,1978,5501,22,1529,1001,1434,1,2499,1534,2474,7052,1,4473,1001,2014,1481,1,1524,960,874,983,2174,1834,1,3105,1025,998,4981,1,3013,3046,1,1992,1031,1931,1051,3014,20678,984,1001,4992,1044,2, }, + Z23N1622 ={ 234577,1002,35101,38958,14472,1000,24524,1003,3750,1000,6330,2447,1,999,1,9220,999,1,7795,2002,27452,2,23546,15165,1886,16177,45238,1001,14028,5942,5027,928,1,69,14058,745,13177,1,15105,1000,3770,13054,1,1948,1001,8071,8129,828,173,7931,21113,5904,3028,12828,2051,12824,1002,35,5233,2,999,3921,5031,1000,14847,1889,2170,15071,1,8842,2114, }, + Z35N1622 ={ 226588,3986,2,6992,4020,73106,1000,1,18989,1,999,1,987,1074,18977,5971,1,37,109959,11013,1,16969,1001,9009,1,87964,45,1,12012,2931,20045,984,3097,1,6896,999,3991,22,4069,965,3979,3077,973,6981,3994,3052,6931,1,95002,18912,6940,1001,7970, }, + Z43N1622 ={ 307774,1,1088,2,7582,20292,14789,17042,23004,2,260,16337,3311,1,11179,1002,2061,7834,608,1000,7539,5529,2014,4565,1001,8674,111,888,112,8774,165,836,163,6068,4604,6975,2000,19129,1000,34959,999,7039,3881,1,106,6891,27028,8007,9951,999,3075,509,11937,28075, }, + Z44N1622 ={ 113675,17902,79,29987,4988,55980,19947,20701,8216,2789,1,999,1,6181,23005,999,16846,6115,6065,1000,5636,6048,3317,1967,1,11926,1000,1859,9074,2,15950,9948,1,16195,3814,1,18038,3980,1000,18929,9017,264,714,1593,3428,225,2,762,2993,3577,17781,1000,30108,41,1095,2531,7499,17432,1,28508,11059,19994,14523,18432,3561,9297,40,35,1001,19674,24083,1000, }, + Z2N1623 ={ 91663,45,17026,1,34046,11980,1000,19977,19988,13753,23003,8240,17467,268,5990,1000,2766,10493,8525,207,781,3245,1,12775,1000,6483,4511,2,2973,15055,1,999,1,13005,9524,1,4503,16013,25008,26030,4986,999,2,19487,1000,3496,11488,23517,1,999,1,11448,6981,1,11568,9405,2050,1536,1,32979,1,12968,510,1000,28995,6500,22514,13480,30334,2100,49728,1,9913,8056,1,12986,1985,9034, }, + Z10N1623 ={ 298779,59615,1,10071,328,1,3527,37257,21225,1,10776,9630,77042,2,2288,18716,17045,1,3181,6938,1,189356,22996,57736,14833,15111,2053, }, + Z21N1623 ={ 187216,18993,7982,1000,8059,958,1000,2016,1001,1959,1,157,2021,927,9024,1,13010,999,18008,1000,10010,15006,14018,1000,4978,1,35,22961,15022,4035,13016,1,9024,1001,34853,2066,1974,41,1,958,2,39,1,1933,3085,2,4047,1000,3966,976,1,5051,5867,2,9049,1,10069,1,8852,5156,1000,12923,5866,1000,13974,15002,209,791,209,11797,1,5211,2824,1021,1909,8262,2822,1,8029,1,2159,1,1722,2092,3038,10962,2044,8864,12221,5974,2827,5037,1000,4063,3968,4046,2,14069,2,13027,2, }, + Z21N1623 ={ 280177, }, + Z35N1623 ={ 330414,1001,43013,1000,44001,24977,1000,35128,1001,12975,999,3035,1,5979,1,999,4008,20088,982,9986,5970,8986,1002,9999,997, }, + Z39N1623 ={ 247332, }, + Z44N1623 ={ 300486,11978,1,15981,5073,31003,1001,5647,6239,2049,14035,7692,8284,25736,10203,9081,1669,5015,9575,14436,1,6331,4008,1,10931,18095,928,73,12979,48676,32017,1,39056,8060,42,15030,2141,1,8779,1,3000,42161,1861,4092,28955,1,6079,1, }, + Z2N1624 ={ 116441,4080,35954,998,32920,36001,1,19998,598,6503,1,77989,1001,1938,999,1960,18962,1,4175,9084,1002,30797,2,25003,32275,2,8803,7178,998,1002,19898,2,7914,242,757,244,27742,999,8059,2,19169,1,824,7886,999,17049,1002,11894,9054,2,11116,9042,7800,2,11114,9043,27960, }, + Z10N1624 ={ 132299,12254,999,20743,999,51389,107,32733,1002,12158,999,3,16797,35966,1898,940,998,4110,112,6996,819,1000,9409,999,147010,33871,27992,1999,10139,37561,999,8161,282,1999,12659,1293,1,70,999,5532,998,10040,1,116,13267,1771,4934,2, }, + Z21N1624 ={ 261300,19011,8007,9986,1,13006,2012,2,8986,1945,23,975,2,23,1918,3024,11048,938,6197,1,807,1968,1041,1199,14,1,2970,922,77,980,1,2059,1001,844,59,1855,2,998,2,2022,2142,88,1783,1948,120,945,188,814,186,813,1020,1,928,2139,4022,2,1000,1020,998,908,2927,1983,1052,1,1000,1079,40,1,86,874,1895,214,1,2959,2,4801,326,2,2709,1,78,2,1134,55,1,747,4958,2150,864,2,1234,2788,136,2,862,136,2,3143,977,14996,1000,929,1089,4893,8091,1,985,2933,2,998,875,20,19,7162,3987,2858,1,945,21,15,38,1,2013,103,960,19,35,936,29,34,1,4066,1728,81,74,940,1,60,9104,1022,6958,4695,1,999,245,4765,1,253,2949,3774,3026,1247,1,6064,915,1,786,198,1130,3986,999,1002,2707,17,179,1785,2,5337,888,114,959,1,58,688,967,2016,1,2342,1001,2968,8704,2297,1900,81,2899,81,918,82,1719,4196,31,1,32,725,2198,61,110,829,61,110,1953,2,31,659,998,169,2819,1267,3043,36,1023,1822,50,2,2784,974,129,970,15,886,98,15,2136,801,2,1317,974,871,800,2217,1,999,1,2874,2211,74,1,1949,1,735,3278,50,884,734,242,1014,110,713,128,871,2148,128,4930,12,1967,2812, }, + Z35N1624 ={ 164536,1000,23008,1,16009,1,999,1001,4967,90141,29958,4962,2,22928,11095,16846,2,14050,11988,1001,999,1,24098,1031,1,33964,1000,7983,38980,1952,1,999,1,9026,1000,2948,12007,1947,12034,1000,27017,1,19982,16987,1,19024,24106,999,14020,1,11985,6930,60163,2,12994,4949,1000,6951, }, + Z42N1624 ={ 332579,7992,7978,4984,26084,16905,5100,1932,1,11004,1000,2973,13012,2,1978,1,1069,1,999,1,4913,6046,2,2028,2,8798,28,31,3928,1023,1,5965,1089,955,1,2154,5984,926,4938,93,84,1,822,92,85,1,2774,2165,1,4072,1000,4015,1845,5127,1,1895,1799,1225,2,8781,7977,1,978,238,4976,999,9033,1001,8020,7117,8907,1,2981,133,1944,2,998,2,4023,921,6068,2924,1051,8012,2,5926,999,8011,10975,1000,14002,2975,2,4062,5022,2927,42,958,1042,7017,6938,1, }, + Z44N1624 ={ 136373,13961,1,33031,1963,7935,9038,16971,13008,2205,1001,11801,23062,11953,26130,6930,13917,15938,8100,928,1000,16076,2958,1000,10950,23109,1905,1,16048,4141,1001,14909,1,3097,13811,1001,1,32229,1,18806,36359,11612,222,1,258,561,1,180,257,12608,2368,3720,7940,951,8084,2883,1000,2257,112,667,6415,1000,1645,4034,2969,2946,7071,999,3150,1929,2031,8022,3887,1001,4090,1921,11081,3973,22880,4021,16994,18043,1,20992, }, + Z2N1628 ={ 204584,1,1000,4997,7004,10007,1005, }, + Z10N1628 ={ 144459,999,1021,2955,1,11022,997,2918,112,1,888,111,1,2913,11996,2,26086,2980,14010,878,1000,120,934,1,4029,1001,12944,999,537329,5979,1030,8018,1,1964,2015,2, }, + Z15N1628 ={ 444304,6,1001, }, + Z44N1628 ={ 431260,4004,1005,1973,7001,1011,1001, }, + Z2N2041 ={ 166543,2,2018,2,5949,1,999,1,55051,3988,1,998,2,148171,998,6983,5073,2028,1031,9899,199936,2,13,1015,2,10955,3060,1000,12915,57,4984,33,4934,1,15013, }, + Z10N2041 ={ 210860, }, + Z11N2041 ={ 164831,285837,1786,2,1163,813,999,2210,2835,1130,2806,1000,9187,999,858,9150,1818,1,7225,1000,2951,3817,2237,1001,779,3158,4048,5943,1,855,4192,27,972,27,800,158,2976,1076,2016,1,919,1,4119,1,988,733,1251,45,6717,1298,2937,1,6077,4923,1046,3034,2683,1294,722,234,31,3033,999,6943,1,1752,1000,4304,1715,238,1,7034,5967,1000,1746,284,5984,13748,17795,1188,6821,972,1,3214,1827,148,1,819,1,29,3312,971,1000,717,1,1239,746,183,73,1018,1,713,3337,834,165,698,137,852,1240,3923,1,2148,3911,1,76,5983,1,4932,1061,9005,919,1003,12,7063, }, + Z11N2041 ={ 363339, }, + Z15N2041 ={ 732273,2988, }, + Z21N2041 ={ 348106,1025,5992,4970,2068,3986,9007,1002,17,13015,6974,11011,2,1023,10000,3989,2027,1,999,2,4195,3022,759,3227,7787,371,1000,4617,1,365,3648,366,634,366,1,981,7638,2,999,1365,1988,675,8314,2680,1335,5972,1,1719,1,2299,1,968,976,1973,3872,1,1110,81,864,14,1,38,826,1212,25,808,1,189,810,1,929,1,2039,2,5073,82,2958,870,9025,1,8098,1000,3919,5015,1001,3036,2, }, + Z34N2041 ={ 439556,6033,5983, }, + Z35N2041 ={ 477384,1,31999,1,54994,1000,9258,1000,25741,25014,21995,16017,1,1001,18988,1000,1,7023,22008,9025,24004,11020,9256,20728,9171,57,20882, }, + Z42N2041 ={ 508723,4232,773,2000,218,2791,5010,6981,17,2199,1,1794,1001,5984,1,198,2822,999,5007,1963,1,8988,66,913,255,757,1213,999,1876,1887,4993,227,773,227,6961,1059,745,158,842,1,157,5062,1,3952,1000,6012,2788,7202,2798,1001,5200,2816,1,5182,5811,4191,4811,3194,1,4805,6203,3795,6206,1,3788,10994,4225,750,15,3975,4257,5993,1754,8002,1236,1,8994,767,6235,762,8230,6774,8230,771,5041,3020,951,2217,1000,1797,1,13187,9992,1,1859,1001,53,1015,4066,1945,968,33,1937,76,1029,1982,929, }, + Z44N2041 ={ 154312,1001,4036,12121,1803,17964,3270,1000,7963,2811,14065,908,1,5959,1,6241,20907,4856,23993,7065,4040,1000,11914,7042,998,1067,1883,3968,6115,2,6944,41077,3934,8076,5959,1000,5986,2047,35007,7019,937,62,2973,21016,4977,34994,1001,29,25969,6068,8980,2100,4990,45048,1000,8077,3021,1937,1001,15199,2,998,1,2962, }, + Z2N2042 ={ 146368,70981,7079,1000,4795,29419,7586,21334,10126,5584,1001,4361,1001,19053,17036,1,111770,999,12180,3,15921,20092,21974,1,5025,999,15965,1,1763,55019,3953,1964,1,999,1,21979,1, }, + Z31N2042 ={ 414117, }, + Z34N2042 ={ 354362,27,972,27,946,1,8046,999,2094,1,155,4857,1033,984,1,999,1,14,3011,931,2083,1,5978,1971,1,5015,999,1978,1090,4874,4989,2834,1,181,4810,998,4903,2017,3,244,753,2,245,4803,2,5961,914,6112,2,2967,6248,954,2,18,1,8172,3011,1000,2852,1734,1,1387,1635,877,1,527,472,1,526,932,2,1029,1,56,1929,1623,3260,2,997,2712,1,1331,1093,975,630,1,371,563,297,995,1000,1725,298,1,2103,2564,385,6007,2007,953,1,2073,42,2974,1,2271,2319,998,381,1,1594,1001,42702,3020,3,4430,999,255,1271,1494,1001,3201,2815,453,3112,598,1,3974,1000,3870,2947,2078,1,999,1,4114,3962,469,881,1001,1510,1042,1021,998,6988,1553,2,1402,2019,4156,2,1394,569,4343,27,2029,1999, }, + Z35N2042 ={ 259545,999,12089,42007,999,24892,18951,34042,1,58035,73021,1000,38942,2,999,18936,1000,118086, }, + Z42N2042 ={ 363568,1013,2978,2025,1,3959,3,1027,1001,979,1,6012,68971,2992,999,5017,2959,17,982,33,18,958,42,991,6996,987,6003,49116,3015,2011,1,999,1,3987,74921,2,1999,1,4985,3026,3971,2035,1982,2010,1000,1,2987, }, + Z2N2043 ={ 84452,1997,60032,156990,990,1012,988,54168,5687,998,61054,42006,1,3399,1001,999,1,2586,15983,2,2164,7837,355,645,356,12633,998,19048,5949,68,999,6337,999,9980,3,8029,2926,2001,3640,2,402,7797,2,3221,3929,998,2,7054,10922,5005,84,11688,6346,998,5969,3,8814,2156,1001,3934,2970,9042,3025,1000,28620,1001,3116,1001, }, + Z11N2043 ={ 96729,5988,1977,1,999,1,17016,958,2588,3466,1549,3469,503,1,495,6984,1,1577,1001,980,1941,1,3973,429,20,4604,37,1915,1515,588,925,2383,1,25,151,824,25,974,3092,3013,2084,2,517,481,2,935,2594,437,863,1001,3086,1000,2078,528,2358,999,2063,902,998,1084,2589,469,13874,2,944,1001,4012,1003,8129,1,3861,5142,2876,1001,12149,1,864,998,6120,3865,7032,1,7117,3856,52,1068,1001,7994,868,18,68,914,19,67,9061,1000,891,2090,885,1,8022,3961,3170,1001,974,2,8042,14817,1,3021,98,1,1023,2000,4989,1037,1,4829,1,5019,1,9099,1,10901,998,70,1,44,1017,916,999,6016,2911,66,934,66,1074,970,7890,736,1,1980,384,615,4403,905,662,1,337,1578,4990,1519,594,2,999,1,1906,1323,1001,789,1,962,2283,659,462,1002,536,324,2,636,1118,2026,1166,2749,965,997,4891,2,363,727,499,499,502,3434,15,1,197,332,630,1,1945,2233,3705,31,1474,2,3756,632,2468,1001,612,1,135,5017,1923,1226,1000,1808,1,5417,1970,1000,809,1021,775,9169,800,3418,1,7036,437,5118,998,1,2907,587,715,1,4719,2,570,428,1,572,1516,2,7492,1000,406,6307,2307,1000,495,214,7678,1,600,399,1,599,1,770,778,2,4881,2064,1000,2368,846,1001,836,2459,1456,1000,2048,1,408,2647,871,550,1858,980,65,2,932,66,1,696,2015,319,679,304,16,600,1,1283,1659,106,407,4878,639,946,4309,999,709,1504,1,3846,788,247,998,1107,1000,6513,3,220,892,329,540,4150,285,2,660,999,4109,2,183,116,677,23,1,183,116,1001,14,750,879,2320,623,1127,75,3,1714,999,4411,2090,2021,490,89,910,251,4786,2981,81,399,2912,1101,2883,1002,822,1832,1000,3140,1870,2351,1828,999,15134,32,1,936,5888,85,2,5068,1,953,10062,968,1000,14769,2937,1001,3066,3932,5091,1,906,13013,2,2079,1906,1000,9053,1,998,9010, }, + Z34N2043 ={ 357632,50528,9976,998,5049,21,1,978,23,8118,2,4801,7973,1262,4968,1024,3095,3755,1,2600,282,716,625,1000,1728,6978,1,999,1,1518,2441,1,4353,1316,2,41,1409,4366,620,127,761,2725,1001,1865,4,4549,1,412,1623,397,1001,801,1094,2,529,2,2428,2,7208,1,6597,216,784,8966,999,5034,35947,494,8040,1001,5034,3407,2,13,985,1,14,8024,1999,5491,3498,1001,3038,4509,1935,36,964,1,35,4076,3411,1031,1000, }, + Z35N2043 ={ 343502,2001,32969,14075,12941,28065,1002,997,1928,26141,2000,22988,5813,1002,1,5168,2,23936,999,8891,2000,43063,1,32919,1002,3148,20920,22127,22832,2136,1000,3920,45011,1000, }, + Z42N2043 ={ 306567,7983,7,993,7,1069,998,3943,3985,1085,2932,4061,1938,3020,59,2992,1922,1019,980,21,2073,1,3106,1018,772,2090,33,1,999,1,6966,5153,1,841,2043,985,1,1964,9172,4003,1,819,1001,5165,7019,3979,1001,3020,16720,3064,3964,7032,1751,2014,1,155,2864,1,127,3932,1,3056,1843,1001,2139,1,2106,7793,1,2063,24,1031,3096,1000,1888,946,1002,63,2878,96,2115,1000,4831,2059,122,790,1008,999,1934,4154,1001,865,991,28,133,839,28,3937,5196,999,988,810,3975,1,2012,4212,9002,4988,2980,50,950,51,6984,1,3124,5957,945,2124,999,1,2899,33,41,927,6985,14,1,3083,976,1,1976,13938,1061,3971,983,1,2979,2,3048,1002,5948,3011,5991,1000,978,1,5985,26,7988,1001,2975,1001,2016,14010,2987,1,999,1,2050,999,2982,998,987,1983,1,39,1, }, + Z3N2044 ={ 258608,12005,1980,10021,1,1964,1000,5026,998,2971,3943,4041,2018,1000,5992,2951,981,1020,24,1,1986,3040,10942,2,22,1965,49,951,3016,8960,73,1985,2958,2,1022,6951,978,81,19,27,1,1927,992,1000,1,1984,35,1,6937,90,910,90,1985,2957,1,1979,1,3073,2959,3950,3024,12964,21,978,10990,1,1019,1, }, + Z2N2045 ={ 488502, }, + Z14N2045 ={ 223240,108, }, + Z15N2045 ={ 275823,12471,9552,4919,14026,25028,17014,168957, }, + Z21N2045 ={ 130201,19095,27112,13895,4063,998,1,969,2,16108,1,5932,16061,12945,1002,67,908,20141,17877,21235,10865,8992,15045,999,41,959,1,39,1,19020,4969,1,43069,1,4999,2, }, + Z29N2045 ={ 789345, }, + Z33N2045 ={ 826157,22024,13039,12032,1003,18021,958,38,965,1000,7075,9178,3967,11958,14796, }, + Z34N2045 ={ 309348,17968,1033,53,8877,4245,1,1972,10751,5186,1,4137,10700,1000,6138,1175,8675,934,7043,1381,979,607,1,1969,1,1939,1,2056,241,6177,999,11256,1,568,23513,4016,999,14943,1022,11168,1,748,2,1249,1,20711,5033,4039,5212,1700,123,4177,4645,999,9094,4930,5921,11964,16008,12889,993,13992,1154,19825,2,15976,1018, }, + Z35N2045 ={ 782730,15939,1099,18881,1969,3800,34,1000,1031,1323,785,803,1139,1290,9607,1053,21,1,2024,7876, }, + Z42N2045 ={ 559724,1001,4022,1001,6985,2022,1000,1923,2026,1001,42,27,1,6891,1038,1,1018,2053,962,24,36,1881,1001,2008,128,1852,1039,23,3074,1,976,1000,1933,1,2038,61,1,1839,1,1029,2,45,1938,4121,5013,854,1000,6124,2916,2959,62,951,4131,2888,2021,3961,984,1,12013,1000,5986,1,13007,11992,35157,12997,984,17,9868,97,5033,9881,1081,2027,6920,2018,6046, }, + Z43N2045 ={ 239727,825,611,2476,3835,3,1171,73,2728,152,903,1,1889,999,3301,1,1614,2070,2360,1002,594,999,1455,2335,3046,2662,459,3508,7067,4411,1973,1000,1944,1,17024,999,5964,724,4962,5327,998,2963,7723,2001,7286,11966,2834,11939,21187,28979,48949,2033,6021,2,33952,1035,2,22004,1001, }, + Z44N2045 ={ 37548,11058,1044,846,5036,6027,8942,5864,303,940,4102,2988,2945,5054,2773,217,6714,904,965,1000,5380,591,112,2949,4350,1660,28,1039,33,2041,2793,3971,60,2020,3961,2369,6994,3586,59,1268,1,3681,1000,2036,3346,918,3701,2365,650,325,7965,3684,3374,3020,5591,366,617,1,7409,6566,11029,11005,1,21976,13974,2040,999,18968,5978,11008,1000, }, + Z2N2046 ={ 77706,26783,1000,1160,13089,3599,258,999,1000,14806,30903,9074,18972,4845,1,999,1,14138,2,24119,1,1999,10778,12032,1,16372,1000,33713,3092,20057,4953,4866,1099,6253,5104,1,998,6658,31279,1126,1000,538,1,5413,17596,1,5347,1000,8051,3047,6550,24358,1781,14144,14081,1,13740,999,31839,1000,8126,34833,42998,46222,18784,14048,1,4119,1,998,2,16904,1024,2, }, + Z34N2046 ={ 372511,10998,8035,1010,1,22257,1817,13977,1014,24029,18105,1,17848,4920,21139,8902,1,4976,13098,1000, }, + Z35N2046 ={ 291584,2,3044,1000,933,14050,1899,5012,1,23079,1,13857,999,3965,25088,1,998,2927,2059,6941,41996,14106,2954,5982,31011,973,1000,44942,1,15049,1001,16989,1,3075,15035,999,1900,1,998,1042,34933,22121,5970,3970,8972,19045,25108,1,2891,11077,19957, }, + Z3N2866 ={ 138617,5974,1000,9049,998,8966,1,999,1,110819,1,4969,2,13020,1000,1974,36974,1,22,976,25,12979,1975,9261,14978,1000,16036,2970,1001,48724,279,39,682,278,40,16960,1703,1000,1966,10360,10628,46277,1,1000,1048,2,16875,1063,41,1,957,42,1,8868,2,999,1,9017,1000,12989,66093,1,999,1,2015,9984,1,3017,28922,1,3837,8021,2,153,2806,1,999,1,3165,2850,3170,999, }, + Z5N2866 ={ 264610,2000,4973,10023,2984,36830,3011,1000,1023,1,6983,6973,4028,1000,2985,1,13004,12997,9998,1,1000,6998,3181,1,12815,11998,7994,9192,1,10869,1,1126,44953,1,999,1,16827,10991,8005,1976,2,908,1,1000,2121,1961,985,3922,1,1000,1064,1955,1,17,18022,1,12001,9998,1,10991,1018,1,10002,977,1,1166,4828,6,5128,1882,4164,9956,999,7869,12011,1001,10216,2733,1,1999,5029,7281,2,6966,1000,15048,43966,998,2,7935,2001,10042,1,8965,1000, }, + Z26N2866 ={ 284432,2000,8285,1997,3,4966,2,905,862,3,1998,4962,999,1144,73,2093,1,999,1,1873,9093,3753,1,18162,3787,1,2069,1,999,3,1249,968,2,28,10930,1,4774,1308,998,3755,19958,8308,6665,1999,7223,2,1089,1,999,1,12709,965,37,7295,5950,1963,1,1000,998,6944,2001,14051,13054,2,7917,2052,1,52028,1999,3,826,3060,3054,996,1001,18938,999,1958,11111,6045,1002,996,36775,998,1000,1,18997,1000,4962,1002,9958,2,41811,16025,3958,23049, }, + Z11N142141 ={ 271691,568,28505,33894,31647,327,49022,6076,20584,19079,34823,58950,53364,110,12732,10088,38892,64168,92,907, }, + Z42N142141 ={ 303604,4961,21066,25912,25115,15036,2,14972,30835,5229,2629,7312,4456,4345,1,2116,2077,21130,5532,13149,153,10058,11102,1651,20879,12314,5902,86034, }, + Z3N142142 ={ 128529,1983,12039,16003,1,12976,11023,1,3979,1,14984,6135,1,4840,1999,9150,1,944,1002,1015,4886,976,2186,1,999,1,1953,8797,83,915,2229,3802,1,4184,1843,3936,1026,3,971,26,2,4028,1,4042,1977,1,88862,1000,9010,999,8984,1000,23263,31,1001,717,21252,1,35,7724,1001,9763,3216,2,4071,2667,1,1023,273,8763,1003,214,8080,79,962,5730,4331,2,38,2,6589,2,1038,1,2028,1002,9326,4037,1000,3643,5241,1999,6988,939,1000,61,2034,949,2979,1827,6226,1,743,3156,1001,5019,3,950,3891,998,2078,1,4967,9141,25009,15008,11987,2000,2037,1002,15976,1000,4040,6981,1002,7044,998,3978,997,8028,964,2,4910,1000,998,2025,3016,999,9939,2,6979,1,44,2014,1002,1019,1,41836,15093,1,1926, }, + Z5N142142 ={ 90523,2,10965,1024,2,11971,1000,37197,980,1,20,4909,1,6044,24,976,24,8921,2,998,1,15018,13945,33,967,33,18978,1000,1966,999,6115,3039,3866,1,3106,1000,7032,60900,1002,6968,2,13039,1,999,1,21992,50967,1,9774,1038,7246,2,5898,951,91,911,87,913,88,1,2798,2280,2,6746,13217,4034,1000,14681,12274,5717,1,6040,999,1,1254,8970,6744,4218,21962,2,6083,1000,1876,1,16999,1,998,2,5118,13857,1000,7123,2,10019,1,79697,2044,1000,8981,1001,9263,999,765,190,809,190,6019,14031,2,16813,22,978,23,931,3971,1,12116,6896,37,1,4025, }, + Z11N142142 ={ 123268,460,5875,2,6604,1509,6906,1,999,1,619,1001,6965,17,483,516,485,1483,114,1296,1,2638,1451,1,1509,1,999,1,4588,529,2309,8081,898,122,1594,6453,8860,973,1695,357,1001,8942,8035,15129,1000,2025,5822,3058,7958,1,999,1,1119,1,10999,1,3898,6967,5149,7863,8127,904,2,10956,1153,1,9979,1,1913,1000,969,6020,3964,18012,2,998,2,1979,1,3194,4833,1100,7886,1000,2171,2860,6101,1914,1,6029,2,998,3,4029,1953,5638,7404,1000,613,1,1974,2990,7019,3029,2890,1000,4967,2,1053,3108,1001,2862,304,1,675,289,969,3237,629,1,368,631,369,4566,1037,1246,662,2,41,3233,3202,507,33,2090,3144,998,790,1,3049,1,259,2,4135,1000,4553,1,1195,2230,563,25,10,965,25,10,7245,4191,2,1737,1795,3026,2,4414,2040,9013,2,3719,1,5808,9150,1237,7809,7715,1,99,1,157,742,1,98,159,1829,1392,684,6966,1115,3202,3054,1,919,1,999,1,679,1,1912,1300,23,874,1,2963,1867,998,408,973,1,949,1001,2937,1201,8528,1061,74,1292,1001,608,267,1001,1095,1091,1026,5814,7076,50,595,379,621,379,1655,1424,514,1,128,5148,1000,2919,916,332,1039,598,89,1,909,304,761,9109,1753,368,35,1,22,574,368,35,1,22,1057,1,609,1,1409,1,1559,2,8380,1778,2,1792,374,6650,5401,2,998,1795,159,5814,4979,171,2980,3056,1000,5977,1,5947,4070,4961,2,956, }, + Z26N142142 ={ 280494,1001,966,18043,1,16982,1177,1001,14973,1001,2033,1003,8989,1,114770,12962,997,2981,999,2049,2,11924,1001,10990,50,8301,1998,2025,1,4684,3942,6329,1999,2705,1,3347,666,11946,1,999,2,9044,1001,3976,4033,21336,998,2,3808,4,13825,2,11187,3,198,800,2,199,1,2959,1,812,15041,2999,1186,2,47568,8020,1001,1,23958,1002,13959,995, }, + Z35N142143 ={ 293476,4960,18004,7014,1,8265,2984,1,9997,1001,2017,41886,11979,999,1034,20976,1,999,1,209009,2,998,5020,1,2980,5009,1, }, + Z42N142143 ={ 299670,6034,1,3966,8995,5018,1,22,7986,2,3019,1,4976,11003,1,1034,4962,6043,15025,3987,3020,1973,7029,11003,1000,14003,1,6006,10997,18002,1000,10994,1,10986,4993,1988,1000, }, + Z4N142145 ={ 453454,1,11023,999,1963,17011,1000,3038,21021,2984,1,5980,999,12980,2,21007,1002,998,8007,13020,4014,1, }, + Z3N176583 ={ 133576,18977,2054,1002,7056,998,9912,998,1000,8085,2986,1002,5855,155,16874,12964,1,30997,2000,26950,20020,24974,18994,45143,20039,40964,23028,1,5609,1002,22975,8005,1001,4014,1190,16845,9135,13917,162,10926,998,4869,18968,54253,1,23065,2915,4051,1933,9975,1,8087,6036, }, + Z4N176583 ={ 594724,2,998,1,28996,1000,14983,1,18031,1601,30986,4095,6252,4991,4025,3672,1000,320,2949,5981,4007,2994, }, + Z33N176583 ={ 134352,1000,5980,45,12947,1,999,1,5068,2,3075,1149,1000,6782,2150,1001,2105,2691,4072,64,1,933,5125,41,2,1898,2,8878,1,2264,1763,2096,914,5010,1131,999,5890,1962,1,1125,31,969,31,2904,998,13088,1899,1000,4052,11905,169,28,2,797,171,10057,4768,2213,3892,1,1997,6928,2194,1,1000,882,7941,1000,9102,1000,1834,1,144,3096,798,2,199,2740,2,1001,1087,1001,6163,1999,3966,2,3947,1072,2,927,73,3787,2,2066,7049,1860,111,4093,1,1001,3764,5213,2,996,4,2025,11777,997,160,1,3981,998,1,7937,1130,3,998,3,1831,2957,1,8113,2027,999,4906,2038,2906,1,14997,2124,4973,923,2000,29964,998,1096,15902,3001,2,1111,998,23926,964,2,98,1,902,97,1,15133,56,1,12927,5832,1002,13226,8764,998,8980,1,2245,1000,1043,2,16658,1002,999,8940,1,409,1,589,1,407,4650,8992,1,5373,1000,26025,1032,997,4033,999,5462,1998,1,7034,1515,1,485,513,6935,3577,999,4576,5938,5912,125,997,877,122,4401,2058,8934,1,3575,1000,5530,67,1301,968,5576,8394,2709,109,1,361,528,2928,4,996,4,5368,1,10187,4,1474,104,2,264,1767,2002,1266,2609,3,454,11480,2373,2,48,1,951,48,1,7089,570,1,430,694,265,1,734,265,1,2889,1,9679,2,2369,999,2700,2,1000,3100,4265,8964,999,3710,2,3035,6214,999, }, + Z4N176584 ={ 303684,1,13988,2,83,7036,1,677,322,1,853,6098,1030,4708,1,6084,998,2083,2809,40,1090,164,9816,7042,1938,4190,9815,2,998,1,8197,772,2,999,8219,1,16779,2,2804,9109,915,1,847,220,779,221,2392,1001,1556,475,1319,999,5254,980,952,470,1379,2123,1000,6825,5694,36480,1000,2513,1,449,1,10076,446,5497,1,999,1,4529,1,13969,1,10593,1000,8413,3607,11946,1,4434,5020,2921,2674,2,1000,3284,6112,1000,1532,1,3969,1,7393,10986,1,1610,417,582,2044,22,978,22,3428,1013,9000,1939,3966,1001,2083,8519,39,426,1,495,102,4031,1336,3590,6365,1,1563,36,1,62,22,27,852,36,62,23,28,3889,1391,2955,25,5054,3983,2,4040, }, + Z5N176584 ={ 83560,16996,908,1,6979,1,6129,1,999,1,8897,3,997,971,7131,1002,1000,115956,15965,11034,930,3020,9075,11903,27020,139853,2057,9010,4955,2,64003,13030,7960,15020,28004,1000,2,18017,966,1000,1196,2,3028,1001,757,7151,11021,3,64767,1,999,2,7022,8976,2,2032,4151,2975,1,23023,976,1,998,2, }, + Z4N176586 ={ 291655,46,3027,13059,2661,7053,8128,6951,959,1292,1000,16989,6968,24555,1001,1,13032,8871,1973,125,998,930,2,1032,4093,5043,1,22059,1,31015,999,16018,110939,978,1,1046,1000,2933,1,11850,999,10990,1,4994,17012,1000,73275,1024,1936,4974, }, + Z33N176587 ={ 158374,1,15999,1,999,1,5193,26,1,4769,2,7031,2223,1000,5931,60908,11969,25,48,927,27,997,49,2023,1,7884,7972,2000,143,1,12019,2,5843,999,3178,998,3945,4870,1112,4911,46,101,853,46,101,2820,3982,2122,2,999,1001,2076,5796,997,3,4185,952,1,3904,1000,4115,1,959,1003,871,1076,1,943,1001,1168,997,2870,1002,1056,920,3,1997,5147,1022,10983,1,10986,11003,1,999,1,3975,39915,999,3039,2,3975,1045,999,4908,1000,1022,1001,3053,889,15007,3,26,1081,2,13897,2,5049,1003,6026,2,1029,2,998,2,6021,885,7962,1,1113,1066,1,7070,999,7837,82,2,6066,1001,1806,1062,894,1,1194,1875,3,5097,2,2818,1,159,2,970,3108,1,999,1,4829,1001,5069,3,4847,3,1062,6955,2,11020,937,2,25014,7975,3,1000,8960,997,3,2971,2061,3913,1000,2043,999,12024,7476,1,4502,2027,2,31,967,1,1032,6407,1,1629,1,1001,8972,1001,5910,135,1,1364,7609,477,999,2450,2,998,2,6468,1,2056,576,428,569,3,1807,1001,172,2851,216,1,2856,28,478,494,28,1406,73,926,35,2925,1,2579,1,143,831,2000,2115,1,3386,1957,728,234,764,237,764,6016,3823,1002,2466,565,452,1591,4024,2,2040,1263,1757,2893,128,872,129,944,1370,1969,966,10977,1,720,998,7071,1,3976,1001,3968, }, + Z4N176589 ={ 323795,36775,59956,29825,53969,18984,56060,58435,19000,9520,33411, }, + Z11N176589 ={ 349293,200321, }, + Z13N181166 ={ 347589,3987,32,961,30,5978,28,981,1009,8276,990,3853,1,137,3870,3156,1987,988,4015,43991,655,330,7,664,12,342,674,5004,1972,325,1,2698,323,982,1677,13,3318,2661,68191,990,4013,6979,1005,22,992,3978,1029,2979,3153,854,140,4699,1290,6997,23,1703,1,283,114618,4980,1009,1041,4952,16,1030,11,971,19,3959,1,1011,18,5030,1,970,18,}, + Z17N181281 ={ 470404,1002,1031,16999,7947,1002,26019,1,999,4989,61098,9023,16044,2853,1082,16913, }, + Z15N190173 ={ 402284,1,10,7989,1,11,12992,985,1000,7124,1891,26,1,1000,979,1002,1982,29,101,4820,16,1,136,15,832,153,13,2,1915,959,60,2041,882,1042,946,52,1061,1,929,1,89,20,1,2874,1989,2103,1021,2887,2084,1851,1,55,1110,2814,1,999,1,1010,2016,143,1,985,4930,59,868,73,59,878,133,882,34,989,999,1990,4019,2,953,33,5983,1,3009,1,974,6012,5008,11008, }, + Z37N202747 ={ 273344,2,20913,2000,16082,18273,3,57992,18111,32533,2,42539,1,31939,1,2001,26601,231,194,1003,799,774,226,3,8881,3001,3789,38283,1004,3084,2001,9092,2001,2,57692,999,11902,5301,3000,27785,1,1999,1, }, + Z38N202747 ={ 252351,2123,5,29,966,35,968,7278,994,1002,8742,3,3998,1,13874,2997,4281,997,1754,1306,1002,692,308,32087,1002,2680,2015,1084,2,998,1,24788,1002,13345,5,1000,998,7136,4695,1,31854,1912,2998,13335,1,11368,14408,4,1995,1005,954,995,13374,11646,1,1999,1,35096,243,1003,758,24105,27114,1,998,2,8809,1,999,3001,1833,1996,18451,1997,31500,1998,4335,998,3120,2,1999,1,6639,1,1997,3,12170,1998,24215,766,6,994,6,228,17721,55012,1004,14909,1,999,1, }, + Z39N202747 ={ 165607,5977,1,5010,1989,1,24003,1991,1000,1020,1989,19646,1,981,4990,1000,18,7970,1,34,1991,5954,2,1013,2008,14,15,330,641,14,15,1320,3013,615,1,4019,122,878,1,1367,1614,3155,2982,11,862,138,8008,978,5018,1189,1789,108,1,1119,1,4777,216,1885,9,879,3215,1000,1897,2,3884,12,9987,2046,1,982,1000,985,48217,4985,1001,2969,1,1048,2,998,3102,13,864,4976,143,836,164,3599,157,830,258,226,751,37,1164,1582,143,18,838,1,143,18,316,771,905,4086,972,209,558,441,1013,569,2218,1,1011,752,1460,1028,1541,964,46,954,46,4961,4027,211,756,32,2,210,1768,9,78,2154,1836,258,890,1874,230,770,230,911,1,846,232,2018,52920,3014,998,4987,8006,584,13,4018,1000,1415,2051,517,1,411,8016,4986,36,1024,2000,686,1,300,1988,3,2666,61,2,2946,3040,290,1722,2950,2,304,12,1018,1015,1743,12,513,2385,1119,156,358,2652,52,260,1,512,231,3736,1,230,302,692,1318,1492,1249,278,637,66,111,823,66,112,627,516,1001,19,1,489,1,1224,107,1653,484,1074,427,1044,231,15,754,245,1090,176,679,1284,728,291,1716,110,110,1013,1014,2,64,3849,45,1,60,992,917,1,121,2927,56,668,292,1706,312,1722,19,161,133,1852,1,1029,1,92,703,163,1111,1,696,1045,1000,981,1982,310,723,172,1,985,134,1,895,1953,2,839,4307,1899,2082,1882,1,2979,1,1042,2686,1981,1,348,1071,14,15,971,14,15,562,2295,1021,50,1028,600,335,1,1024,1025,2,1038,1000,801,1184,963,946,2018,1057,2,1827,2014,1146,2842,1,112,1067,1,1966,4017,1941,2015,1,32,986,6980,1554,480,1509,473,3550,117,985,1882,3147,1324,1,999,1,4688,2, }, + Z1N202748 ={ 199684,1,4929,1,29,2,968,1,29,1,8876,1000,967,1196,1,2013,916,1,3977,1000,909,4172,3844,1000,21195,6025,9045,924,7036,11034,7952,3025,7738,63286,3636,1002,9402,7556,999,1471,2,3555,11977,807,1,3097,4052,1,1974,5874,2,4399,1,1033,584,1000,2129,10247,7023,1000,8838,1001,13012,976,9999,6895,4018,13988,1000, }, + Z18N202748 ={ 462218,7246,1,7746,7266,1001,4966,1,3775,2000,7974,2,998,2,6276,3,32089,3,2000,7979,998,1000,2,4142,1980,7856,1,1239,2,7788,1,4143,1949,77,1,922,77,1,5052,6961, }, + Z27N202748 ={ 374560,34,1,999,4980,2,1028,1,7036,19060,943,1,1024,4953,1000,3078,5052,972,1,999,1,1962,4724,10293,1,1716,1000,3993,1980,1,3306,1000,4977,2675,10996,1000,2015,1,305,1671,31018,11009,2981,999,6016,1,23029,2,1000,5473,2521,3494,1,3492,1046,2,9462,2982,55587,9024,14996,5963, }, + Z1N202749 ={ 343300,1061,1000,1862,13581,1,3427,40,960,40,1078,13924,1,1062,2884,999,5547,5490,5549,2927,1000,441,1,59,1,8226,2000,4957,1356,1,6924,965,2,8798,1,5079,2,998,2,2635,2288,170,5725,1,4159,1,6817,982,1,2215,2714,1,1248,1000,2,5835,1833,14121,1,972,2977,1,6945,21990,2228,791,7029,3255,2,13956,4777,7216,1, }, + Z18N202749 ={ 394210,1000,1980,5981,2000,12023,1,46193,1999,2023,6954,2,998,2,9037,2,998,2,19137,1000,2863,1998,14017,118,882,118,3030,4876,1,143,1856,1,143,12827,998,7387,1037,921,6054,1000,2965,3015,1003,2057,1001,1002,5964,1949,1001,16021,954,1,17,1003, }, + Z27N202749 ={ 321531,3023,1,999,1,11988,1002,6014,1001,26109,3025,12,987,2,11,11981,3060,24,3959,60,940,60,5574,1,18,4955,5983,69,1024,1,119,2,8992,1802,1000,1231,4982,2,1801,30270,19002,180,19808,26,7182,1001,2957,2665,5994,1223,1,5144,608,5036,1000,7217,5019,10009,7124,1000,6894,2121,1000,8862,115,1,883,116,1,3015,12868,178,7512,461,1565,1,1418,6861,1,7702,7017,1,999,1,29122,999,10964,5031,2979,999, }, + Z38N202749 ={ 292566,998,6982,998,12990,2,1000,998,26935,2018,24997,1,23995,1000,8700,4000,3314,1001,21678,2,1000,996,3034,998,3939,998,22399,5615,1,947,1051,2,1946,1004,2085,4352,4,998,1,4599,1004,3095,2,334,664,2,335,4535,998,13121,2,998,2,5971,1996,9981,1,1998,2,3116,5963,4,996,3,24144,4,14018,2,1999,1,2238,1002,5749,1000,2002,14248,2,12978,3,999,1998,33859,1002,7031,998,13970,4,996,4, }, + Z39N202751 ={ 172601,8976,37,1,986,4988,1033,2952,1,2020,6563,3020,3980,5008,411,1606,15,387,598,15,387,1561,2422,591,421,4599,1022,1952,2,1414,2984,3021,1,989,2594,10226,1,1986,5013,4988,1022,1,2147,2832,1,2169,848,2162,1,976,1853,1,2014,2153,3991,3848,163,1,855,4088,2946,1,959,1,65,12,2012,1,11,951,7014,966,47,1,1013,2951,17061,7989,10007,2985,9019,981,7023,1,4970,985,13,2017,1000,3957,4992,1001,13,1946,2020,2014,3073,17,898,85,1898,1,2111,4980,1000,920,1941,3219,814,20,1100,844,20,1,980,20,1216,909,898,1951,128,1888,144,65,1,815,61,971,41,141,1,737,80,182,1,831,2041,160,983,842,1028,246,693,835,1,482,602,15,1,41,68,176,700,15,110,175,1016,1040,688,1,285,587,70,277,1,805,307,15,1732,160,1,61,633,30,235,1,661,122,29,849,122,29,301,878,682,342,38,38,595,55,1873,121,33,881,1,417,572,140,225,691,61,1162,11,1,744,244,790,139,248,551,15,972,2066,37,77,231,880,902,13,185,103,12,1,476,11,27,421,724,1,301,1638,1,348,721,1,863,35,214,570,576,569,379,123,1,519,2,376,1069,48,644,111,1,809,1,224,1765,373,545,40,974,16,1372,1,905,970,242,569,1232,148,396,141,96,1,316,446,141,1980,325,2,2219,1,737,187,11,44,1,484,18,80,196,2141,1,670,177,591,123,110,176,242,1,463,36,1,988,2285,214,530,817,411,814,1,53,957,353,679,1153,28,719,469,1558,1,956,28,399,695,101,1,851,434,554,1,794,671,580,385,615,106,279,513,866,1,563,765,1817,1213,284,677,16,278,430,85,882,49,1,1000,597,338,1421,817,1223,96,479,306,22,1,177,146,531,839,611,685,834,410,590,410,425,50,2349,129,659,324,1,148,2,545,276,505,346,75,24,161,15,36,410,86,1,204,222,61,529,255,35,1969,1586,169,23,278,1021,87,1,35,931,84,550,449,752,675,103,1,291,535,383,1,112,666,187,130,56,46,581,41,1,331,46,1027,817,125,637,212,49,195,1,508,365,46,1,63,1789,593,428,629,397,1,18,107,26,378,1,186,171,150,493,431,28,1,47,648,382,426,446,1,142,1426,40,149,279,192,718,117,186,1,922,1413,368,591,533,42,425,12,191,243,87,20,22,1,71,384,338,3070,249,665,49,115,539,152,837,1,365,257,324,1349,52,112,1,887,112,1,861,1192,16,1,2474,363,625,294,1015,645,413,957,163,1,25,811,163,40,2,3825,1896,47,1,659,1,1532,712,110,16,984,15,913,1214,802,1258,12,11,1,818,124,1727,263,746,19,123,868,36,115,1,111,737,2,34,54,55,7,111,856,13,2895,1277,1800,1124,895,162,2747,1114,102,2768,259,882,68,1800,18,172,1000,726,1001,1019,1,57,178,1969,1879,113,48,58,1762,151,101,672,1016,2072,213,1,39,1,2899,1,12,1070,752,1192,12,747,253,1079,1648,294,1,779,1,1151,17,91,1,698,91,1,1183,1632,17,55,247,681,17,302,820,194,73,944,1802,31,827,1350,1831,1810,3405,746,1878,49,108,1207,30,1,587,130,26,227,1041,561,2049,2134,228,614,369,33,1,645,17,65,52,1,829,1,133,969,302,1563,189,1990,1219,17,797,1,801,1068,1,112,2235,2792,1,1011,165,2017,32,756,225,657,1979,3155,31,184,822,1220,1581,408,611,161,184,1,1027,957,4027,46,1760,2229,983,1,974,982,999,1030,1052,4982,1,957,1026,1000,76805, }, + Z37N202752 ={ 340494,1003,9020,918,997,2057,2001,2045,997,4872,1,1999,1,2030,999,19030,3,4077,1,10979,926,33,43,998,2,925,32,2,13080,995,12941,923,2,998,3,73,15983,2,28,3,1927,961,5,36,959,2,35,4, }, + + }, + { -- continent 3 - Outlands + Z4N2041 ={ 440264,5038,7012,1,212,4983,2762,3267,4984,6014, }, + Z8N142143 ={ 110629,2980,2950,4905,1,8125,7036,3886,18887,7215,1,2723,7134,2118,24078,9756,6887,32380,9922,5820,11097,11734,1,4071,1000,17333,11926,999,1,19712,3926,39160,3199,12848,1000,4911,11238,938,25015,5762,1,31020,999,1,53348,5908,1000,17071,5765,22127,1,26806,7305,1000,1071,671,25332,46098,1758,19123,3851,892,1000,5144,5786,13121,20378,4662,1000,2,8263,946,2,1000,21838,2,18128,1,41148, }, + Z8N142144 ={ 173081,5997,1990,5012,990,6015,5979,1,2019,1,507888,9956,2013,3042,1,986,1000,4985,993,2029,2961,4022,2970,1021,1000, }, + Z2N176583 ={ 86497,27984,1000,34938,37997,105202,74265,1639,6052,1,22987,1920,1389,2640,1001,14318,24,1,6839,1,11039,1,9679,1,2209,1,3168,51,1,4585,2080,11032,1947,5067,9940,1027,2,2021,1947,6793,18527,10475,196,1001,2329,1,19724,16261,12893,3838,1788,2162,22040,10111,16106,37,999,14656,9305,998,954,3620,14366,3091,2,998,1,17927,12,1,6008,34681,1,1000,9132,999,2938,1,29177, }, + Z4N176583 ={ 393404,1,3963,16976,1,2027,22015,1734,3428,11025,1,999,5543,6277,1,1693,1054,2198,3216,1961,1772, }, + Z8N176583 ={ 91519,82775,2,1000,27964,23942,12082,2,285,6626,14067,1,14287,1000,5905,7754,4400,5803,1,4155,25644,1,6219,1001,5846,4902,6196,22908,1971,3211,48845,1,3042,27995,20957,52227,35938,1,32045,2030,20970,1028,43131,2915,1,14029,2,10938,1,4173,2123,18722,21319,4688,11282,1031,3923,1000,2611,4480,6416,9551,1,1912,5653,59991,7945,1000, }, + Z2N176584 ={ 124408,8051,11072,942,1000,15925,4168,8847,125,875,125,52052,5964,1,27126,2988,9745,1,8261,14018,1,742,11936,2,6235,1000,17950,20913,1000,3165,9911,1123,5928,23009,23145,1,10854,1854,1000,9108,1000,3921,11218,9118,1759,841,12319,1000,1623,2949,9325,1,5077,1000,6727,15122,13975,7228,1,20982,576,233,22814,7280,78,12012,7603,160,11896,17168,112,11915,2,7042,25990,1001,1817,29958,2,37244,1000, }, + Z8N176584 ={ 89454,20970,1,20977,12882,1,999,1,48109,1,9223,11793,1000,19213,1,998,30846,33855,1,22072,1920,1000,9341,1000,68962,1000,54694,2,68020,79011,25039,2042,1000,24984,18205,6117,1,999,1,67565,31994,1,5086,2379,11613,1000,1050,2,9975,10893,2059,1032,1,1024,7435,1,5577,1000,5903,999,964,6185,4882,1001,4923,9054, }, + Z2N176586 ={ 160614,1,3756,1000,48069,1243,1000,25990,19687,9407,7962,82,4953,1,6566,8331,3969,8091,9906,5721,8274,4803,890,10344,48,12896,1,4089,1,689,1,3483,4441,8335,999,2,22761,15388,490,1,999,1,6392,14670,75925,11975,1000,4082,18944,26060,1000,931,1,15013,30450,10607,999,20990,1,998,2,2917,182,1,5277,5074,23768,1,1181,10941,1000,22971,2810,15229,6865,8202,1,3032,1000, }, + Z1N181270 ={ 347791,36933,1,9818,1000,4035,106,1,3985,5804,1,14014,1126,3935,2183,79,5821,5034,6883,1214,1,1879,1,55,759,1051,1082,1000,3198,3871,3780,1280,848,7935,1,5931,34,7940,7091,1118,8863,1904,1067,259,10921,5740,11307,2808,7872,2976,3982,7942,1000,3296,921,1825,2915,2000,2117,1,285,10637,3149,4312,866,1,1058,2566,1149,6120,281,4561,219,6067,1595,81,3496,873,4777,161,4030,115,886,666,58,1,839,497,504,6376,1000,1149,2795,734,265,2173,2769,2864,13962,2963,957,42,3260,1,2177,1082,1,2556,9450,1000,633,1,3942,14925,5506,3954,2574,9352,6061,980,8079,21963, }, + Z2N181270 ={ 109544,1,18051,998,2866,967,1960,184,816,184,2059,15921,5022,8824,6047,2,28,1,916,1000,9171,1000,14862,1,2042,2092,1000,8964,6121,2,9028,1,2932,2026,999,918,1897,4087,1,11149,1,4081,6623,1000,15398,3759,1000,6105,2073,1,685,1000,6188,2733,1000,2153,1,11953,2170,5891,2157,16936,1762,1,5937,1000,9344,1000,8764,1000,2908,8043,1162,2903,10234,1660,91,5443,1,2501,1341,6611,1340,2874,7261,1787,12870,268,731,270,6957,10624,404,1,5703,1241,5835,1001,874,6453,2592,2,1205,76,1037,2,2588,1,2148,1000,5974,961,4296,1,1079,1,739,1,1069,1,1266,5693,1,7749,1,999,1,1422,2756,6842,999,21016,2247,957,1,201,23845,6143,1,603,6038,138,1,12906,275,667,1210,1150,1000,838,2252,2,2528,3048,999,6019,1325,1,5657,4394,4858,1,3043,660,3043,1000,2938,3273,767,2045,1,3386,1742,939,99,722,3071,1,227,773,1273,100,2644,4222,1,3184,837,4107,946,1775,1,999,1,3252,8941,6949,1000,5566,311,2,77,2,4694,8149,140,90,911,89,17815,156,7067,14030,1000,8853,159,841,159,1039,8044,1000,11028,4667, }, + Z3N181270 ={ 201461,1078,9965,4953,11212,2793,82,2,2878,1,999,1,5848,1066,1223,746,11261,1638,4302,1721,1239,2838,1032,5065,1,6803,4375,7021,1,6108,708,3955,260,3693,5881,465,4089,1,8559,1,3294,1845,1,766,1425,624,8496,5590,8033,927,10868,1,443,1942,1666,2047,9118,1363,1,702,1000,2852,2338,712,409,2429,1000,6026,3481,1,913,86,1,818,136,110,13783,656,3479,47,1,952,47,1,2564,1293,758,3296,1595,7289,5647,1100,1417,1,808,8149,5085,1001,7481,32,5107,1052,3274,1,3507,4340,2057,1859,315,686,313,537,4199,2157,544,167,288,2618,8312,1,999,1,4612,2452,1620,28,137,1,999,1,4352,724,13941,1000,7104,648,1,8427,6876,7036,1,2109,1,4856,1929,322,678,322,824,4816,3296,1000,2929,1897,1,5706,8357,3850,3292,3754,1,1915,6943,173,827,173,10948,1,13218,2750,1883,1000,282,2906,1,2871,358,1,8076,11886,2747,1,102,897,1,102,5099,13127,828,1000,792,164,2896,4271,2,942,999,4019,9848,8085,3064,3916,67,933,67, }, + Z4N181270 ={ 384394,1,2971,12003,2030,959,3981,10046,999,17138,1000,607,5174,5094,162,7552,2149,3816,2219,6200,999,6633,3239,1171, }, + Z5N181270 ={ 196280,15086,2962,1000,2909,12074,1043,1,28,6031,1,16963,14911,15279,1001,2966,5906,1000,8923,1,999,1,1051,4102,1053,4896,11962,921,8991,40,4122,11190,2627,4152,3940,101,899,4021,921,1,7939,4100,1,3077,8223,2734,6855,1,10185,4127,1732,1071,2328,6581,7190,1921,1144,1,2561,1350,223,7515,1,5303,859,9923,2289,2131,1421,12517,6657,18289,1,5568,10523,11533,9926,1339,3049,11670,6961,6197,4333,1,12886,6629,336,2925,16919,2064,1,13099,1,37,3613,2293,866,14923,5951,267,850,10248,10994,10801,66,1,3820, }, + Z7N181270 ={ 192733,12039,1000,14915,12897,1,7076,32953,1,21928,14091,1,2082,2350,317,1,683,316,1,3281,4787,1308,751,7106,7766,1,1357,4682,1,6126,19213,1,5579,1,149,1,2653,14153,241,760,240,6805,4934,4497,14971,4588,172,5683,591,2,6336,423,1,577,421,4747,872,2155,2580,696,2157,5952,3545,2086,1309,5494,1396,4769,2367,926,1,169,1,455,6106,5235,3160,459,93,4094,1454,7863,1,1949,1,12146,12636,1844,1000,17345,766,14882,1,6163,4875,4078,7122,835,976,1,4957,6122,1,1053,1000,13865,2045,10155,3042,889,1,8938,5957,12164,1,6901,10148,1,6968,3816,105,1, }, + Z8N181270 ={ 84483,1000,12108,13912,14901,1,27038,3851,1,10769,1,5179,2,966,2260,36,589,10139,462,955,3688,286,445,321,1819,3876,1478,2610,863,1000,11565,1,5025,10937,1749,1001,5217,1,7997,2128,6654,1,6929,1,8247,1887,1000,6920,6357,9730,15846,1000,9091,2,999,1,5029,1,10276,6949,632,2139,13085,841,1000,8346,741,1,999,1,19154,1000,13112,21993,1,14059,902,98,1,645,21271,855,2068,1,106,9868,24100,1000,10942,4790,2300,8713,1,20155,41,9806,3997,1,1208,5876,20934,1000,2245,10849,257,1,3958,1897,1000,1124,1,9886,10042,2085,1864,4107,1000,675,1,1069,1,30345,3794,163,18894,11060,4701,7362,1,11116,1000,4552,227,10126,2695,1448,1000,8399,1000,2075,6123,6328,1,599,1,12045,7865,999,3425,1000,628,5047,1,25979,1,4059,1,2322,4581,2456,1,3471,1000,1191,7949,1000,13906, }, + Z1N181271 ={ 277763,1922,1169,1,3778,9606,44,216,740,5233,2850,463,999,6924,4708,1207,1670,1294,6959,4695,243,1,1703,1000,9115,10114,1000,808,1146,4885,462,3476,1,5111,8978,1497,22925,1000,2935,3635,10972,69386,964,37,1061,1000,5491,3544,1000,2958,13439,11614,8922,1,5040,999,9400,1,9489,2,6054,4770,9717,237,1,8363,8057,1001,2543,4441,7348,7318,2329,489,1,203,834,2030,3185,2851,5717,6209,1,4179,1,9289,3786,4052,5041,5767,283,1419,2619,2621,9092,1,2856,13380,6691,2288,1000,6447,3167,1,20929,1,10484,6080,10543, }, + Z2N181271 ={ 151350,11308,4933,32790,160,8122,5048,3909,2806,17295,11945,8850,6280,11946,6603,999,4484,4851,16091,16934,1001,6654,329,27911,6822,8238,631,33,397,9137,8867,1,8079,1,999,1,2981,3964,40540,8065,19369,1,9759,20735,28055,1,12201,27811,45005,17528,14897,9004,13706,5094,999,3161,4061,7850,25014,34098,1,17089,1, }, + Z3N181271 ={ 71411,25,15956,12064,4981,1000,1939,13043,4925,1,5054,5983,10972,2985,24037,1000,10946,3214,4853,999,8952,12279,12789,15906,1,3173,8102,10147,3787,1,3086,581,1001,7576,949,7945,1650,8164,2333,6911,6544,999,4387,14155,6751,5029,9597,12204,1223,4706,2912,12231,2881,7225,999,1270,1,509,1,251,748,252,8731,1000,982,3493,7930,782,1,13769,1,7368,6128,5646,2836,1000,12151,1,7329,1,72,928,7449,1,1376,1000,1711,7488,1000,18041,20789,8938,4653,1399,15211,3060,9717,4940,5104,4839,2355,5930,16980,6058,1,9748,12867,3319,8635,1,2376,7783,1,9138,1177,10613,2331,1,6754,5234,1829,2958,3256,4945,4679,17291,3903,1,8064, }, + Z4N181271 ={ 198694,1,30044,7663,932,1,27093,1000,2263,12872,2567,3060,2980,3209,13765,1,2971,1588,1,1487,3965,5978,4629,1,10792,11970,4747,1,3357,6672,1,999,1,6941,3318,1,8613,6214,2807,1072,283,1,716,1073,1,15885,3467,802,699,202,8125,999,4204,5556,1,4117,4092,1,4058,4579,1011,1000,1948,318,140,3775,1,2176,1657,492,3480,2728,4645,5872,4228,6868,17773,1,1949,1,3612,10745,878,16218,180,5035,13352,376,15238,10068,976,6558,7965,1000,2243,838,2378,39506,9073,1,9881,9326,9701,12128,3934,15044,24910, }, + Z5N181271 ={ 272564,1,63954,36149,17927,37874,16169,5864,3924,1000,733,7091,5075,34234,17052,129,11446,3193,115,1,884,18078,36211,9839,4871,19120,11376,1,999,362,24409,4173,1000,4092,11876,1066,8970,2078,941,1000,4965,8831,22282,12884,1000,3063,3974,3063,18987,1000,945,999, }, + Z6N181271 ={ 818635, }, + Z7N181271 ={ 161727,6917,1,11167,19318,27,11922,13023,1000,2042,1,2912,3497,1,1227,17327,11975,1,444,555,1,444,140,1047,22074,4692,182,1,2052,1646,2404,1630,3053,999,5637,29717,22281,1,11199,1,1001,4035,5493,999,1618,6939,999,3777,21678,1,9258,1086,4199,3105,18345,425,2,8115,3125,1663,12653,3379,7660,5534,1,7779,1,7069,1,1000,2318,15895,2863,455,1048,1,5881,5556,5352,1,1000,2114,11940,7968,92,15509,15512,1791,6703,1,1555,41,17755,964,120,7057,1000,11147,1,3696,5738,381,13844,1,16347,18409,2513,1,6655,1000,3280,5604,1,1000,8039,1,1476,19952,1000, }, + Z8N181271 ={ 88564,1,6884,23913,6291,15573,3094,18821,2546,97496,471,1,29935,18104,1,4504,6417,19538,1,30071,2443,1000,46794,15201,1,24988,20006,16637,14376,9799,17851,29381,16625,20412,15584,1,44471,952,7135,34987,24027,1000,7995,3387,13641,26008,6975,5377,30424,1001,567,22300,5215,8708,999,2774,3182,1000,1449,7484,1000,4951,1, }, + Z8N181275 ={ 84539,10079,1001,1851,91,4967,10864,192,1,4854,13178,2020,2819,1962,9185,1668,3303,1,1662,400,600,2119,1065,1789,3254,1,2907,6310,622,1,239,1,725,306,66,629,303,2,66,2030,4500,7387,14045,1,711,918,1,9297,1000,2752,2,6172,1000,722,6351,9699,6019,5037,206,877,49,146,1,805,48,146,1,4658,294,952,1779,1142,1000,5934,1,2954,1000,3132,5046,10767,1,999,1,1184,10885,1,3314,818,926,2281,1,999,1,5618,2,3023,1001,2264,2826,11040,5074,5138,6038,1852,5809,3244,1,1031,812,6074,5801,2283,998,1,1073,835,3877,1953,8201,1,11918,23181,1,27845,1000,20170,16020,45049,1654,44351,1,649,1,10036,9985,14055,12962,9226,3043,7051,1657,372,10871,2208,1001,2051,9767,764,1,280,3989,1,4127,2622,2,2018,1,323,3054,999,1913,1001,1879,1,1903,952,3299,637,4028,1,942,5963,1314,1,1216,2970,2476,7033,364,1,3071,704,8848,4023,171,2099,3789,2082,2070,6901,2,6238,857,1000,1834,1,336,1630,4230,4253,1001,4525,1047,1000,1890,6404,860,932,829,3481,760,1913,998,906,1000,1027,426,2,467,442,1,2685,359,3782,302,698,303,1001,2479,2,3968,1538,1000,5948,596,7442,944,2536,5970, }, + Z8N181276 ={ 84539,10080,1000,1851,90,4968,9864,1192,1,4855,13177,2019,2820,1962,9184,1669,3303,1,1062,601,998,2119,1065,1790,3254,2908,6310,622,239,1033,66,628,306,66,2030,4501,7385,14046,1,711,919,9297,1000,2754,6172,1723,6350,9699,6019,5037,206,926,146,806,48,146,3659,1294,952,1779,1141,5935,1001,2954,1000,3132,5047,10766,2,998,1,1184,10885,1,4132,182,744,2281,1,1000,5619,3024,1000,2265,2826,11040,5074,5138,6038,1852,5809,3244,1,1032,810,6075,5801,2283,998,2,72,1835,3878,1952,8201,1,11918,23181,1,27845,21171,16019,45049,1655,44349,2,649,1,10036,9985,14055,12962,9226,3043,7051,2029,628,10243,3209,2051,9768,763,1,1280,2989,1001,3127,2624,2019,323,4053,2913,1,1879,1,902,2953,2300,636,4028,1,942,5962,1316,1216,2970,2476,6033,1364,1,3072,1703,7848,4023,170,2100,3789,2082,2070,6902,6239,857,1000,1834,2,335,1629,4231,4253,1001,5525,48,2890,6403,1792,829,3482,759,2912,905,1001,1025,427,2,467,442,1,2685,359,4085,697,302,1002,2481,3968,2538,4948,1597,8385,57,2479,6970, }, + Z5N181277 ={ 170281,5025,6984,13977,7967,1,999,1,19029,1,1000,127045,10999,51,941,1000,1031,21988,26255,1000,13967,5071,7966,1969,1000,4042,4984,1,1000,253000, }, + Z7N181277 ={ 166669,8054,3025,31,1916,999,6959,2123,10953,3879,1000,3083,3941,9948,201,8893,1,15059,1,2029,1,1932,1857,1,2109,1,2127,4923,10026,21042,13630,3060,331,9634,4969,1001,1962,11040,1029,9638,20014,281,1920,1141,14913,44,19843,2,3184,5941,3944,1,11937,4042,1,1855,9178,3873,22102,1054,1000,4897,1,8019,1,1078,7492,8517,4972,1,2938,1002,3533,3380,13611,1000,4484,3085,5210,1718,3052,2274,1023,749,1,5023,886,1,1288,1000,3143,1618,1,3324,1953,8652,1,91,1000,10147,1891,1,2039,1,5036,1000,6755,321,4896,1002,1948,1087,1780,1164,1,2069,1,9907,1081,800,4229,16787,7118,47,1,2923,13034,5922,1,149,1,2793,2239,787,2,18975,8030, }, + Z4N181279 ={ 194677,1000,8094,3952,12938,8780,4913,1000,4027,347,5040,1000,5651,5215,1,888,1053,16036,999,737,1223,152,641,1,16175,253,747,253,2,6638,2259,1000,5689,3133,1,999,1230,1,4547,11306,9901,760,58,1241,1000,7182,4458,5176,1,1249,1,8162,12637,1,999,5197,3536,1000,2511,3861,1243,20892,1,497,410,590,11541,12495,11523,1883,1,221,340,1305,1000,9175,2151,4072,7385,1,534,335,1,3372,4677,1185,1232,3099,1557,4301,3315,4730,164,5067,1,5845,2530,3580,3491,5176,3317,1001,4633,1813,1962,1143,2570,4610,872,1000,3199,1101,1575,341,797,6429,3581,2081,1000,1876,2540,2749,774,7407,45,923,1388,1319,102,898,102,2834,5366,586,413,1362,5148,1,6198,946,6145,1000,3050,1,5748,33,6882,12105,6064,1127,1003,9755,7046,3051,27922,1049,11922,2052,1, }, + Z1N181280 ={ 269759,5071,1000,6968,1049,17923,1074,1,959,1,3051,15554,5964,1,5017,4062,23948,12982,1,2017,3966,243253,12089,899,81,1960,11082,3986, }, + Z2N181280 ={ 577177,4020,13987,1,3032,25951,6011,3995,999,10999,10033,999,7981,4996,22, }, + Z5N181280 ={ 194229,1000,2075,1,23042,61,28888,11058,1,12171,792,8198,4938,1,7925,1000,2098,3116,1,4946,6805,4192,17873,1000,1930,26367,14739,3912,962,14025,19250,1898,1,4887,1208,1000,2085,1681,1254,2115,999,927,1674,999,1298,5576,1000,4476,1,5476,4349,2224,1,1678,4718,1240,4155,28,679,322,678,2473,926,19578,1139,4288,5636,5327,74,926,1726,4867,2973,60,3145,1250,1723,1,2932,430,569,431,7994,5710,2323,2570,1,63,936,1,63,810,4278,9293,4555,1,999,2100,1,1177,776,888,4217,1000,10920,13083,3225,1750,2795,1359,1977,26842,1,901,4308,1,7603,3078,97,6090,1806,6065,1,179,1,1937,936,48,4124,1000,10847,10180,8801,6067,952,27,1, }, + Z1N181281 ={ 292812,11034,26558,1,39991,120802,23004,88906,22982,48037,47989, }, + Z3N181281 ={ 77410,11038,15940,999,6041,14959,3967,1,55029,1,8957,1000, }, + Z4N181281 ={ 280153,7981,1,4056,5965,4014,5963,2020,8035, }, + Z5N181281 ={ 640884,1,7919,1,26037,1000,5048,10899,13057,1000,18071,3887,1,11052,19029,14947,18043, }, + Z7N181281 ={ 202142,11013,949,50,950,1,5959,1,12048,5991,1,978,30021,1001,342655,10976,33056,30065,4889,30138,1,935,15010,11044,1, }, + Z5N185881 ={ 594782,999,5090,4863,7039,5056,2059,951,4015,1,2008,2945,2089,8980,947,1,1083,3886,90,1,3917,3146,5869,1076,3720,999,2181,18,1092,689,3295,1960,767,1,989,245,3017,968,2,1113,641,294,1,1907,115,693,193,114,707,1,3213,4056,2,3935,983,102,900,780,204,3054,1002,3068,2940,1,789,1,3270,999,1,1916,1782,1016,1260,970,3062,881,4042,1,2081,1907,1001,3055,968,3056,844,42,3065,2,3966,3052,1,928,83,917,83,4938,1,39,1,976,7041,3939,8059,947,8010,2028,2989,1, }, + }, + { -- continent 4 - Northrend + Z1N189973 ={ 338656,1955,6905,17033,1000,6132,4810,12240,8947,6812,999,2244,2717,8919,7033,4355,4670,3683,608,8340,6369,7307,1001,6966,414,998,1335,4769,2529,998,1330,1,2408,2,998,2,11769,2,3503,2454,1290,1000,2,6191,5947,12639,1942,1,1172,76,720,1000,8421,1,3823,3107,1992,5766,4199,7838,7181,951,10832,2,2237,8976,8055,1,9029,1,863,5946,1,720,279,1,719,20980,2,7026,1000,5252,1,36043,3735,24031,1,999,1,23049,1,8034,8147,1000,1884,22044,1,4045,5916, }, + Z4N189973 ={ 459470,15051,1000,10938,7047,142198,1002,12066,2946,5028, }, + Z5N189973 ={ 91397,14949,7348,1,8668,195,2078,1001,1780,2039,137,12940,5081,1,2889,1,3981,18979,45792,22024,3051,4043,998,2941,19070,1,31962,19026,25209,79707,31022,13963,1,19997,28014,26028,1,12046,2970,36976,28967,1,8965,11024,1,37949,1,3052,14244,3710,92,14186,6850,10885,1,47,21101,74,9050,12918,999,18028,88,22021, }, + Z6N189973 ={ 238140,13978,11962,1000,2529,1537,1976,174,912,8883,2166,2924,4042,1897,2198,1000,5374,7942,1001,3698,12993,6309,2129,1,999,1,4026,5971,742,1,1836,1121,7316,758,12863,50,19094,2788,16981,90,7940,3935,13164,11856,4297,1,5833,3073,3813,1,1228,4173,2574,9302,1589,4119,181,731,415,2731,67,999,1297,9445,2473,1000,4703,141,935,7174,4587,1143,283,717,282,1,3109,1,5049,1001,6559,1,6325,1547,10169,4847,1000,2548,426,1484,2888,8811,2031,826,1000,4031,1298,1947,2012,1001,4876,376,4045,1000,3448,9023,1,8519,1,10475,11396,9592,456,1,6609,1,1314,4595,1,504,7847,2624,109,11917,31,1467,1,1951,496,1319,711,498,753,1881,1,51,918,1,999,1,1335,3623,1967,3299,7635,1,2286,2952,4161,1,1082,2600,227,1,1727,3226,13060,99,901,99,7821,1251,2960,1860,13945,1,9052,11965,1000, }, + Z9N189973 ={ 234513,27,973,27,975,5962,5017,1,3027,4261,2,998,10681,1002,4281,1065,11635,1000,3974,1193,1,3181,13707,2,5989,3100,2,2896,2305,2777,1,999,1,1828,431,1,1771,998,1200,1,2545,111,889,111,4967,15896,1,1538,42410,2,23083,16046,1,4985,31,969,31,1903,1,23006,2106,11847,2,998,1,9162,1000,7981,5836,1,5159,1,999,863,138,5828,15016,2064,2,15023,1000,6979,8423,1604,1,4439,1,3977,7476,56,1,4029,1,1019,1,5447,74895,28987,2,2021,1000,6976,2, }, + Z1N190169 ={ 493432,3021,1002,17026,999,6983,4017,1934,1,4031,39,956,2008,1007,2968,2,2039, }, + Z5N190169 ={ 85372,1978,10061,5978,13904,1100,22019,13972,1,999,1,14021,32001,20010,30299,6688,1,5316,10936,961,39,1041,3714,7142,4034,971,65,1,899,1,7907,964,1160,7905,11977,20986,1,999,1,15892,10099,6974,2960,18978,20024,112131,9960,78,18989,48020,4962,13002,7,2025,20002,17021,9027, }, + Z6N190169 ={ 222260,5003,37010,1001,24990,12992,14001,9001,24981,16988,21011,2962,11018,16025,5156,13838,5177,1,11803,7971,9225,1,20988,31097,1000,2034,1,915,6107,20,12001,6792,1103,1000,1978,5893,1,6226,19780,7191,1017,2765,1,2052,146,15806,9960,12969,26933,3033,1,7964,5019,1000, }, + Z9N190169 ={ 224603,1000,2011,1,11983,12,13980,19020,19007,20,14963,1049,5958,9998,999,3040,1,969,1,108138,2,986,8750,10263,1,2756,986,2134,97,1911,1000,2010,3006,957,132,1,4749,2,3105,138,1965,1,2812,171,828,172,846,1,1068,2898,4106,50,38,16,812,2,83,49,37,1,16,3925,2014,909,2065,1,999,1,11238,2,14987,3015,1000,8989,998,2,17993,1017,1000,8967,1000,8031,2,7973,1024,5000,2,3988,28627,6993,1002,1014,2975,42216,2986,6018,1001,982, }, + Z5N190170 ={ 132243,65028, }, + Z12N190170 ={ 203851,9990,4659,2281,3724,2283,3686,1,11339,1,6679,1,10013,18,244,72,950,7965,4011,12775,1000,2145,6955,2883,45,843,1,399,1,2036,1867,1018,3827,2966,1325,1,827,1742,1,1000,1282,165,6552,3310,1,689,1,6229,1,818,8,8993,1,954,24,3010,4424,807,1,939,1,873,1000,4047,188,1974,4700,1340,3652,23,192,960,1,2835,5219,2231,2010,850,1072,5784,1051,225,1008,1000,2576,18,1,139,1,833,3260,7719,11049,48,1,4990,35,1072,114,1844,1059,5838,6039,924,319,770,131,1860,4310,18003,20791,1,3017,3015,10978,999,9120,1,3019,1,3068,3922,996,2075,12982,18955,5950,10032,4069,920,1,80, }, + Z8N190171 ={ 155432,36145,2901,1001,1043,3070,3893,5033,1083,3930,10090,3934,2028,865,162,20,6997,4989,29776,3986,1025,1049,10,927,55,968,2927,3025,1,113,2939,968,2927,1957,2055,1,26,125,919,1041,4996,841,209,825,2058,63,936,1972,85,797,3196,2849,2200,8803,4983,1042,15991,18297,986,898,88,2665,3371,5827,1201,2014,1821,5910,991,9,285,775,224,7695,165,1,999,1,1015,1111,3841,95,1989,1060,723,118,904,1047,1823,355,1806,1084,38,1,3091,801,1081,905,1240,1585,220,1020,2166,1000,1,886,5983,1,1075,4073,665,1319,2044,1839,12,869,1000,1136,1064,641,1102,298,1042,744,397,32,967,757,771,1000,371,3021,881,768,250,1018,582,1309,42,1,616,108,2263,1023,836,163,3025,89,1020,667,1364,48,827,1,4016,4214,975,3604,1,2279,1,6015,979,1644,43,2973,52,4271,2034,11903,23779,1000,3014,947,1013,2974,7045,9942,4023,392,3995,6003,4674,5014,1000,2280,1,3643,63,1967,1951,3075,1,1903,1136,1,4881,4080,973,4215,843,12913,5008,72,928,73,3961,5997,2178,6020,1977,1,3969,3048,3147,6850,955,814,13,987,108,256,2918,933,88,705,1223,10,1011,3102,1903,717,177,95,10,6043,1749,948,1,4018,2137,878,2073,249,2582,1025,16,56,2971,989,63,1000,4859,2128,1018,943,1000,3068,2858,25,1035,1073,2009,17969,1101,2836,1,15183,6744,4050,26442,1,957,1012,1,6040,26,967,11952,6003, }, + Z10N190171 ={ 216557,4037,1,1772,1044,3217,2923,10002,3918,93,1056,1000,1104,1,2786,942,4133,1107,723,1279,1035,2942,5059,945,882,2166,1764,183,26,887,892,114,3944,1,64,117,1797,1938,1965,292,708,1115,4843,306,2825,138,177,2823,1053,13,1145,816,3835,3139,1,5061,1788,1,11,325,3086,3554,33,1,2393,15,956,869,131,1012,1788,76,1082,111,979,3532,37,409,554,37,169,240,1928,917,734,1,914,2047,1450,809,727,371,611,304,119,1888,106,3584,259,809,262,152,1543,1457,584,351,1819,2059,1981,46,1666,28,1225,244,1753,218,962,624,229,231,1530,1187,1,119,853,11,1000,320,641,64,1311,3535,904,386,1769,270,730,15,2374,557,1,1266,776,112,241,880,68,791,2173,1000,656,441,2874,1060,2813,9,234,897,1673,2338,593,3245,3167,1653,3096,62,1834,3347,1,648,323,1774,3237,1771,2242,840,150,2651,273,1,898,6171,783,858,1950,4416,2020,908,1950,1919,3032,1968,221,873,1922,1083,105,1584,1241,1947,1816,191,85,1968,1,17,4152,1811,148,876,4175,2984,1888,4947,983,1023,6,2119,1,999,3785,1962,122,116,3037,1000,2902,1831,101,2105,2837,9165,6013,2952,6005,2033,2013,1931,1,2877,1987,5057,1919,1146,29,41,1009,1790,120,24,1007,1758,5235,782,169,1989,1,46,1089,2765,98,52,7985,2858,1018,941,13,2165,6863,1016,1,4124,2818,2012,134,5963,1000,2931,1150,899,70,821,3247,1,880,131,851,1989,1899,1126,865,88,1,1223,3953,33,1,1699,1,343,703,73,1,207,2861,2813,230,779,2023,1182,3867,97,1,111,4888,1,32,1866,1213,3010,5774,4224,1,772,2070,4089,85,5784,83,43,1868,2136,905,1951,1214,1813,954,58,6110,8,58,1806,1048,1918,88,977,2056,923,1128,968,1913,967,11001,11149,4011,1046,3944,74,6989,932,1,1968,2115,5869,10104,1023,1986,1028,9961,4040,5995,11007, }, + Z11N190171 ={ 105545,32029,1,27911,17045,21937,106,1,1940,1924,20000,217,4009,3685,14365,751,2848,1000,5034,6033,1879,3130,16336,998,8544,4156,1,3221,6079,6997,3583,1968,14897,32548,12482,1069,999,9024,1000,5131,4174,999,11806,24,249,818,5139,7741,1143,17169,999,2831,3811,2125,3234,2090,998,4598,8046,32020,1312,11694,5058,9890,34,10025,5114,1,749,1,999,21098,1159,8906,4202,6006,1732,2357,5838,5009,84,4471,319,1203,1621,65,11860,1,3199,18919,7005,3861,4045,1,111,797,11291,6859,1207,1743,24057,999,2077,91,9131,2918,1127,1962,5039,2694,9095,54931,1,999,1,8059,1, }, + Z8N190172 ={ 126493,65084,2901,1001,1043,3070,3893,6033,83,3930,10090,3934,2028,865,162,20,5997,5989,31769,1992,1026,1049,10,927,55,1969,1926,3025,1,113,2939,968,2926,1958,2055,1,26,125,919,1041,4996,841,209,825,2058,999,1972,85,2006,1987,2850,2199,8803,4983,1042,15991,13978,4319,884,102,986,6036,2718,3109,1200,1,2014,1821,5910,991,9,284,1,775,7919,165,1,999,1,1015,1111,3841,95,1989,1060,723,118,904,1047,3178,806,1122,1,960,2131,801,1081,905,1240,1805,1020,2166,1000,1,886,5983,1,1075,4073,1665,319,2043,1840,12,869,1000,1136,1064,641,1101,299,1041,745,429,967,1,408,348,771,1000,371,3021,881,768,250,1018,1891,42,1,724,2263,1859,163,1,3025,1088,20,667,1364,48,827,3017,6189,26,3578,1,2279,1,6015,979,1644,43,1973,1052,4271,2034,11903,23779,1000,3014,947,1013,2974,7045,9942,4023,392,3995,6003,4673,5015,1000,2280,1,3643,1063,967,1951,3075,1,1903,1136,1,4881,4080,973,3215,1000,843,12913,5008,73,927,73,3961,5997,2178,6020,1977,1,3969,3048,3147,2629,4221,955,814,1000,108,256,2918,933,88,705,233,990,2021,2102,2620,177,95,10,1,6042,1749,948,1,4018,1137,1878,2073,250,2581,1025,16,56,2971,989,63,1000,4859,2128,1018,943,1000,3068,2858,25,1035,1073,2009,17969,1101,2836,1,15183,6744,4050,26442,1,957,1012,1,6040,25,968,11952,6003, }, + Z10N190172 ={ 216557,4037,1,1772,1044,3217,2923,10003,3917,93,1056,1000,1104,1,2786,942,4133,110,1000,720,277,2037,2942,5059,945,882,2166,1764,183,26,887,6,886,4058,1,65,116,1797,1938,1965,292,708,1115,4843,306,2824,1,138,177,2823,1053,1012,146,816,3835,3139,1,5061,788,1,1010,326,3087,3553,33,1,2393,15,956,869,131,1012,1788,76,1082,111,979,3532,37,408,1,554,37,169,240,849,1079,1651,1,914,2047,1450,809,1098,611,18,286,119,1888,106,3843,741,68,262,152,1543,1457,584,351,1819,2059,1981,46,1666,28,1469,755,998,218,962,624,229,231,1532,186,999,119,854,11,1000,320,641,64,1310,3536,905,385,1769,270,730,15,2374,557,1,1266,777,110,242,880,68,791,2173,1001,96,559,3315,1060,2813,9,234,897,1673,2338,593,3245,3167,1653,3096,62,1834,3347,1,648,323,1774,3237,1771,2242,840,150,2651,273,1,898,6171,1641,1950,2195,2221,1000,1020,908,1950,1919,3033,1967,221,873,1922,1083,106,1584,1240,1947,1816,191,85,1968,1,4169,844,967,148,876,4175,2983,1889,4947,983,1023,6,2119,1,3784,2962,122,116,3037,1000,2902,1831,101,2105,2837,9165,6013,2952,6005,2033,2013,1931,1,2877,1987,5057,1919,175,971,70,1009,1790,121,1030,1758,4181,1054,782,169,1989,47,1089,2766,97,52,7985,2858,1018,941,13,2165,6863,1016,1,1267,2857,2818,2012,134,5963,1000,2931,1150,899,69,822,3247,1,880,131,851,1989,1899,1126,865,88,1,1223,2953,1033,1,1699,120,224,703,74,207,2861,2813,230,779,2023,1182,3867,97,1,111,4888,1,32,1866,1213,3011,5773,4224,1,772,2071,4088,85,5784,83,43,1868,2136,905,2951,214,1813,954,58,6110,8,58,1806,1048,1918,88,977,2056,923,1128,968,1913,967,11001,11150,4010,1046,3944,74,6989,932,1,1968,2115,5869,10104,1023,1986,1028,9961,4040,5995,11006, }, + Z11N190172 ={ 105545,32029,26912,1000,17044,21938,107,1939,1,1924,20000,4225,1,4684,13116,249,1,3599,1000,5035,6031,1878,2133,17335,9542,4156,2,3220,6080,10579,967,15898,27419,5129,12481,1069,10024,5224,907,4173,196,804,195,11611,24,249,818,5140,7740,1143,18168,2832,3811,2124,2234,4089,3596,9047,32020,2312,10695,5059,8888,1034,10025,5114,1,749,1000,1,2500,17597,2160,9905,3201,6008,1730,2358,6838,4009,83,4472,319,1204,1620,65,11860,1,3199,1,18918,7005,3861,4045,1,111,797,10292,999,6859,1206,1744,24058,999,2076,91,9131,2918,126,2963,6038,1695,9095,54931,1000,1,8059,1, }, + Z4N190173 ={ 143571,12,5890,2104,13,4873,2023,2063,3010,1939,3045,11,1,27996,1917,74,2952,1,2983,31,969,31,5031,11,20057,6009,5964,6030,1918,14013,5051,1951,1001,2069,1,999,986,7938,4945,4009,15004,988,2,3975,18128,2010,4076,763,236,9929,2053,1017,2751,1,999,1,244,2921,6159,1000,10665,1,340,1981,4013,8823,7967,20028,2037,1,1746,2248,768,1106,1268,1849,960,114,1,66,1753,1,3121,865,182,1094,883,1734,122,136,1108,4957,1665,252,1,61,2416,23,999,4018,4491,125,877,4489,1,3607,19,2989,7927,6964,13,1,2579,1001,1964,1001,1460,4567,5006,13487,8007,6016,29000,156885,22093,5047,2946,1001,4030,1589,1,1439,933,613,1032,4431,1001,550,1,38343,1000,7658,1953,2029,363,676,3307,1,6761,3840,2379,1000,1731,6248,1,9626,1210,1001,2159,2761,2262,1,769,1,818,2060,4321,1,2819,1,9905,4124,1,892,2092,4149,153,1889,1133,571,1,4446,807,1180,999,1826,2885,11,143,2892,1,3136,987,873,3077, }, + Z11N190173 ={ 105544,1,32029,1,26911,1000,17044,21938,106,1,893,107,939,1,1923,20002,216,4009,3685,14365,751,2847,1001,1,5034,6031,1881,2130,17334,8544,4155,1001,3221,6080,6996,3582,1,967,15898,26419,999,5130,12481,1069,1000,9024,1000,4224,908,4173,195,804,195,11611,24,248,1,818,5140,7740,1143,18168,1,3829,1,2811,2125,2234,1999,1090,1,999,4597,8046,26324,1001,4695,2312,10694,5058,9890,35,10024,5114,1,749,1,999,1,2500,999,4011,12588,2159,9905,3201,4103,1905,1730,2357,5839,5009,83,1,4469,2,319,1203,1621,64,11861,1,3199,1,999,17919,7005,3861,4045,1,111,797,11290,2,6858,1206,1743,24058,1001,2075,91,9131,3044,874,2089,6039,1,1693,9095,54931,1,999,1,8059,1, }, + Z12N190173 ={ 421368,15000,23987,2993,31993,1022,10999,11246,1729,25,4982,2258,3731,7000,1250,4031,1,2715,3011,2019,199,6963,3841,1066,1914,7314,1693,8,106,894,106,1,1144,2827,1243,2711,4034,1001,126,936,953,244,1,8732,4279,8015,4732,291,1001,6968,1000,804,7247,1,12009,1001,1599,2,1128,1,847,3992,2450,1,13632,9,341,602,9974,1066,5936,1022,1020,4206,2,1967,19,35,4745,232,20,2730,2079,1022,1,116,139,797,1084,1030,652,1329,662,943,1382,65,1,969,1,594,60,984,187,753,146,93,2826,59,42,935,1,373,531,114,886,105,3001,400,999,1478,2003,179,1,928,281,19,593,108,62,218,18,590,441,1931,1,1779,1,2032,2358,616,19,364,1,1449,116,2153,118,852,1033,717,16,510,2616,1859,1,10,4479,1,4640,308,571,68,2016,3458,1577,1934,1960,3491,750,181,2826,2993,796,1,3121,1991,5011,812,1047,3132,1000,7785,6207,4982,1000,3013,990,977,2986,3016,834,1153,20013,3997, }, + Z11N190176 ={ 105546,32028,1001,25910,1001,16043,22939,106,2,891,2050,922,20000,218,4008,4684,13367,750,2847,1001,5034,6033,1878,2131,17336,998,9547,3153,1,3221,999,5082,6994,3584,967,15897,26420,1000,5129,12481,1071,997,9025,5225,1906,3173,196,804,196,11609,24,251,816,5139,8742,144,18167,1,2830,999,2810,2,2124,2236,3087,2,998,4598,7047,27324,1000,4694,2311,9695,6059,8924,967,10058,5114,1,748,3,998,3502,16597,2158,9906,3202,4103,1903,2733,357,999,5838,5009,84,998,3473,320,1203,1685,935,10925,1,3199,18919,7005,3861,3155,890,112,1796,10292,1,6857,1207,1744,24057,1000,1074,1003,1091,8130,2918,126,2963,5039,1,2693,10095,53931,1,1000,999,7060,1, }, + Z9N191019 ={ 214563,1000,988,86,9954,11963,1,6018,2,999,7955,4030,5954,3021,1,239,2,9718,1,8106,153,40,1,37,769,153,1,39,1,37,662,2,1038,1,1313,4627,33,74,892,80,2,1000,3112,1085,778,930,3060,236,764,236,667,1,2105,3181,841,1136,2001,1774,2,2236,713,3,12421,1756,1,999,1,1649,1,2069,2,895,2445,1672,999,1340,1034,771,2371,1002,606,156,227,37,1338,95,1,282,622,95,1,282,79,1041,1609,182,12810,3340,184,816,185,1749,80,1928,44,2,2966,1694,258,1,293,446,2,552,706,1,6023,672,3108,513,2340,2553,1,4495,294,2,2322,326,1,1523,111,1012,737,86,1001,78,1915,894,1161,2,1045,881,213,1,4349,1,614,387,614,5793,156,1994,821,1,999,1,2115,1524,1,15281,1000,4063,4912,1001,2062,1,966,1044,7977,1948,25051,1001,2982,5009,8957,1078,10872,1000,16116,4943,7815,1,213,786,1,212,1017,1,2909,1002,5957,1059,10306,602,1378,564,482,1,1919,1,696,3030,2893,1,1024,378,13964,1001,4119,1509,5999,1989,506,1,4989,1000,1,2904,13065,1,1909,1,49,2,6938,2,1015,2012,2,8027,9949,10020,15,6986,10969,2012, }, + }, + { -- continent 5 - select cata areas (deepholm, lost isles, etc) + Z3N1617 ={ 338351,4993,9006,9104,6016,4991,62831,9371,630,369,3014,3572,6000,424,4561,5269,9991,3726,2301,1000,2162,1546,2445,3018,5000,12952,16,6114,5010,3134,1744,106,3485,673,310,999,1000,3686,2323,21503,2999,1999,7994,53977,998,5997,984,1, }, + Z3N1618 ={ 336451,2916,57,1,2981,2968,9003,20009,1000,10000,4900,4118,1,999,1,6886,4989,45344,1,11981,1000,4117,3964,896,126,47,827,127,7044,1,9011,2866,972,1,1659,1,6277,3091,1866,1031,673,8004,3986,2,1025,21543,1000,2466,1461,1142,3358,1001,1515,65,3078,359,4486,1,999,1,130,999,964,16920,1001,11006,4991, }, + Z3N1619 ={ 328372,10984,2037,901,1,2995,18,78910,1000,7337,6668,11313,683,23984,5985,6606,1,1012,1376,1632,20364,2535,1000,1,1450,4999,2561,14,1000,13415,1002,18002,18000,27521,7009,12006,1,29770,8017,43929,5017,2033, }, + Z1N202747 ={ 209526,1978,1,11,5998,1,1835,3990,7998,20,2162,2812,28,3166,1842,954,192,2,4853,156,901,914,58,1915,41,1,25,340,696,992,924,58,942,57,37,2879,1422,697,1850,1,15,1008,1042,2942,1985,1159,311,2518,74,925,163,1000,939,56,1850,462,1,518,95,1989,923,123,2021,2,867,85,2057,922,2057,1,10,5988,1961,2,316,2022,1,1582,530,484,85,3976,857,161,990,350,977,107,1,496,1053,957,900,1000,1591,1505,25,484,501,883,151,2992,151,1,2703,117,1021,5148,1,1016,812,201,1,798,201,1,678,1577,3545,3872,4577,1,1443,968,265,1937,401,17,583,401,16,417,1401,1,1832,942,210,1650,1124,259,542,1,43,240,716,1,79,1,1362,2596,1011,1,131,970,1053,781,702,480,120,880,120,3901,969,816,204,2509,1019,2469,238,1036,2606,105,1,273,533,1069,429,1218,1001,370,2214,2695,2283,789,223,1000,702,350,1,2931,57,671,1,4599,1,15,451,533,16,2419,574,727,656,68,2966,2009,585,1,1373,24,348,1964,1,1652,367,1,2082,3549,1391,2077,1,1527,372,1,64,1015,1,703,1000,919,1927,1,63,696,1,735,1247,402,1915,3943,57,1,665,296,132,1861,491,3238,576,1,983,17,1163,2672,134,1,719,1,488,2,5522,985,308,3204,1,3490,999,1,3504,4509,475,1511,1513,6494,1033,1,149,1,850,149,1,2106,2975,11,1750,2171,1000,3974,1114,1737,119,2325,1691,2873,5101,1000,1341,2831,1,2849,1,1164,1162,1000,818,832,1405,935,770,290,2777,943,133,2,76,789,135,728,2,408,10,1,1614,2220,27,861,1206,2,973,3986,1,1841,117,80,1695,1286,3795,229,758,207,1781,1,2272,1016,1960,2994,815,958,54,5001,159,1,20,819,1,3986,179,1896,984,1130,1006,15,969,1886,1012,1118,4013,9,1007,5000,1992,1018,3996,990,669,346,1640,511,1413,14,1,129,1,13,1937,484,515,1,484,2565,9,929,1922,1,580,1434,5565,1,20447,2012,1,2979,1000,2010,1,4458,986,6018,5008,7917,2019,990,1000,3697,2296,3050,1,1001,2669,1323,1666,1,5332,653,357,3936,3980,14,3992, }, + Z1N202750 ={ 201548,1022,9017,2877,1077,1022,61,1,852,982,12,1127,853,1034,4004,2993,104,758,100,1188,721,1246,853,116,1776,307,818,74,1071,1,846,22,82,769,1019,135,11,174,1931,36,48,1764,252,1,627,120,252,1,911,737,300,901,2,808,1,1316,643,3270,1,42,724,13,220,44,2023,1658,64,1010,8,12,4283,660,340,982,701,36,214,677,15,93,187,2173,1,575,294,1,111,517,112,896,1011,75,290,33,602,31,44,39,251,33,2580,116,915,2462,633,1356,624,895,31,355,622,1104,2,1835,123,13,1959,979,245,128,59,1579,62,938,62,869,50,1047,875,15,2119,214,1746,47,969,255,171,1,1582,1008,188,891,2,895,418,1568,2023,109,126,999,266,386,20,355,625,107,268,722,140,971,1,838,1461,1,478,44,592,704,928,129,1674,1,128,422,448,130,23,398,1,30,999,363,200,43,154,1,592,33,208,342,21,2785,1680,118,234,597,31,153,426,389,32,578,1,1889,1,1083,1741,2051,625,177,387,1035,800,200,1,365,190,246,904,113,850,845,274,227,395,1,422,561,1352,678,106,1,124,239,461,148,75,335,455,76,59,75,231,104,604,916,962,59,954,327,1088,644,1196,357,1,333,1216,110,1,687,33,169,1,109,1,745,305,744,433,503,1308,635,1079,30,2914,19,45,12,913,74,1,12,20,534,873,1,111,411,1159,163,143,481,237,799,267,2061,680,573,408,201,163,636,201,153,150,524,230,1013,209,39,1553,33,905,1479,2194,261,93,23,22,167,221,68,83,439,11,11,388,577,52,49,3397,126,1358,10,279,174,23,677,107,233,1411,487,266,1,733,266,1,456,253,1,62,545,295,80,639,113,1353,511,1099,89,319,437,470,82,179,446,1,199,1,646,22,22,78,204,718,77,205,660,483,499,1109,576,1,484,302,598,325,1,613,131,57,254,674,1,59,1,63,1789,11,374,19,553,1,446,69,220,416,284,238,390,2464,119,102,2,386,906,203,1159,648,250,87,1,269,1,2466,27,988,585,33,1,253,153,69,58,747,489,1,101,2364,7,1983,51,66,356,88,440,29,21,25,42,56,1,926,200,23,2,16,744,44,179,359,342,29,981,220,41,830,523,1,629,1,2285,894,1,25,548,26,401,25,689,194,1884,936,389,87,461,915,315,118,595,1044,167,1,498,2,249,114,473,527,433,40,1464,19,1,19,1,57,72,1,790,601,1151,1342,595,1,301,42,677,999,1398,1632,1,396,452,416,202,307,518,510,1066,671,221,1,199,1,50,1336,906,1000,1027,244,757,1234,452,489,1088,258,689,286,489,224,12,1263,769,1000,1820,14,99,1987,1052,1204,1,626,468,170,1748,626,374,2226,21,1,19,856,145,333,132,259,1084,66,969,632,869,370,1149,85,915,104,867,923,1714,508,1,791,71,902,59,55,490,594,1543,1274,1192,32,857,498,148,293,23,37,26,109,806,1077,19,2893,1193,839,977,713,985,361,1862,1,62,32,1175,1,1011,703,4120,1034,2,61,703,78,235,68,909,805,1,2913,1000,1251,136,13,576,1,333,76,2776,82,1036,94,1617,417,828,1000,927,1821,236,1153,781,149,57,606,249,196,556,278,27,1022,3102,1,752,224,606,379,884,144,575,248,1011,3032,1000,1132,822,8,1938,7,103,2097,17,2482,1348,10,946,112,988,584,1,100,223,81,93,897,985,1,138,2,576,917,2317,176,500,104,219,67,707,102,132,154,683,251,1737,30,224,84,2840,2171,1000,3503,208,127,1,3056,572,26,2391,822,797,413,75,545,302,1,559,1,11,414,631,547,8,914,461,87,240,15,1696,40,271,144,100,901,99,30,1,525,10,1074,1,294,467,12,16,2,191,126,263,643,201,647,8,254,118,607,1,188,78,89,1159,890,17,535,326,674,319,848,20,220,73,92,486,151,1014,1,1175,151,777,36,200,1779,1047,51,926,10,990,985,992,206,2836,38,1,935,1018,60,5993,1991,24,1968,25,1550,1001,1430,4121,437,123,25,320,553,90,980,367,48,29,972,49,1540,1,424,608,400,721,1929,151,13,117,554,132,2,12,310,642,249,145,42,684,282,567,115,1,125,759,116,2138,137,621,73,1,14,324,2,848,163,851,1045,132,1001,1648,166,102,68,1001,694,2,278,897,1023,1,89,23,852,24,749,81,216,1007,711,1017,1,1158,10,156,827,18,141,14,985,871,3016,653,1,171,1958,1,196,38,785,1,201,798,1,197,772,190,1,2011,40,638,1,297,746,3084,927,304,696,262,42,757,215,1673,2036,104,842,391,692,261,17,14,688,1035,1000,16,1,218,49,1959,32,3026,2994,12,679,1,47,29,199,724,1,47,29,934,21,247,2013,28,1,964,1023,3790,1000,4990,37,3985,1,999, }, + + }, + { -- continent 6 - Pandaria + Z1N209349 ={ 224768,999,2017,1019,24,923,2968,21,107,20,3900,2046,980,3085,1842,2020,2041,2653,1436,6602,1981,2406,2629,3019,2947,2416,1610,1227,4763,34,237,1114,25,874,102,898,2693,248,2015,763,1364,652,1236,33,5107,1,826,3160,633,999,302,1714,1262,4926,187,1,1655,1179,15,1,1060,1017,712,1,334,4013,834,1000,520,19,1573,945,79,48,626,1268,1,947,2129,2355,1562,101,970,885,1,1504,1523,762,1,1224,1488,3300,2228,2978,4485,4303,658,18,556,426,3557,5790,197,430,6362,2221,983,2487,1933,4084,40,981,1,275,999,4612,4972,1016,1386,7593,3987,5418,1000,614,1986,33,3938,1,3047,2364,2026,3682,1,5016,965,1295,656,389,1061,3564,387,665,1298,672,401,2,3537,4407,69,6009,4618,5982,5026,1,2305,2650,1366,3026,8984,2094,1068,975,1880,599,1000,1988,3384,48,121,1907,1953,159,906,94,2438,482,10518,5498,11015,987,7735,123,877,122,4137,1,3842,57,1,1160,1681,363,765,1,1112,1095,886,2948,765,1000,1321,2102,752,1204,700,315,912,1929,778,1,46,33,1,141,2025,1927,223,1959,701,960,173,1,4107,2694,46,1054,86,1032,1,855,326,947,1000,670,1304,2960,836,1970,900,3348,63,1900,1,809,1,1271,623,4974,1348,1535,2451,84,3960,730,2743,19,4031,1,69,1,1000,1374,2640,2107,41,231,596,1,35,10,113,1743,1000,5111,181,1732,228,114,771,987,152,211,5739,1769,1363,754,1001,3015,1,6253,731,883,366,9670,2017,54,81,864,4167,851,978,22,3033,1103,1885,1092,1941,2925,62,953,2965,101,6924,2022,1965,10991,1, }, + Z4N209349 ={ 101539,4086,2737,1008,4011,7975,2985,1000,4281,759,4004,968,31,1,1957,9037,3025,1,3967,969,999,2078,4938,2092,1957,3989,1,1042,39,877,1108,2026,1855,1021,64,13,2248,19,7771,881,65,1,1918,334,1025,1931,801,199,1955,19,785,1971,99,958,924,1,2103,2025,925,3226,1,1827,911,132,883,4034,2079,14,854,69,12,1078,863,1016,49,15,15,970,15,37,16,1,2858,1159,873,999,983,32,2010,44,892,64,68,867,149,1010,1933,1982,50,988,933,1015,942,97,2070,1988,871,2040,1018,2083,2857,95,1985,893,1050,2,4014,2016,58,3915,971,99,881,1000,2184,3843,4151,9160,1980,2033,5025,23,1893,2058,12,949,24,1,51,5013,2889,3034,1094,1934,3054,1961,930,36,963,1015,5073,1019,948,24,2067,611,267,814,204,3759,300,699,273,665,402,1,751,1861,259,778,1048,284,910,1034,1000,8,684,261,2122,903,781,41,21,957,954,1260,798,259,741,276,744,1198,2833,1980,6028,758,4991,1000,4008,5993,3288,11695,4987,2596,2684,1981,3761,986,266,2022,3085,1881,132,1838,1140,1634,987,12,2242,12,144,2982,1840,1,752,14,30,1377,814,45,346,3443,988,2049,940,1185,194,6766,221,700,2962,15,1081,37,848,176,2869,330,973,705,3946,117,1244,1654,150,848,1,141,410,17,3494,3294,1721,2954,2066,16,436,513,2508,2471,1512,471,1068,3943,511,4525,24,5965,999,1025,882,109,1921,1023,2022,946,983,1034,18,45,954,4012,949,1067,32,921,1962,11,988,1089,1014,933,1,1014,2065,1,5938,938,2016,82,930,4027,3034,9957,6994,4042,919,60,3948,1000,2034,1,1939,1,102,910,61,2969,1049,952,48,2935,1027,6032,56840,11,3076,899,1112,4934,967,1009,1000,60,954,68,1883,2124,3929,1000,3054,2028,839,27,1,1124,941,5923,2051,1,8991,1018,1026,942,7982,1,2092,935,999,31,2905,3049,2973,109,891,7075,1972,2956,93,30,932,5015,2953,999,63,1053,964,1,957,62,3004,921,1000,941,1110,1979,3956,1022,1000,1016,3938,27,4940,35,1039,10,1955,20,4949,5062,4965,1020,1000,2018,960,980,5044,999,1,5953,12,1048,4012,5,1979,6993,19,3976,7035, }, + Z5N209349 ={ 427787,4990,3967,1,14,8051,1000,1985,975,983,1984,94,953,1,1944,4102,6005,2019,13,5971,1963,8,44,956,46,4960,1985,6012,3961,13,1013,82,933,980,998,2089,927,1021,3952,2062,1,45,1009,896,4996,39,3972,1044,4041,937,49,4979,4032,1,7916,95,3967,999,989,8954,977,7003,1012,999,1020,4951,17,1,965,2059,1962,7,20,963,2131,848,974,1,989,192,1978,1,2856,22,150,4859,1981,138,862,161,830,155,361,1013,2011,1,486,3120,870,121,879,2958,175,1,442,2541,979,1402,425,1000,47,176,967,466,11,524,46,772,12,1191,377,485,1525,1440,945,85,605,395,2153,1785,99,2494,1001,422,549,484,92,954,47,836,1217,360,1611,423,375,257,953,695,2135,102,466,432,102,45,820,105,24,789,91,195,365,545,119,14,1363,1266,776,1,1025,1469,999,27,65,407,971,53,221,1251,1934,1548,1445,33,1935,44,88,402,67,549,1393,1067,484,1922,6,28,527,582,410,464,2973,542,558,104,1950,414,1542,1,1069,1,841,18,1,35,519,323,668,463,2520,11,506,849,158,11,924,1892,154,134,2978,834,1,925,961,131,48,844,1,642,10,495,120,868,534,2960,27,600,736,1100,170,1667,1,702,309,99,962,662,350,137,1990,1804,987,727,1,316,700,250,82,6,91,17,561,448,1825,70,1070,20,916,652,438,542,1034,1228,184,38,1810,137,1011,573,1471,841,1222,482,448,59,2807,154,520,289,1178,327,13,547,162,27,263,17,726,234,1686,1018,1328,118,544,1039,1,32,1984,9,1254,50,1,981,2029,77,1849,1033,3024,31,978,941,1017,2063,986,10,917,50,3970, }, + Z8N209349 ={ 247259,4016,2993,1000,1009,1011,2964,3007,1105,1,4993,918,9,973,266,850,1,150,5753,1906,1,2350,1989,1,559,441,755,905,83,1823,1169,1263,1661,289,2,138,620,58,7,1215,661,1,1103,28,97,699,91,331,568,134,24,1038,124,210,651,24,917,1,48,888,318,15,1,678,32,41,138,18,26,686,59,2,227,788,1043,157,1024,1,954,68,96,2,732,110,49,126,550,50,108,26,73,143,662,1058,300,967,913,866,97,166,594,155,114,46,705,281,83,989,51,568,172,783,448,821,1742,59,221,780,220,991,715,273,2116,74,548,9,1347,11,1978,999,190,14,517,213,66,1,189,1,604,221,1017,754,324,62,751,1753,36,88,853,330,1039,179,467,1000,47,91,902,283,42,756,135,1055,158,1603,194,722,155,943,368,607,1,1067,186,126,1,40,514,446,1631,20,280,158,1755,267,578,1,368,541,78,1181,788,189,87,122,564,490,564,186,1257,482,8,1080,385,557,1205,17,1094,79,589,390,37,724,303,38,602,7,342,658,296,46,694,104,765,546,425,429,740,360,62,1,399,122,1897,290,44,174,89,713,783,152,1000,1137,141,463,15,157,198,259,966,1,53,327,1015,306,1014,1032,679,359,184,14,395,1000,416,208,45,38,297,379,366,607,698,630,347,546,766,34,665,281,718,265,1260,1108,353,320,301,27,624,16,382,936,27,404,263,1291,673,399,1740,611,33,485,169,323,1,49,1,568,381,244,403,332,58,570,2776,14,315,274,67,205,360,427,550,430,291,692,261,313,188,551,669,1,249,1,63,711,1671,14,1,33,289,355,245,630,59,450,965,280,31,709,1035,587,1223,9,413,345,370,41,854,1156,254,703,18,249,816,1,205,18,552,771,16,406,266,515,1,1018,24,737,252,36,162,1,549,450,247,550,1012,970,784,252,14,16,129,862,400,161,156,39,396,14,383,192,1213,687,377,10,990,698,862,580,275,131,617,243,126,1477,513,107,395,524,58,1,137,834,934,110,970,30,394,1,544,433,1515,28,2490,392,110,898,152,22,905,43,390,581,2038,371,106,1366,101,912,140,329,35,687,301,613,424,1478,21,54,899,34,37,1,148,9,265,152,341,14,46,173,9,265,1031,103,389,48,61,387,513,29,96,60,886,42,502,1,1464,462,632,332,586,920,122,391,1,467,30,6,66,14,86,293,518,119,1,843,529,45,66,372,1017,184,285,682,18,1029,324,9,32,1577,961,110,299,43,108,490,61,298,43,109,533,932,1001,76,128,347,435,107,2121,764,157,899,22,1267,1000,804,415,438,49,1,15,926,170,74,845,252,741,204,952,318,852,1,13,678,32,144,865,918,82,213,223,1587,37,13,47,147,1,883,890,776,1,139,1,127,193,87,40,396,89,23,82,22,32,375,411,1202,165,1746,944,45,52,35,36,757,184,49,310,444,1035,1100,973,74,895,1941,207,342,15,2,532,109,19,309,14,498,1039,1499,1,2446,48,465,500,176,945,999,391,999,1,36,2435,197,1383,561,1496,2378,121,52,948,60,272,1100,1,1063,1578,1806,165,1468,828,722,2009,968,10,23,1428,3945,1901,111,757,244,2990,1757,130,730,4146,1130,1,121,5891,844,985,133,1971,3076,940,841,2014,173,1,842,147,1000,523,2459,23,959,52,499,960,30,963,14,548,1,943,2026,188,815,1963,56,157,312,671,2345,528,15,438,35,45,492,1,1957,494,983,1032,51,957,497,1147,384,1482,18,481,1014,1472,1001,2504,8,30,993,1498,454,11,1028,496,3025,16,461,2012,2975,541,2019,958,478,538,5006,981,3021,4029,959,7048,1,18, }, + Z10N209349 ={ 230548,4607,1408,4907,1919,2131,23,1018,846,5840,4134,98,1755,7166,5851,1936,48,895,106,2928,1,1982,3068,1971,3929,6111,1859,4107,70,942,4944,6119,868,3084,26,3928,2098,1853,1,7109,1,2012,967,5047,2323,654,2974,442,1029,1937,3867,1125,954,1931,1177,3926,2019,2038,5830,2022,5085,970,1,4967,956,3981,10327,4663,1199,1154,3749,316,917,1845,872,1026,931,197,999,3834,290,1971,1787,111,908,60,2885,1955,2112,1910,128,884,1269,2815,1045,15,5123,9015,7982,1000,4016,4124,865,2025,9090,908,2985,3124,1896,5988,1,2724,2980,85,1,25,953,1306,908,1107,1,640,15,1094,1001,2018,2127,940,901,933,298,650,14,2313,6677,141,25,1062,1,52,5908,999,2038,754,9164,2036,856,186,799,2102,818,3020,1087,1,2134,805,1,42,171,829,1983,127,2824,160,168,2751,6179,36,2723,2073,1020,1169,69,728,1166,808,4246,2053,2682,223,1073,3734,1231,2794,5942,933,1000,277,708,2050,2047,935,991,2043,2975,279,1689,186,1027,808,316,1827,3189,890,60,890,129,680,407,2672,125,3095,1713,968,2232,192,592,1,354,876,869,1,2983,1336,1,3624,1985,978,3056,339,645,1030,1039,17,1969,1922,1035,256,745,945,34,1,2986,59,2048,172,1809,999,985,906,149,1871,2042,1071,4024,935,926,29,260,3822,1951,25,1,974,1239,837,983,16,878,1093,1331,596,59,1252,732,1001,1051,191,1132,4907,77,1,4017,2868,2144,1,9995,2985,7009,849,4023,1951,5189,3766,1060,1160,7821,5191,1,790,1032,1001,2020,3133,830,59,130,1777,1122,999,1023,5902,1061,957,92,61,1,776,70,154,4015,1783,1016,2138,975,25,889,1974,79,4935,1,1969,1,1105,34,1,2935,1011,2930,2023,1,4064,968,1953,27,1962,1000,20,1059,1975,3952,56, }, + Z11N209349 ={ 085388,12974,3942,95,19,887,7169,2974,11857,4079,8943,2132,9880,2018,6072,5037,4929,2102,865,7026,83,3933,7957,12025,21002,5031,2951,11021,53,1,1199,1,882,6171,1091,495,1,87,38,2038,2983,159,1145,529,1,1495,522,3,7122,1250,904,19,4718,7062,232,75,8620,2970,999,2232,2843,911,1127,6141,3050,733,7053,8185,785,5968,1,1002,13939,16028,1,1021,3908,1003,20047,1,2953,1000,3019,5055,8926,39,1198,999,1000,1,7195,2056,1001,970,1749,218,1,93,444,25,97,1002,1356,2600,999,3438,72,4503,1,5033,246,1,923,51,645,1,1179,3,1340,69,1425,17,526,1,473,528,457,1308,4955,1925,999,2901,213,2,1260,658,2,298,1,11514,1088,971,1000,1440,1665,2,310,1966,17,583,72,2,6397,3506,2016,1002,465,1942,2611,1,2408,2034,974,1000,1941,1608,104,1,238,1673,458,1,539,1346,2686,398,600,401,969,1,2046,1611,4317,1056,999,8590,1001, }, + Z12N209349 ={ 074732,1000,4107,2014,2,1654,973,3240,5989,1060,82,918,83,898,1041,714,964,4166,797,1,235,49,120,831,49,1139,2796,1,1788,351,1,4940,111,1575,3021,221,2071,973,1000,135,3605,195,1014,1780,418,620,1,380,573,2021,937,1133,1260,647,336,662,972,1951,31,33,45,19,21,154,805,42,27,126,714,1,110,963,27,1954,154,2,12,194,755,173,20,25,1,584,45,1,938,190,15,1762,64,1000,1,1211,19,1207,870,650,221,211,1,817,159,880,940,785,937,31,1,219,1,780,15,204,2,3015,935,975,929,80,971,1183,1,659,1,28,184,1000,1898,26,38,86,16,983,52,704,20,74,13,103,279,782,105,768,2,44,1210,730,937,2085,208,752,2891,121,1,49,2,230,75,1027,730,83,1070,675,10,277,711,289,3144,2554,1960,15,40,41,1932,1193,120,1665,154,249,1676,192,979,6877,28,62,1,910,114,1158,3674,309,691,309,1808,2060,150,2774,302,1001,2714,1891,6181,933,1,66,2953,1,142,17,1,19,1,5856,1000,977,255,1002,909,1,6063,1000,5564,12,1438,572,1,1019,1,199,1,800,1013,1308,1848,1,177,2015,602,1025,1,948,15,26,44,10,159,762,25,36,8,10,159,1142,925,2726,1975,81,161,69,658,2,13,325,823,1914,13,1,42,1888,1039,1,89,1,846,167,12,1137,987,1,679,1,136,901,32,53,914,34,27,25,35,2010,857,58,122,2811,1028,955,1067,1000,945,3294,654,2016,49,980,5952,1079,973,967,1040,305,1,706,2965,354,614,1,4024,16,1364,4858,6010,20,24,956,20,23,1934,2,3110,2948,2960,1,2014,3746,999,193,1303,1000,1028,729,77,1,842,2133,674,2,3167,1000,2105,78,1671,1981,304,872,1001,913,160,840,160,2033,53,2,17,785,76,1,898,2,116,300,2670,119,753,106,989,89,911,89,1845,1054,998,40,1,1025,2020,2289,1001,622,5071,2,1039,1,936,1051,1000,900,142,984,1965,99,841,919,1064,1058,1,1077,1001,2037,757,37,1,19,1,1961,3133,835,1,80,46,27,96,750,2,78,1,46,27,96,766,1175,4068,2,1921,865,21,112,888,22,1,895,61,1962,6003,168,1,829,171,919,225,776,984,1116,77,845,76,2043,778,1,149,2,115,677,168,126,49,8,648,170,174,1807,882,429,1673,1289,762,1800,64,147,153,636,2,62,147,1,152,760,892,1061,1060,890,1457,4513,1192,94,153,2787,978,1,829,1,1018,1944,56,968,986,1226,2,69,1,5187,6774,2013,6217,974,17993,2,11899,2015,955,1,7985,5055,954,45,3978,6034,7872,999,8023,3962,22,1,3217,3974,1000,3684,104,1,869,1,99,2,1013,7925,2,83,1870,2199,1015,999,860,99,973,1,5182,760,1013,11,44,878,67,11,43,2,1846,1134,2074,844,2,1137,776,2325,1,1737,6051,15,2896,3,963,153,2911,1,3928,1000,2,5969,1,5027,1029,2938,4103,2070,2905,4020,975,999,903,1085,51,925,999,119,2,1849,1,1126,852,2,5161,904,1937,3333,5703,2,14,1107,946,2200,31,969,31,2677,1064,2,4983,38,962,38,1225,938,4726,4294,2774,1,29,1,2162,1745,5012,1001,3013,64,1976,2001,111,79,6943,10952,1,999,1,2059,1,969,1,9014,2973,3752,1,999,1,6024,2072,2135,6768,32,970,3252,845,2,4841,2131,197,1,802,197,1,944,699,1183,6159,1676,3275,3058,3929,5020,21799,1038,1001,2043,13990, }, + Z4N209350 ={ 294420,1000,1129,1987,826,18,967,66,990,931,1,1036,1056,57,1,1930,1081,898,1001,148,819,20,141,11,840,1117,986,34,896,1091,1031,870,116,1955,1037,1912,1014,960,168,832,19,1100,952,77,1989,1944,1,47,43,999,988,850,1000,2168,3957,863,1189,734,228,3844,999,2936,5010,4010,60,984,1,1983,2051,1012,919,2090,923,1030,102,12,977,1,1868,164,4905,942,1,1034,75,1,3877,77,1937,1048,1,106,2857,98,5935,1979,7990,11990,3028,73,1909,1103,10,1015,2957,1942,1984,104,896,104,2017,3982,71837,4987,6017,999,1,987,87911,1000,9069,1000,932,1,94,7982,10,989,11,1910,2063,1,3986,2925,3086,2012,1, }, + Z8N209350 ={ 616267,3992,960,30,963,14,7009,3016,981,35,45,2944,983,1032,42,9,957,3008,2015,4977,8,30,993,1952,11,1028,4997,1013,2975,3996, }, + Z9N209350 ={ 499430,26952,14053,999,1963,2000,27227,1,4958,2,2970,1998,17246,3813,11164,998,2,5854,11151,1004,955,1000,7972,9952,2,11041,1000, }, + Z12N209350 ={ 234434,1,999,1,11027,959,2020,4990,1000,1985,1987,76,2971,2012,966,34,3951,2,1036,26,2989,31061,1000,3987,1,5215,1001,1050,1741,225,787,1,1233,1786,1,954,4015,1,4978,1002,2884,3974,71,2,1347,7609,380,3596,1055,2,1910,16,406,577,3053,43,1989,5334,1557,1014,1,2101,6876,14,6988,1,8021,1000,8336,6071,2934,693,1017,999,1305,4053,1,1629,2,2323,692,3343,2,7965,6033,2966,5991,1042,3965,2615,3411,1,4599,1,3973,394,1024,6613,1389,3975,1000,19001,2,1000,8638,1,998,2,3967,2984,34,2380,2641,6027,336,1,647,1000,1931,3041,2,1385,651,1937,43,957,43,1942,2,1094,2013,1311,1,602,1019,95,323,663,314,24,581,81,315,617,2095,1,6312,1971,1714,888,18,3945,2,83,15,914,57,2,91,850,59,911,443,1037,2561,1022,1061,960,1015,48,1,36,915,48,1,36,1265,24,1600,3043,907,21,1960,1001,134,2328,1,629,1001,984,930,2025,1,1080,1000,999,3914,430,556,1,5988,3021,1,79,1,2343,1539,427,1,572,427,1,607,1041,2051,1,3322,1570,76,319,606,75,319,1662,1,37,1890,3031,371,3639,2021,1,2329,1,1604,1019,4054,4301,2651,1,999,4329,2689,2295,1000,6055,652,1001,279,2,3047,2,7925,64,936,64,1,4944,979,1036,1,1131,816,1081,1002,953,4961,23,10030,3989,1985,4998,3010,1001,975,974,1,2014,1025,3949,1002,2979,1,5791,1198,1,790,999,8990,1,6991,24167,1853,8145,3866,3980,2153,2984,2,1802,1000,2058,4925,4199,813,157,5992,32,4010,950,1,50,1984,9995,1,2986,6918,2018,60,4986,1980,939,25,2022,1967,58,943, }, + Z5N209351 ={ 329550,993,23,3992,17,958,6,30,3009,967,1012,4992,968,2021,993,2168,1070,791,148,977,1064,1013,960,818,136,15,41,56,778,97,79,1812,147,5,1062,27,850,24,107,861,1104,1010,936,1102,974,14,997,955,1066,888,2077,931,111,949,1069,567,397,10,16,777,112,67,1903,10,1042,9,774,1,230,783,260,40,719,213,977,742,128,990,226,666,46,1037,223,18,698,899,10,138,157,50,987,857,101,12,796,1010,244,739,968,121,209,598,327,1,44,611,83,14,54,878,23,352,1,846,823,1000,166,821,147,125,54,622,30,979,69,131,203,607,321,6,54,589,1251,91,735,299,1,673,1182,778,223,1132,2604,1019,92,1139,148,704,60,869,979,2124,1129,760,73,2061,97,55,1790,48,1137,937,1075,18,1791,1025,1091,63,742,250,865,69,88,798,1916,306,1783,1007,37,62,1,115,699,1112,183,716,1255,1018,971,1,1823,28,81,930,177,975,35,1,1876,1152,839,103,3811,264,848,1978,108,7,900,38,29,56,1,848,110,1054,1839,1069,1949,38,2025,1066,31,1,934,913,44,123,911,960,2988,47,926,93,73,898,80,961,1914,1112,964,47,917,1000,1027,1991,3926,28,107,809,38,28,1,50,891,12,988,12,2008,1127,27,902,28,2931,1092,987,1061,791,15,1143,1066,849,62,972,882,178,837,1032,23,6,154,827,99,957,922,989,21,25,1059,1061,37,776,117,39,1855,138,855,168,908,1,917,38,189,1871,91,2865,1959,138,31,760,1,15,54,96,915,189,1,782,104,944,907,209,1800,99,1045,46,74,797,20,1130,43,752,231,836,969,972,45,985,34,953,1209,772,54,29,121,2784,208,879,957,949,1,1085,979,145,1,1836,973,3055,1936,55,991,19,1011,3004,5029,1,1930,11,1025,1023,1936,1054,3954,75,1010,965,7024,990, }, + Z10N209351 ={ 627360,987,8018,6010,5007,3991,1018, }, + Z8N209353 ={ 236386,966,2975,50,1896,2126,2975,158,795,84,952,3924,131,1919,2959,127,1908,3103,1,7109,1008,879,2013,1,3108,886,9001,1018,3987,2020,1000,983,4014,4990,3634,376,6618,3377,1636,372,1649,1,2007,961,373,5649,987,416,962,32,1000,1955,1053,2961,7996,3012,7994,10,3826,21,1000,149,4844,1169,3015,810,189,992,4018,3418,987,606,394,2954,645,2352,72,1,2947,1000,21,1077,543,4445,1251,309,705,1691,2006,1302,13,697,3589,712,714,286,1302,1418,5577,3004,1,16812,3013,1507,1501,979,3234,1296,492,508,484,504,713,9,764,502,8,761,266,1712,971,41,1013,1039,1,230,743,26,231,909,758,273,1985,798,193,798,58,1578,996,584,999,1646,339,799,1635,4323,38,1000,1,2299,336,1229,993,1759,13,339,1352,289,364,336,1,312,359,634,376,288,9,3011,6280,2024,676,1,3307,8001,106,1359,15,6002,974,4024,676,215,778,223,777,1323,889,1,796,1185,880,2157,929,909,29,93,877,1024,1092,48,1,913,31,924,60,2010,1902,2453,580,433,558,96,354,525,2007,1105,233,1675,334,1644,456,1918,98,1,920,1015,2700,229,84,856,2179,890,81,1050,2990,886,1924,16,799,1,1378,1638,1351,842,1,823,1303,687,2199,163,836,127,37,883,1105,962,876,4060,2084,1020,1989,2913,2035,987,1,1077,2961,7004,24,7989,1968,2989,4047,1,1937,1028,16016,2016,3993,1995,8002,2008, }, + Z11N209353 ={ 223291,25,4988,1,3017,954,15,9005,4019,998,8016,1000,990,12018,1981,30356,1,17985,9972,3979,3986,997,8987,1039,4947,34,4990,993,968,4987,999,1036,1,4943,5981,11,2040,4932,1001,2,988,1978,993,89,7903,1081,5913,1000,3087,8004,13996,2955,1016,10,990,11, }, + Z1N209354 ={ 229750,2989,4028,37663,2049,18058,1001,3007,2041,13,1957,68,1,944,1914,2097,23,1988,27,1012,934,1,2985,980,1087,2989,2024,2016,3963,11,188,853,1523,8,2455,2974,4050,909,53,1968,51,1038,871,2137,915,2035,909,119,900,1967,1049,2012,1,1047,3028,2868,149,869,26,48,112,840,21,28,1023,1,1915,1068,2916,1,961,2166,1532,385,1027,1012,898,1032,1016,1,27,2097,3945,1,18,1014,1013,1838,2053,1000,20,2093,1,1839,1,112,6887,38,95,886,1050,1090,943,1015,2909,46,1000,2019,1041,976,959,3882,139,1971,985,505,522,32,5980,1011,1978,976,1909,67,7044,975,2530,1450,3059,891,3089,949,5945,1069,2080,1985,1001,943,1046,999,13581,2306,18120,1068,975,2479,2987,11011,482,5920,4022,576,9408,10004,14925,18913,2156,825,2200,5943,9020,5102,2924,1983,1008,2014,3975,73,2969,3950,68,1011,1030,1535,1345,17,1089,3993,780,2208,919,5084,724,186,4838,175,1,85,635,34,12,3072,990,991,1182,1080,650,182,105,30,24,730,1072,155,10,719,300,687,3278,22,1016,761,215,1759,3937,918,1163,15,921,920,6004,1308,686,1014,23,2990,4958,1051,1020,2054,3909,1085,1010,4926,3033,2925,62,3918,101,8945,1966,10991, }, + Z4N209354 ={ 195434,101115,1812,4009,1026,5986,980,4136,19055,849,8910,21055,3983,5082,8967,3952,8978,13051,91027,50,29908,10962,59970,4030,20975,10009,1920,2064,3987,2924,3086,2013,33972,955,1068,32916,36049,58938, }, + Z5N209354 ={ 330543,23,3009,976,7,975,35,3008,969,1012,4992,968,44,1976,994,1234,934,3006,1965,92,13,1765,25,76,1100,922,21,8,862,1144,70,27,1950,938,62,23,1919,1102,988,1952,1066,945,15,2916,1067,19,1063,907,56,11,793,101,11,68,957,955,1825,244,770,37,223,23,736,1932,128,989,892,47,260,948,767,48,157,695,345,10,66,921,857,101,808,1010,244,739,204,93,792,940,194,739,969,45,1977,1134,32,1093,55,620,1079,130,204,606,322,6,54,1666,266,1706,1183,5848,1139,912,5101,833,2061,97,55,1790,48,137,849,2181,1098,693,164,860,1092,64,1857,156,798,2194,28,1783,1007,37,178,125,1869,1971,102,94,794,28,133,1690,253,719,28,81,930,152,1017,1175,720,1152,839,104,2019,1171,1732,287,13,662,1016,82,26,6,796,105,38,85,1,958,1054,1142,697,1069,197,8,3807,1098,934,167,747,44,121,912,960,201,3760,94,72,978,108,852,1915,1112,82,13,1013,820,195,1832,146,1845,918,254,1020,1762,107,808,40,27,51,902,989,1328,46,1773,28,104,797,2959,984,108,148,39,800,1061,791,15,1050,93,1066,140,709,62,972,881,179,837,400,632,23,160,123,704,1056,922,989,21,25,1059,252,809,37,776,117,39,1855,62,76,855,168,909,917,38,1151,825,16,2298,726,370,1685,73,761,69,1086,130,767,395,989,673,107,857,1041,166,879,1,46,891,1130,1025,2808,42,265,720,7,953,1208,857,119,2844,149,146,1012,1627,1,85,306,619,54,1145,1,1836,1296,983,1749,310,1626,55,281,7,20,678,25,260,3753,201,988,3841,1,187,1021,150,572,11,396,629,3020,231,762,1219,1991,155,589,2050,746,487,3120,870,1801,2157,4137,2034,794,1191,1046,772,12,1191,377,2010,7506,1897,3053,5541,375,257,953,2830,133,1939,24,880,196,909,6124,935,2968,1934,1548,3545,3478,2412,2011,3012,2165,2906,1071,841,53,6953,2180,3977,836,886,179,845,642,10,495,120,867,3505,616,1837,170,4402,350,5645,2472,2985,3985,1010,37,1947,5118,989,948,2013,3036,27,1007,2937,35,1954,1,1071,1985,9,4314, }, + Z8N209354 ={ 236386,966,3025,1896,2126,2860,7,61,205,879,952,1913,2011,131,1837,13,69,940,1011,1008,1956,79,3103,1,6841,9,259,714,1116,150,1920,3835,159,1746,2351,1990,1755,905,83,172,1651,1169,201,1062,922,739,290,139,620,59,6,2980,28,797,300,121,702,24,39,803,370,811,23,889,30,936,63,49,206,15,22,689,41,138,45,744,228,60,729,1043,1182,681,273,68,96,844,49,127,599,108,7,19,73,143,662,947,111,300,944,1802,96,167,594,155,114,46,704,1,1322,30,52,740,783,31,372,45,821,783,967,1041,1222,112,2992,74,557,1347,11,624,44,987,322,1,93,963,877,861,221,77,950,744,324,62,2628,256,597,1369,179,1467,1365,80,676,135,2887,845,1098,310,58,1675,312,3091,1754,268,577,269,100,619,979,387,879,686,197,856,293,1641,1080,384,1,1907,966,1058,761,277,666,349,658,280,2171,854,972,127,63,522,1300,887,44,174,1467,118,218,497,1574,776,198,1226,180,522,123,570,1320,1031,631,49,359,49,135,13,1215,597,208,45,38,297,379,366,1935,346,1313,33,947,718,265,850,309,705,182,322,353,621,27,373,251,16,1318,27,1509,498,623,400,1740,611,33,394,259,325,49,1,78,1115,735,628,2776,329,546,360,427,8,542,429,984,261,501,1220,2025,720,288,599,690,451,964,281,30,709,36,1586,1223,10,757,370,856,38,1411,722,248,733,83,1,205,18,552,179,592,16,406,266,515,1,673,368,990,35,164,549,252,17,428,210,993,347,1048,619,98,267,145,1262,161,156,283,152,397,192,1100,801,120,256,10,601,87,302,118,989,439,14,260,9,311,275,105,575,8,60,243,126,332,266,879,620,213,182,524,196,69,41,724,934,110,1000,394,1,977,52,758,97,176,432,28,1525,798,167,27,365,8,102,322,58,693,885,19,44,336,596,38,547,1968,1366,101,348,564,140,329,1636,534,1367,22,41,13,934,36,1,245,96,233,341,14,46,35,137,232,43,1031,601,625,274,186,847,80,178,326,454,213,797,962,13,339,112,586,81,839,105,17,265,594,30,6,80,86,212,81,518,35,7,47,322,288,8,896,1115,1274,151,18,953,409,32,1577,961,452,108,490,60,984,1837,172,475,435,107,486,2308,91,157,899,22,1267,2218,1601,73,845,252,682,58,205,781,88,83,1318,449,95,32,144,801,64,248,669,520,1586,37,13,185,893,890,916,448,19,465,106,22,33,314,471,165,931,106,888,1000,23,944,96,36,224,753,137,222,575,2004,1047,1140,30,901,28,944,358,636,334,14,498,148,1093,48,913,30,896,88,779,1038,1141,955,1380,1000,36,36,581,433,1008,377,148,49,1958,1337,145,624,916,959,32,978,50,1422,806,96,112,907,1016,1461,165,1073,229,84,82,828,3015,81,29,574,10,23,414,1014,1862,114,1969,841,1171,1023,2967,865,1753,373,2885,1127,920,93,1974,1924,2126,886,943,1141,1020,2886,940,1076,1092,860,83,987,920,3005,114,897,499,639,1877,3092,24,855,48,1971,3486,528,453,36,44,492,76,1968,408,1061,996,524,3952,19,76,1417,522,4456,38,993,1498,465,1028,496,2025,3489,3516,2019,36,1925,13,980,75,955,1039,5958,1991,54,9992,19, }, + Z10N209354 ={ 351553,6996,111230,4989,2025,9999,8004,7713,4066,4300,7834,901,18259,2852,9126,3871,5139,9653,17061,10239,23648,444,22774,3041,7979,987,2199,3819,4168,1805,1143,58,2657,333,683,145,5989,193,1985,639,1201,171,677,1343,637,2332,708,4327,1796,2195,690,1150,710,4274,814,5034,16,878,1093,1173,2980,39,1830,6230,928,2987,977,6033,5018,2986,1969,20,5023,1972,3017,2038,40034,1022,8012,10989,25,2040,2991,6957,7899,6986,1027,1983,7041, }, + Z11N209354 ={ 85388,166985,2076,2983,2849,31007,9043,1037,7141,10838,71888,2954,3019,5055,9964,3198,13851,8466,11708,49,1645,6019,307,4956,5826,213,14822,972,5104,1876,74,9905,3017,1466,941,3614,10981,11054,14963, }, + Z12N209354 ={ 104435,235,6773,1351,10913,5739,4982,1959,6992,1033,110,933,20,21,28,4258,558,196,849,345,593,205,1826,1000,2439,869,870,213,817,1039,941,1720,33,1220,3016,2891,1871,971,1213,1924,139,949,35,52,704,491,529,252,1873,922,3085,960,1891,173,1230,1831,84,1754,279,6697,2015,41,3126,119,1665,404,1866,980,5967,910,1,26,1089,4831,3118,2209,850,1923,2962,2,1054,1891,6181,933,67,1860,1093,1,927,4017,1092,880,1097,888,1987,76,2972,2011,966,3985,1039,25,845,12,2010,1,121,898,1,199,814,4157,2794,1026,948,15,26,1,43,10,160,822,8,10,3952,2974,1,81,889,14,1148,970,944,13,1,2969,1,89,1,847,166,12,2136,668,1,135,902,85,914,34,27,26,1130,914,857,58,122,1034,1776,1029,955,1067,1000,944,1,496,1741,711,301,1,44,2670,49,255,956,4017,1704,1079,973,966,255,786,12,294,3672,122,231,614,1,2128,73,840,507,476,6238,894,3978,1054,84,1000,20,24,800,984,150,2901,44,166,1823,1125,2960,1,2014,805,1,985,2955,161,31,3980,80,1785,15,1253,4843,892,291,922,1749,4159,900,12,988,172,2033,857,76,1,121,778,117,2842,127,120,860,1077,911,89,1845,1053,1038,290,1737,1020,177,694,1017,998,93,933,279,4053,1632,86,62,1988,879,21,1142,984,1197,767,1860,1064,1058,1,1077,2139,693,963,58,4319,775,836,81,45,28,95,752,125,28,94,107,659,1175,1,4068,88,1042,1680,19,960,20,22,897,1367,614,41,4371,1,1631,168,1,1919,225,655,1,1103,2039,77,754,2065,2,151,115,676,295,57,818,1981,882,989,1113,1276,13,761,1801,64,300,636,64,147,1,188,616,108,953,2060,890,1457,4514,1191,247,2787,808,170,1,1848,1352,592,1024,986,1226,2,69,1,5738,1000,2969,2254,1730,34,249,2131,2641,6027,335,2,1647,931,4042,2038,348,1588,43,2945,1093,2014,1311,602,114,1323,1,582,81,1314,1617,96,999,5313,4685,888,18,1273,2758,14,63,851,58,1911,444,3598,1023,1060,961,1014,48,1001,36,1265,24,1600,2971,71,908,2116,866,134,2328,630,985,16,1913,2027,265,1816,998,1148,2766,430,556,5988,2159,865,78,31,1115,2736,1429,1606,42,2050,62,2954,1199,755,925,75,319,899,763,2,36,4292,628,4141,870,99,923,2330,801,803,333,686,91,3963,101,5200,849,16,786,1,2112,963,152,2101,811,878,3295,755,245,5054,674,979,1001,3328,719,30,2937,4241,1064,2773,2172,979,1036,833,114,860,1222,681,1084,51,926,1118,1851,228,900,77,774,5163,905,2935,4264,4773,123,5098,1755,220,976,3037,867,1988,1096,4982,811,4980,198,1001,790,99,1,2192,1745,5013,939,3074,64,2854,123,1112,22932,1853,12011,947,1,999,1,4186,1837,1148,925,877,1000,1984,5074,970,3967,130,27,5025,1922,4024,14,2035,12982,6917,2018,60,7905,61,1986,1026,941,14053,12990, }, + Z1N209355 ={ 260414,1,3016,10985,14,986,14,19107,4007,1,2041,13,2025,931,14,56,3955,23,1987,28,1013,933,1,2985,3054,14,1988,2024,2016,3963,11,1580,461,523,9,2454,2974,1575,2475,909,54,1,1966,1052,37,871,2137,915,2036,907,120,900,1967,1049,2012,1,1048,3027,2868,148,869,27,48,586,367,20,28,1023,1,551,1364,1069,2915,1,1673,454,545,455,1532,385,1025,2,1012,898,1032,1016,1,27,6042,1,18,1014,1013,1838,2053,1000,21,2092,1001,839,1,112,6887,1,132,886,19,1032,2032,57,958,2910,45,955,45,3019,41,976,958,4022,1971,985,1026,1,33,5979,10,1000,1979,976,1976,7044,1975,5039,1000,3978,2,10043,1985,1001,1989,999,58929,4022,4962,3509,1513,993,1014,1057,7,4993,955,966,19,3007,10003,3994,6012,38992,1982,2009,1013,1010,2966,2042,8,2013,1929,1068,1011,3910,16,5083,2988,919,5084,723,1,186,100,3725,1013,175,1,2108,730,261,739,272,1709,191,39,58,894,1080,16,975,731,1226,1,28,763,4202,23,1015,762,215,798,961,3006,1000,848,163,1015,1,832,1009,6003,1994,1014,23,2990,5078,931,8068,1010, }, + Z8N209355 ={ 671278,4022,981,976,51,985,3034,2995,6969,1993, }, + Z10N209355 ={ 205516,3015,7976,13011,115009,999,985,4029,1013,7996,973,7012,146382,6991,5982,10980,2024,9954,26,7984,33003,4998,3022,991,20031,5964,4026,4984,1000,2817,3983,3988,1,7030,988,988,199,4830,177,5798,999,201,2989,1,828,2,5188,799,2178,1005,835,2191,1993,976,5035,1796,1195,1001,6824,4982,4025,2980,38,963,8026,2987,977,1052,4981,5018,2987,987,980,1,20,5022,1973,3017,58154,3995,2011, }, + Z1N214510 ={ 283360,1969,1980,1032,12951,3014,1000,9156,802,1,1027,10184,792,9049,990,2977,1,976,1216,4837,4010,1,3961,24,961,4210,1971,867,5948,47,152,8810,3201,837,1001,2137,3832,1,116,5007,1000,881,3030,69,891,4051,89,14,897,89,14,1848,165,1853,3014,70,2947,950,2184,1,835,74,1,1017,2015,907,1,949,1,2014,3171,17,2827,1,1018,26,26,32,967,1897,2153,1,16,1953,1,893,169,2801,58,17,21,981,20,2053,866,1,1051,57,3880,105,983,1000,5971,937,204,1914,57,1,1812,206,2966,854,2047,148,971,43,900,1001,863,38,140,1,1899,4042,945,170,763,24,24,103,68,932,1034,4044,900,899,147,963,62,2,804,104,1,975,100,1804,1,52,176,881,1024,108,738,1,60,79,160,1,809,31,909,1,1171,767,999,21,1257,1969,2022,50,750,969,261,1934,1001,792,29,6188,1086,709,1000,8963,1000,3238,21,4719,1031,1000,259,1977,3042,989,1701,1011,1001,276,3703,279,750,5992,3270,26,1725,3983,3268,1,17,2652,71,933,8010,58,979,1956,2013,3989,2013,22,30,1284,1980,1696,3321,1642,345,2684,8994,1,1986,1986,6353,24,1,988,5629,1024,6370,1614,2019,5340,1014,621,1,1026,992,5379,1630,3010,3977,1000,4355,1,1022,5982,1630,2390,2631, }, + Z5N214510 ={ 406868,3989,5017,986,2020,6006,968,31,988,2007,2977,13004,10,5007,1981,2008,2989,3009,50010,3999,3002,24906,4992,11,2996,124997,2996,4006,22038,8,2982,2022,1992,19,9979,12, }, + Z8N214510 ={ 461614,1987,1021,4,981,19,2969,4994,1034,1998,969,7024,982,2013,1007, }, + Z12N214510 ={ 76535,7996,1000,3021,5988,1000,4008,1980,7018,3978,2010,1,999,19,2,1963,6022,1989,1023,962,2055,1973,959,2019,999,1016,999, }, + Z1N215410 ={ 294538,3006,1001,2041,13,6982,23,1987,26,1014,934,2985,2068,3989,23,3017,3962,1011,1041,2986,2973,3051,1963,1967,959,130,3008,2950,909,3986,49,2013,2046,2029,3886,26,49,56,943,24,2917,1067,1917,4128,1916,2936,101,931,1018,999,6072,16,15,1014,1837,3074,2092,840,1113,6886,134,886,50,1002,2031,15,42,3867,1046,3018,42,976,957,5024,970,985,1028,31,6990,1979,975,8020,13995,3025,3988,2029,1986,1,3988,72935,9984,5020,81060,2009,24752,1982,10983,9853,4026,6019,2072, }, + Z1N215412 ={ 398387,6046,985,17846,143,10989,4018,1015,955,63,5950,17027,10049,2943,7866,2137,51032,13030,2689,5990,2030,17264,2670,9073,2934,1013,6025,50970,14373,8617,18988, }, + } +} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LocalizeDefault.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,146 @@ +--[[ + +To localize this add-on, include another LUA file that follows this one in the TOC and +overrides the default values. Example: + +if GetLocale()=="deDE" then + L["Bloodhound2"] = "Schweißhund2" + -- etc. +end + +Limit each LUA file to a single locale. + +]] +L = {}; + +L["Bloodhound2"] = "Bloodhound2"; +L["Bloodhound2 Options"] = "Bloodhound2 Options"; +L["Multi-Zone"] = "Multi-Zone"; +L["While flying"] = "While flying"; +L["Always"] = "Always"; +L["Never"] = "Never"; +L["Inspection radius"] = "Inspection radius"; +L["Zones"] = "Zones"; +L["All"] = "All"; +L["None"] = "None"; + +L["Herbs"] = "Herbs"; +L["Find Herbs"] = "Find Herbs"; +L[181166] = "Bloodthistle"; +L[1618] = "PeaceBloom"; +L[1617] = "Silverleaf"; +L[1619] = "Earthroot"; +L[1620] = "Mageroyal"; +L[1621] = "Briarthorn"; +L[2045] = "Stranglekelp"; +L[1622] = "Bruiseweed"; +L[1623] = "Wild Steelbloom"; +L[1628] = "Grave Moss"; +L[1624] = "Kingsblood"; +L[2041] = "Liferoot"; +L[2042] = "Fadeleaf"; +L[2046] = "Goldthorn"; +L[2043] = "Khadgar's Whisker"; +L[2044] = "Dragon's Teeth"; +L[2866] = "Firebloom"; +L[142140] = "Purple Lotus"; +L[142141] = "Arthas' Tears"; +L[142142] = "Sungrass"; +L[142143] = "Blindweed"; +L[142144] = "Ghost Mushroom"; +L[142145] = "Gromsblood"; +L[176583] = "Golden Sansam"; +L[176584] = "Dreamfoil"; +L[176586] = "Mountain Silversage"; +L[176587] = "Sorrowmoss"; +L[176588] = "Icecap"; +L[176589] = "Black Lotus"; +L[181270] = "Felweed"; +L[190174] = "Frozen Herb (300)"; +L[181271] = "Dreaming Glory"; +L[181275] = "Ragveil"; +L[181277] = "Terocone"; +L[181276] = "Flame Cap"; +L[181278] = "Ancient Lichen"; +L[189973] = "Goldclover"; +L[181279] = "Netherbloom"; +L[185881] = "Netherdust Bush"; +L[191303] = "Firethorn"; +L[181280] = "Nightmare Vine"; +L[181281] = "Mana Thistle"; +L[190169] = "Tiger Lily"; +L[190170] = "Talandra's Rose"; +L[191019] = "Adder's Tongue"; +L[190173] = "Frozen Herb (400)"; +L[190175] = "Frozen Herb (415)"; +L[190171] = "Lichbloom"; +L[190172] = "Icethorn"; +L[190176] = "Frost Lotus"; +L[202747] = "Cinderbloom"; +L[202748] = "Stormvine"; +L[202749] = "Azshara's Veil"; +L[202750] = "Heartblossom"; +L[202751] = "Twilight Jasmine"; +L[202752] = "Whiptail"; +L[209351] = "Snow Lily"; +L[215412] = "Sha-Touched Herb"; +L[209353] = "Rain Poppy"; +L[209354] = "Golden Lotus"; +L[209355] = "Fool's Cap"; +L[209349] = "Green Tea Leaf"; +L[209350] = "Silkweed"; +L[214510] = "Sha-Touched Herb"; +L[215410] = "Fool's Cap"; + +L["Minerals"] = "Minerals"; +L["Find Minerals"] = "Find Minerals"; +L[188432] = "Black Blood of Yogg-Saron"; +L[1731] = "Copper Vein"; +L[191844] = "Enchanted Earth"; +L[188699] = "Strange Ore"; +L[1610] = "Incendicite Mineral Vein"; +L[1732] = "Tin Vein"; +L[2653] = "Lesser Bloodstone Deposit"; +L[73940] = "Ooze Covered Silver Vein"; +L[1733] = "Silver Vein"; +L[1735] = "Iron Deposit"; +L[19903] = "Indurium Mineral Vein"; +L[1734] = "Gold Vein"; +L[73941] = "Ooze Covered Gold Vein"; +L[2040] = "Mithril Deposit"; +L[123310] = "Ooze Covered Mithril Deposit"; +L[165658] = "Dark Iron Deposit"; +L[123309] = "Ooze Covered Truesilver Deposit"; +L[2047] = "Truesilver Deposit"; +L[123848] = "Ooze Covered Thorium Vein"; +L[324] = "Small Thorium Vein"; +L[180215] = "Hakkari Thorium Vein"; +L[177388] = "Ooze Covered Rich Thorium Vein"; +L[175404] = "Rich Thorium Vein"; +L[181555] = "Fel Iron Deposit"; +L[185877] = "Nethercite Deposit"; +L[181069] = "Large Obsidian Chunk"; +L[181068] = "Small Obsidian Chunk"; +L[181556] = "Adamantite Deposit"; +L[189978] = "Cobalt Deposit"; +L[181569] = "Rich Adamantite Deposit"; +L[185557] = "Ancient Gem Vein"; +L[181557] = "Khorium Vein"; +L[189979] = "Rich Cobalt Deposit"; +L[189980] = "Saronite Deposit"; +L[189981] = "Rich Saronite Deposit"; +L[195036] = "Pure Saronite Deposit"; +L[191133] = "Titanium Vein"; +L[202736] = "Obsidium Deposit"; +L[202737] = "Pyrite Deposit"; +L[202738] = "Elementium Vein"; +L[202739] = "Rich Obsidium Deposit"; +L[202740] = "Rich Pyrite Deposit"; +L[202741] = "Rich Elementium Vein"; +L[209330] = "Rich Trillium Vein"; +L[209311] = "Ghost Iron Deposit"; +L[209312] = "Kyparite Deposit"; +L[209313] = "Trillium Vein"; +L[209328] = "Rich Ghost Iron Deposit"; +L[209329] = "Rich Kyparite Deposit"; +L[215413] = "Ghost Iron Deposit";
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/OreDatabase.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,284 @@ +-- Don't change anything here. Adding coords here without knowing what you are doing will break the addon. +-- You've been warned. +Bloodhound2.OreDatabase = +{ + { -- continent 1 + Z31N123309 ={ 434809,1000,14026,999,14013,2981,12044,2978,967,7985,4027,3983,}, +Z15N123310 ={ 736624,16,}, +Z28N123310 ={ 649845,4023,2990,37993,}, +Z31N123848 ={ 434810,1000,15024,1,14013,999,1981,11043,3979,968,8984,2027,1000,3983,}, +Z11N1731 ={ 352339,4001,1009,922,1022,4002,152,9,1116,1000,766,5056,2,1070,997,2104,1836,748,241,2817,1034,2,16,4,1236,2001,6,648,998,85,5301,1844,7,10,983,7,754,268,121,4,7603,999,1329,2008,2862,1939,1016,1,987,195,2857,6,4175,999,873,1000,114,2696,249,2062,936,1951,7059,1,3784,8,993,1006,4033,1197,3013,5792,215,1747,6,39,509,1697,291,3007,4560,17,2410,1005,1,572,2414,546,993,56,8858,1,3106,2134,350,650,725,131,1497,350,53,54,59,370,1,1012,509,38,254,2292,1352,111,203,50,747,253,32,74,937,1078,861,1694,630,7,398,430,119,373,71,229,60,1033,230,309,13,1,497,59,444,449,1,47,109,383,59,6,35,37,598,254,113,277,2,802,309,512,156,9,981,2541,996,486,22,331,557,90,351,1473,164,999,24,793,1027,1193,819,973,102,3037,535,433,92,991,1526,995,1437,1856,1000,3092,416,3010,1045,827,620,559,14,94,1,332,574,93,1,897,640,2195,1008,812,950,991,987,249,999,751,1005,4915,5,141,2387,727,277,724,2882,866,1427,2812,195,3799,293,1474,433,1618,1,2178,1000,2820,3,472,3857,5986,1013,1,3053,10,}, +Z18N1731 ={ 293274,1,9935,5387,1615,4086,1000,8132,4072,1976,4130,1985,774,3045,1206,129,857,85,850,1796,139,103,74,683,1,22,220,74,2142,2721,1,199,899,2047,120,609,1000,2195,101,1863,12637,999,2978,4951,8981,2,25995,26623,1,6427,36587,362,7170,8831,17982,1001,638,4375,8643,3382,4049,2988,1973,9033,577,5677,898,870,214,786,215,4966,2074,2,5890,999,1040,1,2833,1152,1000,2027,1947,1,137,2881,2091,878,4052,1940,1902,130,1046,26,2830,276,1,194,1824,971,815,3097,1798,1,977,253,982,1907,1216,702,1021,2949,1229,6976,4272,14002,8013,1,12970,3939,1,19,1,}, +Z19N1731 ={ 229348,3986,1009,45021,2011,22,977,2083,1986,2981,1001,17867,2066,5931,1088,7011,3910,7130,5916,1,3031,1000,4060,921,4090,1000,1155,2895,1113,1654,1984,1000,1249,5772,213,2197,4054,1669,979,2260,108,989,999,955,591,100,43,188,1,39,1,8693,1099,237,1,592,326,3988,6743,1,4933,1000,71,5051,1005,19046,13,1,2849,1,209,1,161,654,164,1,1762,1342,888,2863,2100,166,658,1,353,3047,599,1001,3389,1,5748,361,2006,3647,10,990,10,2035,2331,2947,733,5013,238,6008,65,934,66,440,6991,604,9389,1530,19,981,2012,11439,6986,18,2138,478,991,2583,5001,133,1993,3291,1,527,1045,1000,3141,596,1,4157,1204,631,372,2801,1548,1068,202,1190,1185,1362,1000,4059,1,2919,1,69,11490,1000,5418,682,1001,2131,2879,117,771,411,1,691,3096,202,833,953,1000,1018,2805,6818,1232,6111,1,2778,1117,1760,318,809,2120,92,1970,999,796,1,913,318,1990,3992,1262,1000,2308,3412,1006,290,361,1648,999,1,355,3923,2005,204,982,1001,2269,1,2029,1,1983,3191,5012,3006,5832,6006,3012,}, +Z23N1731 ={ 300084,1,9000,25,974,5989,116076,2999,79138,1001,43087,2003,10990,26019,}, +Z24N1731 ={ 321694,1,17020,12019,66748,11004,981,17018,37861,5990,8007,3014,4368,4983,6991,18744,2149,1834,1146,163,2671,1000,4298,1,5861,4025,99,43123,6024,7005,34972,1,18011,20002,113989,6019,7978,1,}, +Z28N1731 ={ 174308,41926,403365,}, +Z29N1731 ={ 675159,}, +Z3N1731 ={ 176321,8998,2989,13028,1994,18,96802,2984,1,4005,350657,8997,4001,32020,1990,55,1000,3941,52,4989,1000,}, +Z4N1731 ={ 124509,4968,1155,9927,5967,7110,3086,902,1,1057,865,1024,16,121,1940,16809,10247,1,1980,985,791,1262,1984,2027,1945,799,9975,11027,6987,246,2931,2,2009,3073,1761,4200,35,2940,1,1044,758,5248,2967,880,892,1,79,1,3016,3143,1,999,1,11,3712,113,5184,1007,2725,2945,1315,13863,2017,2783,4019,3222,2817,2946,1,1000,3954,2040,2967,77,199,724,276,823,4882,2484,5532,320,3158,1585,8003,3789,1617,3019,1,1428,15,2374,2564,4033,286,1888,235,3778,1745,2363,1,264,1539,42,102,1035,3924,1219,696,7294,1158,624,911,6328,1108,2615,8277,638,5086,1222,1192,526,1973,2060,1214,5228,4817,195,1972,1,597,403,7408,4114,8904,7615,4468,1926,2598,1379,1001,1172,1925,2541,6984,3311,7571,2451,105,5409,2094,933,1,469,1,1630,485,5507,469,3516,937,572,4903,1001,2547,3463,7549,1,5461,1573,4446,1001,4530,11005,6977,11016,1,2014,2534,16981,4510,1,999,1,2506,7992,5475,6029,1335,10985,2176,4808,202,1840,11136,1055,1,2847,999,133,1001,4938,878,2081,81,1857,183,4917,1058,3030,1876,1,1911,131,1014,6043,1,844,3185,1,938,81995,}, +Z5N1731 ={ 109857,6941,15077,999,7955,9042,9900,6123,1001,4918,9089,11866,1063,23881,6980,7112,947,54,5925,1930,954,1,9979,1,2137,957,1001,1013,2054,960,5013,7,1983,1760,1265,1999,6987,6111,1000,900,2908,12149,19985,1002,3573,932,16249,18303,1349,333,999,1001,7242,3887,3119,9653,13335,885,7527,1035,523,18421,2923,999,2,9652,1000,8759,1000,1662,266,726,273,7718,6019,4017,2935,5034,999,543,1443,4031,2,78,1002,153,4746,7,5972,6059,35,2173,22995,1000,4029,1,64,3961,6124,1,7879,1,1965,18163,2,15945,3044,1,}, +Z6N1731 ={ 147567,4957,1,19812,6160,8079,12725,10282,15848,19189,1001,10001,31933,998,7052,998,3894,2097,6809,9261,2043,1643,12270,1001,6751,7449,708,308,6755,1003,754,10496,3685,27984,1,7008,2,4296,420,370,1276,1000,7571,2001,2901,157,5659,444,1000,3086,1036,1727,10853,6192,1,1331,998,8423,5080,1002,7185,106,896,1257,2,999,1,1729,2,12815,105,998,8970,1002,9440,1837,1002,36171,4954,1001,14939,25674,269,2,730,12083,8966,1,5280,999,14090,1,3709,1,26087,9137,912,12935,5027,2,37576,10950,}, +Z8N1731 ={ 322842,2993,8996,2009,7979,1000,2008,1012,1045,4005,503,2950,4385,155,510,2946,61,1329,104,1892,3868,36,224,783,188,852,685,109,120,1776,1959,1531,1606,373,1,19,6557,908,404,1991,701,177,778,310,735,450,538,4,222,819,238,909,230,1549,1,245,203,41,726,45,46,2166,471,991,2138,870,3529,485,57,2332,669,1944,381,3,97,1,14,2028,1991,444,28,38,7,478,1824,31,1134,830,657,352,29,719,2880,30,51,28,2777,368,35,10,739,262,978,799,214,1599,526,578,968,36,8,408,552,1287,964,140,1544,74,3,1372,8,21,845,891,160,746,167,38,164,893,1724,998,288,1000,819,1005,1009,1936,6,207,161,981,998,82,751,806,31,1,170,192,601,195,204,803,241,1564,1030,1016,1010,1093,879,126,1895,1,2064,6,84,3783,115,2890,98,899,3,97,1007,1961,962,13,34,2129,5,17,1811,8898,3992,4,7986,1000,38,2971,1036,2976,1,3998,3031,2002,2037,4000,4844,1137,1002,1995,876,2984,1006,1113,1008,1993,868,3102,5,2874,1014,100,1997,1067,11,825,1001,89,1045,1017,972,2019,2001,24,4,4881,1104,1929,2071,901,26,55,3792,990,97,2901,113,1999,989,9,5050,1976,1870,97,909,2043,101,2945,1880,1000,1070,52,1056,830,1123,880,1062,2036,880,1110,4,881,2092,2950,1012,1050,3940,9,3056,3996,1001,5885,989,4006,8,}, +Z12N1732 ={ 345202,10936,60955,77357,14721,13326,1123,18889,2086,1000,9931,24678,1,}, +Z19N1732 ={ 253295,1974,2035,1,2957,2982,2,13002,2046,1,12014,2991,}, +Z24N1732 ={ 294661,3998,12000,11001,15989,6913,2082,1001,2898,6086,1950,945,3673,307,1,745,6926,3404,168,832,2611,6557,528,315,157,1441,7074,5287,1190,3872,1000,3133,809,1,4737,108,770,122,108,1138,129,956,1941,67,3696,1062,920,43,2311,695,325,697,5784,1,3259,1,949,1,60,844,3130,1995,2836,969,3973,11566,4981,1574,151,1001,5059,1,987,2812,1,131,5988,79,1204,4592,983,128,2324,1,4775,2877,9001,5017,1189,1,29,1,748,1140,63,5010,4021,1909,8108,1,8826,52,3248,1668,64,1917,6013,7010,319,6727,6271,3116,10783,2128,2089,24,1730,104,1,1156,3672,2096,51,189,2703,146,1035,901,1,104,99,901,99,5679,164,2077,95,3770,6212,999,37,1641,97,1990,3278,1539,2980,9443,16977,7014,7587,5025,2374,1001,3981,7020,616,1001,3374,752,10883,1001,132,998,8276,891,1000,5125,4845,806,60,1171,1040,1089,2850,2773,1197,1048,2792,1177,999,2077,64,936,63,1,5847,814,1366,3867,3038,67,1,3865,1000,14,4103,9899,}, +Z3N1732 ={ 130137,10994,9010,11129,2964,2,131,999,791,226,842,947,1102,963,3045,3074,826,7359,1001,3012,8,1867,1018,3010,1000,7072,1662,83,1,1000,2993,170,984,132,1,636,5083,1,4351,798,769,1311,1,5127,873,5997,1000,11694,114,1014,1,222,753,2297,2017,579,349,651,2411,1,2575,1361,14742,5013,993,363,1986,4986,1,716,2088,2065,1,1006,916,178,913,1820,103,150,1792,4221,1,3794,933,1320,1741,280,3761,1223,794,2264,1729,2772,3018,1,1069,1,1408,4571,1,939,1,70,413,2709,1973,1204,1,2748,1017,57,170,4762,4236,12795,5996,5266,678,993,4004,2320,2017,2,5685,4388,605,6016,389,3986,605,32,979,28,1051,914,85,916,1349,729,1991,247,1983,1002,52,673,2338,2657,993,4071,220,1000,4078,702,3006,2291,2757,1,5251,766,992,1,28989,1,1975,6040,2067,1000,5989,7008,1001,6201,1010,4985,4613,1,2016,1010,6093,8,3018,820,3010,1037,1421,7,576,1008,1308,1632,2365,102,3898,1,67,2795,1098,1777,1336,1876,1,1013,1758,1016,3131,1736,4014,1348,5665,1000,334,12,3068,1051,585,2372,615,1022,999,1,1403,942,1050,4706,977,1000,1011,1,11953,1008,1223,789,201,974,1990,1000,3,2040,10021,776,2216,2932,56,5796,1990,5175,85,1906,948,990,27,1,4117,5791,218,767,2030,9032,11050,957,1000,3992,3033,4985,11183,989,1029,27034,1923,999,60,1,3773,1234,930,2042,1,1779,1,2183,2819,2220,19744,968,6022,1000,17262,4746,3007,16,4216,78,1000,988,6934,76,12941,28,2989,11030,4009,1000,9006,1000,9974,15995,10,}, +Z4N1732 ={ 097702,4064,917,9986,1086,6979,1001,7013,2921,}, +Z6N1732 ={ 136542,24032,10711,14357,7743,4958,29152,2129,737,264,1941,23778,23240,2,93053,5701,10233,2710,39971,70,931,11057,39909,2001,27035,86229,24973,96744,16059,3942,1,16931,}, +Z8N1732 ={ 310836,2011,6985,1025,3978,34,1000,964,8,4022,39030,2005,1036,5966,36,990,1994,78942,992,1984,995,1000,2083,938,1,2057,4993,3993,}, +Z10N1733 ={ 290744,13937,2042,53886,979,6681,11985,1,5361,9237,3410,24493,30847,21017,10066,4928,1959,14310,11635,16002,107,2694,1105,9182,2031,1979,1916,3899,9859,3317,3993,1985,1987,40340,15505,7066,999,6211,577,3216,14986,30043,39644,110,5937,3234,1918,149,628,3121,56912,}, +Z12N1733 ={ 303217,9008,24499,38958,80725,}, +Z15N1733 ={ 368235,993,1017,11,865,1095,985,7,3981,1977,2010,62,12,857,2109,2885,2155,6002,1827,126,2866,1172,5912,4014,907,123,25,24,1982,936,1052,1,3857,174,4013,1922,2055,822,133,1057,1950,867,191,1945,5865,140,921,119,994,3969,924,1212,1907,949,863,3113,982,2988,915,5976,3129,3887,3099,376,1566,449,1722,2120,26,988,22,1000,956,36,16,1661,1277,164,1824,991,912,277,494,221,15,1263,1810,914,4093,162,1755,234,20,2753,59,708,240,975,2036,897,19,96,880,31,24,73,926,973,111,720,201,74,15,874,22,21,1947,1962,1002,4998,1,511,3851,169,2358,2002,681,410,348,2637,1980,8,2413,567,8,1475,57,423,30,497,949,31,511,1516,13,9,2007,878,1,10002,995,1000,985,1278,2993,7001,2763,4048,956,987,3045,28,12993,2944,5068,1075,828,256,830,24,4,43,904,949,52,1133,936,23,975,896,143,888,1134,1854,4152,9920,939,30,19,2989,2044,4885,7010,15,2094,2877,14976,2038,993,64,1991,887,154,2782,41,7,2969,10,1,95,915,2943,5253,2869,986,885,4985,8991,14002,2211,5833,4003,9240,2719,5277,724,198,981,1027,934,2018,5123,20769,2996,2060,5910,3996,1100,951,7012,3962,4065,2973,4034,8936,10998,}, +Z19N1733 ={ 253295,1974,2036,2957,2984,15047,12016,2990,}, +Z23N1733 ={ 382336,8486,1339,2679,1535,793,3015,64,114,1990,3840,1296,910,10,1839,1170,1873,1038,1156,821,116,432,1392,1,539,1533,142,1399,583,3323,1101,2084,836,6628,2438,692,288,568,6457,2841,4008,978,60,5,1947,4953,242,3727,20,3127,1126,719,233,623,2314,69,16,522,3063,21,1360,1628,1171,1750,1503,731,721,3270,777,7209,3228,8996,6935,2073,9721,8827,10132,13968,}, +Z24N1733 ={ 298659,23001,15989,12894,6086,1950,5671,6926,3404,168,832,2611,6557,528,315,1598,6074,6287,1190,8005,809,1,4737,878,122,108,1267,2897,67,3696,1062,920,43,2311,695,325,697,5784,3260,1,855,94,62,3973,1995,2836,969,15539,4981,1574,6211,1,989,2942,5988,79,1204,4593,981,2453,1,4775,2877,9001,4018,2189,30,748,1140,63,5010,4020,910,9108,1,8825,53,3248,1668,64,7930,7329,6727,6271,3116,10783,2128,2089,24,1730,104,1,1156,2011,1661,2096,51,2892,146,1035,901,1,104,1000,99,5679,164,2172,906,2863,6213,999,37,1641,97,1991,3277,1539,2980,9442,16978,7013,7588,5025,2374,1000,3982,7020,1616,1,3374,752,10885,998,131,1000,8276,1891,5125,4845,806,60,1171,1040,1089,2850,3772,198,1048,2792,1177,999,2077,1064,5848,813,1366,3867,3038,68,3865,1000,14,4103,9899,}, +Z28N1733 ={ 122209,60032,60057,126007,159145,135422,8018,78626,44386,9003,56950,44781,7028,}, +Z4N1733 ={ 102683,9986,}, +Z6N1733 ={ 372639,142617,83230,}, +Z8N1733 ={ 310836,1011,14986,2007,134998,995,}, +Z10N1734 ={ 304681,2042,61546,11985,1,5361,12647,119255,16002,3906,9182,3031,2895,3899,9859,2318,4992,3972,138589,29279,2696,35062,}, +Z12N1734 ={ 371672,}, +Z14N1734 ={ 350591,3015,1975,8087,9,2911,65,4030,3919,91,1786,2255,674,25,2079,1007,37,823,1214,1061,720,4200,1,1754,266,2233,480,1029,396,2488,1419,2154,793,187,1,475,8,962,46,490,1841,132,2063,1017,2431,1555,1004,53,764,20,180,1810,1615,944,33,2596,57,1293,7,340,2048,2045,1,918,58,950,63,1229,1744,243,799,3206,3817,1870,660,324,1696,1299,1356,34,767,1208,627,1153,24,1803,412,1397,1613,1562,1464,993,1781,19,1742,1721,263,3993,2299,3008,200,2805,1203,5477,1988,2990,377,608,382,1994,157,864,373,237,2511,474,2522,3983,5268,1205,6005,1532,258,3755,2239,2141,48,4900,2042,6549,3321,4681,286,6091,891,2217,1902,3616,272,104,1031,1016,54,911,13,2613,6038,1,2328,14,35,2599,2373,2042,975,1855,991,1087,1105,1944,9006,935,1978,12027,1928,3036,7992,34,1930,155,1010,}, +Z15N1734 ={ 370245,876,1095,985,4954,3021,62,869,79,4915,3155,966,4035,1828,2992,7084,3088,1833,1101,1053,936,2907,2176,4014,1810,112,2877,133,3007,1058,3992,3818,1061,5082,4043,949,863,3102,11,983,3902,5976,3129,3887,3099,6238,21,988,704,318,735,221,36,16,2938,1988,1903,88,683,221,15,3073,914,4093,1917,234,2773,60,707,240,8,967,2933,20,95,880,128,1899,111,720,164,112,14,2864,2964,4998,1,3888,474,4529,1091,1348,1637,1988,2944,36,8,1475,57,453,410,1067,986,1054,2016,10881,1995,15020,5004,1987,23078,1903,26,1088,43,904,949,5046,2988,96,12935,130,911,10906,1116,5909,2094,20885,37,1976,41,1041,2823,7,3990,8196,2869,6145,711,8991,1304,12698,24006,6001,198,2942,38975,3897,2051,8038,2936,}, +Z23N1734 ={ 390822,1339,2679,5407,2104,3840,1653,2402,1170,1873,1039,1155,821,1,547,1393,539,3074,584,3322,1101,2920,9066,8005,1841,4008,1978,65,1948,4952,3969,20,4253,719,3255,522,3063,1380,1629,1925,7221,7986,3147,18719,}, +Z25N1734 ={ 282604,10129,5972,1037,57476,11299,714,10995,11056,13935,9354,2657,8336,6660,1,3008,17011,1,11999,7525,1484,7011,93211,5161,8006,5841,16124,44971,6980,16864,11092,1916,2984,2084,5016,}, +Z28N1734 ={ 100132,18995,223129,74072,2989,2027,1,4973,1033,8002,970,8037,980,21,4963,1,144178,9966,33994,15039,45228,173861,5126,2882,9069,10009,31120,13995,3958,11027,}, +Z31N1734 ={ 330492,48154,166,31540,33532,79766,50503,53028,89063,72334,17841,}, +Z10N1735 ={ 249825,20984,12260,1770,1000,1706,3198,2,2785,1058,1000,2964,102,1,1055,2805,2166,398,601,1043,3891,1,11209,1001,1711,53,946,983,16306,1,686,4092,2,3177,2742,8064,20,6661,4101,7884,1,3653,440,1000,268,3762,509,1477,1001,2488,1001,2409,1002,3362,3033,7058,10038,103,880,5945,2,7152,10028,6737,661,552,448,552,11461,1192,5200,763,188,811,1152,1181,39,3489,1956,592,608,239,86,675,237,1947,1982,1001,957,1144,1718,1000,1,2152,232,9064,1677,1270,1033,3463,445,555,445,1747,6796,2,1000,8204,107,2243,451,104,5408,2613,1001,1161,715,1316,1979,2916,1,632,50,77,873,49,1078,1,138,3798,6061,1028,2290,1511,2481,985,1000,1987,1,1714,12414,3203,223,775,1002,1980,8011,914,4326,2550,1000,1743,484,1001,2892,5792,5815,5,5724,269,1072,1,339,737,220,88,18,5696,112,19,1,206,351,2030,1186,2073,334,600,999,2,6345,4633,2,7818,1,285,714,1,285,784,1,5252,2763,1000,1473,980,802,999,4534,222,778,110,113,147,978,299,5766,8817,1146,3618,13966,971,2278,894,1316,574,110,1299,1674,2964,3234,186,828,1054,591,37,223,2895,1224,1800,6083,2,13983,8853,8951,68,15950,}, +Z12N1735 ={ 303217,7441,567,1979,1013,3439,6566,11,999,7268,724,2499,31488,5913,1522,1000,36,2986,7004,1988,12613,9859,36159,10116,6924,1827,8293,8818,873,22329,30679,10206,11838,1,9965,30065,21956,13009,}, +Z15N1735 ={ 368235,993,1017,11,865,1095,985,7,4900,46,1,1011,2010,62,12,936,2030,2885,3155,966,2864,1001,170,1954,2866,1172,5826,86,3088,1956,25,25,105,814,9,1053,936,1052,1,3130,727,172,9,4006,85,1837,892,1163,822,133,1057,1950,148,910,1945,5865,140,140,781,119,994,3969,924,1212,1907,949,863,1124,1000,951,27,11,983,2987,203,712,1304,1010,3662,2593,536,1425,992,1039,431,559,441,1554,545,58,318,1036,979,15,18,975,549,1164,1126,21,988,22,682,1,317,735,221,36,16,1099,562,1277,1886,102,1903,88,189,494,236,985,15,263,969,841,5007,162,1009,746,3007,60,707,240,8,967,2933,19,96,880,31,24,73,926,973,111,720,164,37,74,15,896,21,1947,375,1010,577,433,569,3408,6,6,1578,1,889,1608,1865,68,87,14,11,2348,2592,79,11,409,1348,1577,61,932,1048,8,1381,1032,531,1,35,8,1475,57,453,410,63,24,949,542,475,1042,12,8,1008,1879,2252,7750,995,1985,1278,1730,1263,7001,2763,1992,2056,956,1224,763,2045,28,3158,9015,820,1945,188,4046,1833,1075,828,1,25,230,854,4,43,47,857,25,924,1,51,1133,936,23,975,1039,857,31,1131,1857,3141,63,948,1008,5019,837,2015,130,911,939,30,20,2085,5,898,2044,2914,999,972,1116,4894,999,16,2093,1001,1877,5000,8976,60,940,60,2971,38,26,1950,41,888,152,1,898,1884,41,7,1000,1968,11,1,95,915,2943,1176,1,67,4009,2869,986,885,4274,711,7991,1000,1304,905,2088,9705,2211,5832,4005,3241,4848,1150,1994,724,1,6179,1,19,78,1930,934,986,875,157,1,842,1233,2009,1038,2984,1776,1000,3009,12001,53,1912,1030,2060,5910,1099,2897,1100,951,6035,1,923,53,947,79,2936,7038,4033,1,929,1,4040,999,1,2966,2055,5008,3935,}, +Z23N1735 ={ 382336,2995,5491,1339,2159,509,11,490,1044,1,793,3015,64,114,1990,3840,178,1117,358,1,562,990,849,1170,1874,1037,1156,821,1,115,432,1392,1,539,1474,59,142,1399,583,3323,1,99,1001,2083,836,1,5129,859,141,500,1,2436,692,288,568,4538,1480,439,1548,1,123,169,2847,1,1160,1978,61,4,1000,946,1,4821,132,242,2747,980,20,3127,1,1125,719,233,622,1,2314,85,522,462,538,2063,21,344,2,1014,1628,869,302,754,1923,307,269,731,269,452,1,3269,777,3347,1190,2672,2320,827,81,2075,27,5820,1074,6935,605,1001,467,635,4997,69,931,1050,830,1,1208,3963,1842,999,1023,11132,5982,1,5010,2975,6969,7963,34,10003,21008,14,13985,3011,1000,}, +Z28N1735 ={ 114213,11,1,999,6985,7994,32028,219,10,4011,7757,3247,4765,14,2,36024,5017,8006,11995,40028,11001,1000,10006,9015,1000,23846,1,14277,10985,3831,16,1,6149,1,6848,3009,1001,7186,1965,1,999,4019,9015,5076,1,6021,10991,13014,68838,8044,6967,3018,73066,1,9028,8983,7010,34287,29,8018,9015,2748,1002,5018,2,9009,1,3012,2844,15997,18993,10987,30391,14992,9002,10998,1000,43952,5987,5988,4992,26843,973,1000,1014,5014,1,}, +Z22N175404 ={ 242777,3011,2972,2492,1019,1471,1982,2,516,329,2663,64,414,1835,253,1902,475,31,312,658,341,1016,666,333,160,1,2619,2,96,390,392,1132,1110,357,2546,1845,2,220,28,1,67,184,1778,1,27,678,197,757,1,12,1341,202,482,220,780,220,1760,960,2591,1110,2310,1000,8101,1,12,15,395,1056,3932,61,1418,1,1076,7499,2431,1061,1079,3860,2551,3593,909,1,1992,4494,474,999,7996,104,1001,3947,68,1963,8941,1,16995,462,13532,1,7674,1000,322,14683,1736,253,6345,9663,341,1651,3355,1646,4359,4644,999,17991,5387,5607,468,532,13518,858,2632,2354,1650,8002,999,1,3469,3879,74,915,1000,3009,6270,29,971,5726,263,407,1008,4996,640,679,2754,2509,735,2986,1,2347,2382,1,551,1424,61,906,1015,1308,640,120,1532,3054,1382,1578,1028,1,8656,19006,1246,9998,763,1001,5229,5990,1,1787,3723,8295,2998,302,11385,324,5660,11,956,999,1662,86,1084,166,758,48,1009,565,2,1385,1080,524,610,1,389,2420,1879,2294,1409,579,528,470,995,517,991,1478,950,1,50,1969,1002,525,1485,1000,1501,1255,1982,2,4982,5870,1116,1,6880,3994,1115,1,999,1,}, +Z31N175404 ={ 208424,1,11184,17793,180,3877,1023,1036,46,1,849,1,999,1,2083,94,3,3016,3787,1000,1980,3915,1377,4641,6004,3981,407,7002,999,1,3026,11055,6932,1034,4055,2992,14997,11898,1,9511,13597,999,397,5623,9359,7594,1926,73,4067,1000,14808,7544,3653,12016,15999,13,1,10654,5921,17677,1000,7739,6262,743,6269,720,6622,4649,5741,14646,1946,1,13669,1,997,5007,1723,5022,1,9265,2707,1280,14707,1,999,7318,2001,12675,1320,12036,2,8613,11393,3592,1,999,1,13997,14411,1000,25588,1420,4028,2981,3494,1,10988,1598,7009,2380,1001,1979,680,297,1681,4276,1,997,791,2221,1,7949,1,10,1861,2018,1,92,1870,}, +Z33N175404 ={ 222633,974,17,2950,8,16,3859,2150,12,2842,1038,3108,860,3149,3850,6045,102,979,1000,3912,77,1893,1006,1030,3066,6904,6105,999,2929,1003,1077,5929,50,8961,1041,2,910,2010,1000,1041,49,2923,2072,2899,39,15,986,14,1,3044,3900,994,3001,114,986,2,5899,1997,111,6895,2107,932,4996,71,1,895,5002,3102,905,35,2973,1090,6997,1,928,1965,1025,3980,2029,1973,1095,5928,4071,930,1065,2924,3081,909,9089,4895,78,10,2010,1914,49,1010,1035,4906,1,4049,1001,5944,2664,431,1,583,1012,68,323,600,76,323,642,17,40,1894,72,25,28,12,850,25,1309,1,714,1106,1279,884,145,2,968,30,535,1120,331,1542,171,221,723,1362,2906,12,937,51,11,1076,541,5198,2800,1387,830,90,885,125,8,150,821,1717,2217,238,5542,457,2093,467,988,288,4985,17,739,4098,398,2501,3113,1,1319,1,73,36,1,1971,3956,962,20,1,2052,493,94,1,14,71,298,45,966,1675,1,2285,37,11,700,267,1548,269,4745,243,193,3008,985,2803,928,309,526,1258,1173,78,501,248,3267,9,712,1800,190,822,429,67,448,2055,469,1016,8,459,391,165,672,3829,1935,215,366,1,999,1,813,203,1010,1890,2493,1,418,817,1414,1,999,2577,397,752,863,1009,750,992,228,390,45,551,434,431,135,2800,1247,359,10,1,1038,363,68,1,1149,1,402,521,885,27,289,40,670,956,60,89,240,1,56,779,1764,27,1018,44,125,934,498,710,776,32,248,58,1,907,256,766,1,62,186,351,1,342,26,2784,292,194,1751,25,3248,5969,30,1901,33,923,3004,72,983,4929,105,1048,392,514,15,985,15,951,527,3444,1101,5779,106,943,963,169,853,2124,999,4943,5994,684,294,986,2996,1024,10,917,32,975,2014,1000,1012,1012,889,6999,13,3980,2995,1861,2144,2995,1989,7009,15,2964,31,2980,3002,2007,1006,}, +Z22N177388 ={ 206643,68056,43965,7019,18943,19978,23557,16113,17026,15964,10864,16093,33023,30714,1971,113805,18022,1061,983,}, +Z17N202736 ={ 093364,1,9980,999,1000,1,18976,1000,4143,2,2898,2,3948,2,3032,7146,1,893,1085,2,4036,2012,2,998,2,16929,1,4009,1,3089,1010,1,12025,16013,4974,991,1000,4036,1,10709,1,3298,2,9743,1999,1965,7285,2001,690,86,1,21,5990,1998,1,1949,2,2028,1,3033,956,2036,10,1140,962,874,4153,1831,1000,1987,5223,1824,2000,1,1156,1948,4043,1198,2001,3654,999,1501,999,918,1001,51,1,7067,346,953,219,311,689,312,2846,48,994,82,887,886,999,808,916,999,2310,1367,1002,1552,7186,1,287,331,2,942,139,1278,1,5609,1001,744,1521,2930,91,53,2,3366,3,6553,1043,36,921,1076,3,963,8062,4,4038,1,8639,3,1025,4194,127,2,691,1000,6867,2,2383,45,955,45,6706,6935,1,2926,7065,4932,1000,4056,1,14025,2074,1002,7822,1000,2355,1002,3676,1069,2000,6020,4954,1,256,1083,2,949,999,4020,606,395,605,394,1,3256,1779,5203,2,2946,757,3076,1002,588,2,600,401,599,10892,3540,986,1,2489,1,486,9,404,1,586,413,1,938,5662,1464,534,386,614,385,630,1350,2743,2902,331,1,66,1107,592,408,1870,96,1,127,20,8909,813,610,1,390,254,892,6869,38,3076,1,1184,975,1001,3948,2,788,1167,1084,1,789,1,6219,1,4542,3820,5534,853,1,5962,21,1042,2740,5181,7988,59,941,59,8756,1,999,1,1859,1,15106,1247,966,1,999,2,32,5019,10972,7031,29090,1929,2044,2,15944,4095,1002,4968,2,2058,2,6962,1916,1,4028,2,9041,2887,1000,3067,7979,6093,1867,999,974,15097,2897,50,948,2,50,2105,5933,1,8879,1,69,1,1104,13962,872,1002,2102,2970,1000,2980,2971,9976,1,}, +Z30N202737 ={ 154597,11980,13989,2954,5007,42966,3151,841,159,1,8838,1000,8980,999,2609,360,2214,758,2238,3729,290,3760,889,849,1068,151,849,151,2020,1933,854,1,27,1862,1,291,946,23884,895,8085,43,53,7884,77,115,808,77,1028,1909,1922,49,9218,1985,1,9889,1,1108,1936,999,1951,117,6747,1000,1177,74,1,897,841,166,82,2767,3983,1283,1,901,2035,3883,1,108,32,224,522,95,142,16,747,5041,57,4375,1,999,5615,393,510,2049,1000,3478,12,1031,885,583,972,1055,4486,1940,11514,571,4423,1726,3779,505,2478,104,1000,1136,3484,5324,3746,1301,1,132,301,692,506,83,1006,2722,990,5220,1799,1000,395,98,7718,3154,5675,982,511,840,27,973,27,3053,111,1464,1,4440,1000,4077,483,999,4498,2505,3453,992,550,1609,999,1384,4010,5418,4007,571,2610,411,1624,4374,2010,411,179,1375,1,2032,3977,1,6460,4985,1011,8611,1978,27,6970,19136,1845,33,2950,175,2848,1,125,226,2638,4030,1,999,1,147,190,930,1717,6345,2664,7408,1001,4575,1992,30,1,2172,3227,1,756,4004,2269,1,2552,3440,8716,1985,903,4165,821,166,1256,709,865,117,3325,625,13,939,48,14,1084,2276,1,2738,1314,6044,900,1073,1,985,9743,4969,20,53049,3008,4996,2993,19088,1907,1110,17,1896,4076,3906,12,}, +Z30N202738 ={ 154597,1000,10980,13989,2954,5007,42966,3151,1,840,159,1,8838,1000,8980,1000,2608,360,2214,758,2238,3729,290,3760,889,849,1068,151,849,151,2020,1933,854,1,28,1861,1,291,946,23884,895,7086,1042,53,7884,77,116,807,77,1028,1909,1922,49,9218,1985,1,9889,1,1108,1936,66,934,65,1885,117,6747,1000,1177,74,1,897,1007,82,2767,2984,1000,1282,1,901,2035,3883,1,108,256,522,95,142,16,1,746,237,4804,57,4375,1,999,5615,393,510,2049,1000,3478,1012,31,885,583,972,1055,4486,1940,11515,570,2426,1997,1726,3779,505,2478,104,1000,2136,2484,2,5322,4746,301,1,132,301,692,507,82,1006,2722,990,5220,1799,1000,395,98,7718,3154,4512,1163,982,1351,27,133,840,27,3053,111,1464,1,4440,1000,4077,1482,1,4497,2505,3453,992,550,1609,1000,1383,4010,1,5417,4007,571,2610,411,1624,4374,2010,411,179,1375,1,2032,3977,1,6460,4985,1011,8611,1978,27,6970,19136,1845,33,2950,175,825,2023,1,125,226,2638,4030,1,999,1,147,189,931,1717,6345,2664,7408,1000,4576,1992,30,1,2172,3227,1,756,4004,2269,1,2552,3439,8718,1,1983,903,4165,821,166,1256,709,865,118,3323,1,625,13,2,937,48,13,1085,2276,1,2738,1314,6045,899,1073,1,985,5739,8973,20,53049,3007,4997,2993,19088,1907,1110,17,1896,1000,3076,3906,1012,}, +Z30N202741 ={ 154597,11980,13989,2954,5007,42965,3152,841,159,1,8838,1000,8980,999,2609,360,2214,758,2238,3729,290,3760,889,849,1068,151,849,151,1021,2933,853,1,28,1861,1,291,946,23884,895,7086,1042,53,7884,77,116,807,77,1028,1909,1922,49,9218,1985,1,9889,1,1108,1936,1000,1950,117,6747,1000,1177,74,1,897,1007,82,2767,2984,1000,1184,98,1,2936,3883,1,108,31,1,224,522,95,142,763,5041,57,4375,1,999,5615,393,510,2049,1000,3478,12,1031,885,583,972,1055,4486,1940,11515,570,4423,1726,3779,505,2478,104,1000,2136,2484,5324,4746,301,1,132,301,692,507,82,1006,2722,990,5220,1799,1000,395,98,7718,3154,5675,982,511,840,27,973,27,3053,111,1464,1,4440,1000,4077,1482,1,4497,2505,3453,991,551,1609,1000,1383,4010,5418,3007,1571,2610,411,1624,4374,2010,411,179,1375,1,2032,3977,1,6460,4985,1011,8611,1978,27,6970,19136,1846,32,2950,175,2848,1,125,226,2638,4030,1,999,1,147,189,931,1717,6345,2664,7408,1000,3777,799,1992,30,1,5399,1,756,4004,2269,1,2552,3440,8717,1,1983,903,4165,821,166,1256,709,865,117,3325,625,13,939,48,13,1085,2276,1,2738,1314,6045,899,1073,1,985,5739,8973,20,53049,3007,4997,2993,19088,1907,1110,17,1896,4076,3906,12,}, +Z12N2040 ={ 305204,3020,1,2985,7006,46478,1,3992,2985,3072,2935,991,15,3010,6981,10073,10029,12043,21003,56017,29013,19836,7149,18878,5084,3955,}, +Z14N2040 ={ 350591,2015,1975,1000,8087,9,2911,4095,1968,1951,91,2,999,1,784,2255,1,673,25,982,29,1,1067,1007,860,177,1036,785,277,1,719,3369,831,1,241,977,536,265,1,1713,520,1509,396,494,568,1426,88,930,401,194,1,1973,779,187,9,11,456,8,8,954,38,46,1,451,1086,756,131,1089,974,482,1,534,37,2394,1555,999,5,53,764,20,180,1009,406,395,1233,335,1,46,943,34,2596,57,293,347,653,7,340,2048,2045,919,58,24,264,661,64,1229,1745,242,758,41,2205,1001,1043,1008,1766,1546,323,383,1,277,324,1696,1299,684,672,34,767,511,697,51,576,1153,24,228,1575,411,1,595,802,3175,1254,193,17,366,626,1260,521,1,20,459,118,422,731,11,842,879,263,2491,1502,2299,205,795,2008,200,2805,1203,1229,4248,993,995,2527,463,377,608,382,394,1,599,400,1,599,1,156,865,609,2511,474,2522,2983,2263,4733,477,5523,482,2,788,741,1,2448,1565,1000,1239,2141,48,1945,2955,1000,1026,16,2973,1588,1482,506,3321,1993,170,2518,286,999,4983,109,2625,483,1,1901,3616,272,1,103,31,984,1004,28,54,530,3007,308,1,2010,87,912,1,2045,675,2342,35,2025,574,18,1363,7,985,1634,259,149,975,989,866,991,1087,1,1103,1945,1059,1897,3052,2932,1000,2,1978,6948,5079,1927,24,3012,1946,1069,3039,1937,1,34,1086,844,155,1010,1,3988,}, +Z15N2040 ={ 550468,11991,11995,1,30019,1,999,12,993,1978,3992,4000,7007,}, +Z25N2040 ={ 269606,12998,1,1017,6101,3010,1880,4091,1,1038,8709,1018,10978,4072,1001,913,1001,15090,999,6995,6699,9284,2015,1714,2062,5140,2026,56,711,2305,878,866,1014,5993,13935,9354,1970,687,7336,1000,1,6659,1,3008,9517,1000,6010,484,1,11000,999,515,7010,1484,7011,1,20402,7023,2986,8092,8985,1922,1099,1,7983,19641,1981,7332,5669,93,1,943,262,1001,26,1762,1167,3056,2793,174,826,1157,5841,3160,12775,189,2799,5008,4210,1,3948,6056,13933,1000,8016,6980,16864,9102,1,1989,1916,2984,1,1067,15,1001,1958,3058,3931,32,969,32,13992,}, +Z28N2040 ={ 088214,1001,2901,2087,1001,898,981,2011,85,953,942,1140,10,1,7949,1,59,900,1,3102,9,992,9,3879,1058,1001,2079,1001,4852,1990,56,115,2849,1000,2012,5015,1,125,1029,948,6008,999,894,1165,930,81,1,916,83,1,842,3997,173,9,1908,2105,1001,818,4173,1919,1934,1,166,833,167,810,1107,1980,4924,118,883,2292,1779,1,1118,1851,1,984,27,1127,1001,830,1,1110,4010,1071,1862,228,1000,732,3185,1927,1881,44,1155,8982,94,937,1001,985,1804,1146,951,63,2057,3814,1,3244,834,22,1876,2223,1,1920,133,929,101,702,2083,1201,1,1024,920,1115,1,812,33,1132,2819,80,771,107,952,73,1,884,2169,64,936,147,4784,208,686,1035,320,3898,2731,2070,50,3147,1000,1,4084,904,745,57,1075,2021,7091,2754,1000,2014,369,3872,36,737,1,2246,1001,1963,48,951,790,1,5197,5045,15,107,628,4009,187,98,1000,4066,989,658,1,2258,755,356,1,1659,1,1159,1,1105,4722,2360,1661,2263,14007,1068,4743,1,128,2114,1817,1,1080,999,1,859,2011,2227,725,5021,218,1938,919,1186,725,1,204,2975,1000,1,872,20,1926,6207,999,1804,57,111,6956,1001,1061,4823,5041,1058,1067,9011,2840,4090,135,1,999,1,2939,2046,854,2,11021,3136,1921,1,878,2026,57,68,1,5897,1014,2127,2,3940,999,30,1,999,1,6859,1,3094,948,9052,988,6022,6019,5983,1000,8991,26,974,27,25955,1,11067,1941,69,1001,2949,2930,3016,25,2,83,890,110,6872,2009,1001,2124,1001,10876,986,17074,932,129,3905,1044,34,998,2901,1,6029,1,1031,1000,3997,1030,2,4258,3747,40,200,4778,4206,6983,857,1,141,843,2979,978,384,3803,157,843,157,1830,982,1985,4246,1954,7994,62,938,62,8942,999,2,9010,1001,3011,9000,15,2,10981,3992,1017,4559,1,2412,13584,1000,8459,9551,9000,2457,6997,2565,1000,1365,4055,1933,2,6649,2,2336,8989,1693,1,2376,7635,2021,31,5990,1309,674,1027,4100,2881,289,1843,890,52,936,203,797,202,942,988,1927,1131,99,1796,1,69,1,1016,5896,15165,36,964,36,2975,5966,1001,4977,2013,11982,1936,3021,2025,1,28,2,7972,}, +Z31N2040 ={ 330492,16718,31436,166,832,29708,24805,1000,8727,2,60825,18939,49503,2,27194,10313,16519,89062,1002,71333,17841,}, +Z12N2047 ={ 308224,9992,46478,3993,9998,2011,7981,}, +Z14N2047 ={ 350591,2015,2975,8087,9,2911,4095,1968,951,1091,2,2784,1255,680,19,1011,1068,1007,860,177,1036,1062,1,719,2369,1831,1,241,977,536,265,1,2233,1509,397,493,568,1426,88,931,594,806,1154,14,966,9,467,8,329,633,84,1,1537,755,132,34,1055,974,482,1,534,37,2394,1555,821,178,5,53,783,181,40,969,406,395,1568,1,46,943,34,2596,56,641,653,7,340,2048,2045,206,59,655,57,24,926,62,1230,1744,1042,2205,1,2043,2774,1238,308,323,383,278,324,1696,1299,1356,34,294,473,511,697,51,576,1153,24,228,1573,413,1,595,802,3175,1447,17,366,626,1261,520,1,19,460,118,1164,842,879,263,2491,1502,2299,205,999,1804,3005,1203,1229,4248,994,994,2367,160,463,985,382,394,600,400,1,599,157,865,609,2512,473,2522,2461,1522,1263,4733,6000,482,1531,1,258,2191,1564,2239,2141,48,1946,2954,2026,15,2973,1590,1481,506,3321,1162,830,2689,1285,9,4974,108,2626,483,1,1901,3616,272,104,897,118,1032,54,530,394,1005,1608,307,2099,912,1,2719,1,2328,14,36,1024,1574,1381,7,985,1634,259,149,975,989,867,990,2087,104,3004,940,956,3053,2932,1000,2980,5948,5078,1928,24,3012,1946,69,4039,1937,1,34,1086,844,155,1010,3989,}, +Z15N2047 ={ 550468,11991,10996,999,30020,1,1000,11,2971,3992,4000,7006,}, +Z22N2047 ={ 242778,3010,2971,2492,1020,1471,1983,517,329,1728,935,478,1835,253,1408,494,475,343,658,341,1016,666,333,161,2621,97,388,393,1132,1110,357,2546,1845,1,222,27,68,184,1778,1,27,679,196,757,1,12,1341,202,702,780,220,1760,1959,1592,1110,3310,8101,14,15,394,1056,3932,61,1418,1,1076,6499,3492,940,1139,3860,2552,3593,909,1992,4494,474,999,7996,104,5016,933,29,9942,1,16995,13994,1,7674,1322,14683,1989,6345,10004,651,4005,350,1646,5359,3643,1001,17990,10994,1000,16007,3355,1651,2418,13588,343,989,1001,3008,5299,971,1001,5725,262,1416,999,3997,640,679,2755,2508,735,2986,1,2347,2382,552,1424,1982,1308,2292,7042,1,1978,13675,12009,1246,9998,763,6230,5991,1787,12018,2998,302,11384,325,5660,967,999,1662,86,1056,193,835,923,58,566,1385,1081,524,609,2,389,2420,879,3294,1409,1107,470,1512,991,2428,1,48,2972,526,1485,1000,1501,1255,1982,2,4982,5870,1117,999,6879,4111,1,1000,}, +Z25N2047 ={ 270606,11998,1018,6102,3009,880,5092,1038,8708,12996,3073,1914,16091,14693,8284,3015,1713,2063,7165,57,711,3183,866,155,859,5993,13935,9354,1970,687,8336,6660,1,3008,9517,1000,6010,484,1,11998,516,7010,1484,7011,1,38504,8080,904,28946,1700,2981,12000,95,942,3053,1166,3056,2793,175,825,1157,5841,3160,12775,189,12017,10005,13933,9016,5980,17864,9104,1988,1916,2984,1,1067,15,1001,1958,3057,3932,32,968,}, +Z28N2047 ={ 089214,2902,3088,2890,2038,1944,148,7911,40,60,899,40,3073,4879,3124,2014,3853,2990,56,3964,2012,5015,1102,1052,7851,2164,11,1,1014,828,4179,907,4926,181,3992,3852,167,1000,4896,3926,1000,1292,2780,1117,2837,27,1128,1000,831,5190,2863,228,4917,3809,10181,2031,985,1804,146,3070,8060,858,977,897,2223,1922,7093,929,186,846,1131,3671,2017,2169,64,6761,315,1040,3898,2731,2070,4198,4084,904,745,10244,2754,1000,2383,632,3240,775,3246,2010,741,212,11032,122,628,266,3743,7999,1258,754,358,1658,2267,4722,2360,1661,2263,14007,1068,5985,5757,2012,2226,1726,4240,1937,2105,725,4181,892,1926,9010,57,13952,5041,2124,10013,1840,5225,2939,2046,855,11022,3136,1921,1879,1026,56,70,5897,9112,6860,1,3094,948,9052,989,6021,5019,6983,1000,9017,974,26982,10068,1941,69,2949,3931,3016,25,975,6981,2010,3125,10878,1985,17074,932,4034,1044,33,3900,6030,2031,3996,1032,4260,3747,239,801,3978,3206,7983,858,3963,978,4187,157,1000,2830,16161,6055,15961,2010,9017,11982,3992,17,6972,41595,27024,2337,10681,1377,8634,2022,31,5990,1983,27,5100,2881,2132,890,52,936,203,798,1143,988,1927,1131,1895,71,1017,5895,15201,965,3010,11944,2013,11982,1936,3021,1054,972,8002,}, +Z31N2047 ={ 208424,2,11183,35788,29306,1001,21042,5061,18685,11202,5516,31142,292,168,11342,1,619,18578,296,25509,8727,1,10764,1000,4880,5920,21216,3204,10264,2,2576,1050,1000,2137,5584,8837,1331,15870,945,4404,999,8483,296,1002,277,10192,7035,21501,1001,4694,10313,8186,9333,2153,1330,2,7497,9640,5340,8995,3018,9981,16020,5034,20053,18459,17693,1935,9285,4878,1,19083,1813,16028,8193,}, +Z33N2047 ={ 222633,974,17,2950,8,16,3860,1161,988,2854,1039,3107,860,3149,3850,3140,2905,1081,1000,3912,77,1893,1007,29,4066,6904,6105,999,2929,2080,5929,50,8961,1041,2,910,2010,1000,2090,2952,1043,1899,1029,11,14,986,14,1,3044,3900,994,3001,114,986,2,5899,1997,7006,2106,1,932,4996,71,1,1895,4002,3102,1,904,35,2973,2090,887,5110,929,1965,1025,3980,2029,1973,1095,5928,4071,931,1064,2924,3081,910,9088,4895,78,10,2011,912,1050,1011,1034,3906,1001,5049,1,5944,2664,15,416,1,1595,67,324,599,78,322,642,17,40,1895,71,26,27,862,25,1309,714,287,819,1,1279,884,145,1000,535,120,1330,1714,221,608,115,1362,2906,11,989,87,861,680,5198,2800,1387,830,90,885,133,150,821,28,1689,2217,238,5542,286,171,2093,467,988,5273,16,1,738,4497,2501,3113,1,1319,1,73,2008,3956,962,20,2052,494,94,15,71,343,966,994,681,1,297,1988,37,11,701,266,1548,269,4745,243,193,3008,985,562,2241,928,309,1783,1174,78,501,2482,1033,9,712,989,811,1012,496,448,2055,468,1017,8,459,391,165,672,3828,1937,214,366,1,1000,813,203,808,202,1890,2493,1237,1413,1000,2577,150,247,1615,1009,750,992,227,436,551,404,30,431,135,2800,1247,358,11,1,1038,363,68,1,1150,402,521,884,28,289,40,670,345,1,610,60,386,779,764,1027,1018,44,66,59,934,209,1775,32,248,58,1,907,256,15,751,250,350,1,342,26,1789,1287,194,1776,3249,5968,30,1901,33,923,3004,72,983,3929,1105,1048,392,514,15,985,15,951,527,3444,1100,5780,106,944,962,169,853,3123,1,4942,5994,978,986,2996,1024,10,917,32,975,2014,1000,2024,888,1107,5893,13,3980,2995,8000,989,3019,1001,2989,15,2964,3011,2016,986,2007,}, +Z14N324 ={ 614069,}, +Z22N324 ={ 242777,2010,1001,2971,2493,1019,1471,1982,1,517,329,1728,413,522,2313,253,1902,475,31,312,657,343,1015,666,333,160,1,2619,2,97,388,393,1132,1110,357,2546,1845,1,221,28,1,67,184,1778,1,27,678,197,757,13,988,354,201,482,220,780,220,1201,214,345,959,2592,2,3418,1000,2,8099,1,13,14,395,58,998,3933,60,1418,1,1076,6499,573,2919,940,4999,148,3404,3501,1,1992,4494,474,999,3506,4490,104,1001,3948,67,1963,8941,1,5474,10983,538,3434,9014,1546,1,7674,1000,322,12459,2224,1,1735,253,6346,9662,341,1650,3356,1646,4359,4644,1000,1365,15117,906,71,531,397,4990,5607,468,532,14376,1631,3355,1651,8002,998,1,3469,3879,2,71,916,120,881,3008,6270,29,971,1821,3905,263,1414,1,4996,447,193,679,2754,1,1508,2735,1986,1,2348,2381,1,551,1391,33,62,22,883,94,23,898,1308,641,119,1532,2056,2380,1000,578,1027,15655,12009,1246,10761,1,6229,1,5989,1,1787,3723,6979,1,1315,2998,302,11384,1,324,5660,965,2,999,1662,86,1084,166,758,48,576,433,565,1387,1080,524,609,2,389,2419,2,1878,266,2028,1409,1107,470,995,517,991,1478,950,1,50,2969,1,526,1485,1000,1501,1255,1982,1,4983,5870,1116,1,6880,998,4111,1,999,1,}, +Z31N324 ={ 237403,179,3877,1023,1036,46,1,849,1,999,1,2083,94,3,3016,3787,999,1981,3915,1377,4641,6004,2000,1981,407,11028,11055,6931,1035,6047,15997,21410,13597,999,397,5623,6530,2829,7594,1379,1,619,4067,1000,22352,3653,12016,15013,986,13,4477,298,703,297,28478,1000,2537,1,5201,6262,744,1263,3626,1000,380,719,1038,10233,4188,1553,20996,1001,8265,1,216,296,279,207,218,298,275,1,5214,723,4256,766,1,9265,2707,1280,14517,1,189,1,809,1,7507,2000,12676,10,309,12177,1,859,2,468,1,7498,646,8996,2397,1941,1651,1,999,1,5379,1,963,4018,3637,6375,6976,1015,44,1000,3973,2981,6035,12599,1420,3028,3981,3494,1,10988,1598,402,6607,2382,1000,1978,681,296,1681,3068,1207,2,726,64,208,790,2221,1,7001,948,1,10,1920,942,57,960,1,92,1871,17973,24220,1000,}, +Z33N324 ={ 222633,974,17,2950,8,16,3859,2150,12,2842,1039,3107,860,3149,3850,6045,102,979,1000,3912,77,893,2006,30,4066,6904,6105,999,2929,1003,1077,5929,50,8961,1041,2,910,1049,961,1000,2090,1923,1029,1043,2899,40,14,986,14,1,3044,3900,994,3001,114,986,2,5899,1997,7006,2106,1,932,4996,71,1,895,5002,3102,1,904,35,2974,1976,114,5996,929,1965,1025,2980,3029,1973,1095,5928,4071,931,1064,2925,3080,910,9088,4895,78,10,2010,913,1050,1010,1035,4906,1,4049,1001,5944,2664,15,416,1,1595,68,323,600,76,323,642,17,40,1895,71,26,27,12,850,25,1309,1,714,1106,1279,884,145,2,969,29,535,1120,330,1543,171,221,723,1362,2906,11,938,51,12,1075,541,5198,2800,1387,830,90,885,125,8,150,821,1717,2218,237,5542,286,171,2093,467,988,3289,1984,17,738,4099,398,2501,3113,1,1319,1,72,37,1,1971,3956,962,21,2545,95,14,369,45,571,86,309,1675,1,1285,49,12,939,37,11,13,687,267,1548,269,4745,243,193,3008,985,2802,929,309,526,1258,1173,78,501,3515,9,712,1800,190,822,429,67,448,1550,505,468,1017,8,459,391,165,672,3829,1935,215,366,1,999,1,813,203,1010,1890,2493,1,418,818,1413,1,999,2577,397,752,863,1009,750,992,228,390,45,551,434,432,134,2800,616,631,359,11,469,569,363,69,1149,1,402,521,885,27,289,40,670,330,15,1,610,59,1,386,779,1764,1,26,1018,44,67,58,934,208,1776,32,247,59,1,907,256,15,751,1,61,187,351,1,342,26,1789,1287,194,1751,25,3248,5969,30,1901,33,923,3004,72,983,4929,105,1048,392,514,15,985,15,951,527,3444,1101,5779,106,943,963,169,853,3123,1,4942,5994,978,986,2996,1024,10,916,33,1975,1014,12,988,2024,1995,901,4992,13,3980,3995,3005,3995,989,7009,15,2964,13,18,5982,2007,1006,}, +Z28N73940 ={ 694850,}, +Z28N73941 ={ 694850,}, + }, + { -- continent 2 +Z1N202736 ={ 204630,1000,877,3094,2053,1,2877,1000,5062,2,917,12980,999,17251,2029,1000,30954,2026,31982,1,10987,6026,1618,5366,999,598,6924,1068,1000,4974,998,20001,1,1027,1939,2001,121,15829,2147,1000,10939,2026,1,2856,566,2471,566,1,433,566,1,16942,1589,1976,22,1,7888,420,2,578,420,2,2765,1171,3027,1656,2,37,255,706,2,37,2,253,2916,1001,4716,311,1000,709,1190,5312,2684,2809,173,1129,1296,1,5925,1984,1,52,5025,405,1000,4533,6530,3114,2,428,468,534,3503,1000,1165,2,5756,2085,1000,2170,2741,3123,3102,2,3796,7029,5966,9228,1,}, +Z10N1731 ={ 202802,74542,4,5351,10725,1,43020,997,40102,2,148,1,5073,10814,9199,16825,132,14487,999,1,1379,1,8021,998,2,18108,1,1999,2,9469,999,48576,44474,1,10494,11719,3315,1000,5573,51444,8617,6145,15838,1378,621,378,5963,16979,36002,1002,38911,1,1000,998,36119,1759,1002,17041,1,}, +Z10N1732 ={ 239804,1,11999,1,12994,1000,18975,999,18940,2,45,953,2,15049,1,19001,4998,1000,1,4049,1,3601,1372,999,891,1125,1515,446,1,3725,3321,6,953,2018,4059,3955,3039,22923,1,1999,1,9479,1002,48357,1000,34191,1,7779,1,57,2079,2512,2,14329,2,22983,11982,6248,1730,9114,2,11199,1,10748,17259,5976,10021,1024,1001,37669,3,2001,2910,4051,3929,997,24367,11984,998,999,11034,1977,3009,27,37930,21033,16866,9079,822,14053,8927,4030,2001,2952,5982,1,}, +Z10N1733 ={ 239804,12001,53908,15051,1,19001,5998,1,4050,3602,1371,998,1892,125,1963,3725,3326,953,6078,3955,3038,24924,10481,49357,34191,1,7836,4592,14333,22983,11983,6247,1729,9115,15815,6134,34281,21933,17740,3911,4051,3929,25364,12982,13032,3987,28,37930,21032,11526,5340,9901,14052,7927,9984,}, +Z10N1734 ={ 577469,7909,}, +Z10N1735 ={ 259341,8035,61360,31077,961,4025,37,963,37,6994,10972,188512,1,5154,9909,7050,1000,2971,31391,8047,1688,999,6011,999,9242,17942,2000,44039,16012,5013,18,1987,30603,999,11902,7115,1000,16882,18070,20967,999,9148,11020,9025,}, +Z11N1734 ={ 050334,2,15,6979,2010,8989,3994,2987,2993,1018,3967,6007,4991,4000,5993,423,576,3434,2583,402,559,13,2362,629,371,1608,1027,1986,4389,1647,1403,6,17495,1556,9018,550,418,17078,1942,16067,3014,6959,8028,860,3182,1012,885,5024,1877,5174,7813,172,26958,2603,5411,21992,999,5592,4411,15000,2053,1756,205,21,7766,5246,1001,5740,1285,19988,11007,984,7028,706,6228,3983,1,1391,2407,13186,6905,3089,19988,7702,8745,28544,19428,32980,12645,355,4993,164,13035,15006,11983,3930,1392,2151,3864,3106,7015,3421,458,15689,5413,17650,10019,6231,4776,23257,4979,17985,3787,1,12211,12912,25,7026,}, +Z11N1735 ={ 050335,16,8989,1986,6003,3005,1989,2987,2993,1018,3967,6007,4991,7999,1994,423,577,2433,3985,559,13,2362,629,370,2636,1986,4389,3050,6,19051,8018,1000,968,1001,16077,1942,1,16066,3013,1,999,1,5959,2,8026,860,164,3018,1,896,115,885,115,4908,1,1877,3206,969,974,7838,172,13749,243,8872,999,891,2204,8014,770,15011,1,6209,1,11002,15000,2053,1755,206,21,7766,4246,1,999,1001,4738,1002,1285,10727,1000,8261,10740,251,15,1,984,7028,706,6228,3764,219,1,3798,13186,858,6047,2124,965,776,974,138,1134,844,1001,1916,3951,5309,3945,655,3061,1000,1967,1,1017,1347,10935,6009,5789,10002,1,2207,1000,756,46,9207,9008,1001,9006,19008,2,10010,7008,1,10998,1018,13,1,18008,8997,979,7989,2855,2152,3862,3107,1,22,6992,1860,2020,21101,9913,2081,1,5007,10667,339,921,3930,1041,3106,1670,8328,3670,2,4334,6924,1000,1,3977,17985,3787,1,12211,968,1,999,1,8944,1999,25,7026,}, +Z11N2040 ={ 108277,2017,967,34,5944,2054,2,4923,999,1071,3940,4968,3026,1076,908,4104,882,119,7865,977,1000,1163,1845,8167,2818,5193,1001,17997,10009,10005,23031,6992,4998,8007,9004,15998,5006,11989,12005,7983,1,12996,14771,2991,231,1,13778,1009,1000,4015,5199,6812,2196,10812,1000,5198,3816,1001,7192,9821,1,8994,25999,22976,1,19167,4829,193,807,192,2963,2053,6782,11976,9013,5155,999,2824,2041,1981,3069,1001,923,164,3939,56,1862,1,2156,1000,4021,827,3079,5111,812,12,4164,887,1,999,2,7077,1959,1000,1059,3930,3041,1900,7009,7999,1108,5016,1,4883,6139,3982,2875,1,7002,6009,2174,1020,3974,998,2978,3854,1,5123,2011,4861,1000,2121,1972,3942,3028,1035,1947,5028,1001,3008,4008,}, +Z11N2047 ={ 108277,2018,965,5979,2054,4924,2071,3940,4968,3026,1077,907,4105,881,1119,6865,1977,1163,1845,8166,2820,5193,18997,20014,23032,6990,4999,16011,16998,5006,11990,12004,20980,14771,2991,231,1,13777,2010,4015,12011,14008,9014,8191,9823,1,8994,25999,22976,1,19167,5828,4157,1051,6782,11977,9013,6154,2823,3042,981,3070,1000,923,164,2939,1056,1862,2,1155,6021,827,2079,5922,189,824,4164,889,8077,1959,2060,3930,4038,902,8008,7000,1108,5016,1001,3883,6139,3983,1874,8003,6009,3174,20,3972,1000,2978,2855,998,4126,2010,6861,4093,3942,6010,13044,}, +Z12N1731 ={ 207750,961,65,4911,2000,27156,2,11821,27,973,27,1899,20106,3896,3,65,10219,1838,6882,1939,12024,2,998,2,4141,925,24092,1,999,1,27784,319,7883,1100,8,1048,2000,641,3277,30,968,29,7018,2964,1,1016,1969,2027,992,1022,951,1752,1,1303,1902,3040,1008,25,1983,1715,12991,999,3250,15985,1000,998,18014,1999,26110,893,1132,867,132,7805,131,867,163,837,1,162,3927,1,819,2,1047,1002,2219,1,999,1,14967,18991,3981,1001,8774,1218,1000,19002,999,1986,1,2714,2008,155,1853,132,999,834,1059,2962,2016,991,1026,18,1000,4929,1012,1041,1,110,999,24757,3081,3092,2,998,2,1154,13984,2,8840,11143,6684,4104,5077,1,17971,125,873,127,875,5913,1145,1002,5188,1,2705,2073,79,920,79,1737,7490,999,3741,3206,2,1710,1002,8328,2000,11648,1,259,1,3618,13426,4627,17123,10258,17008,999,999,1979,11811,24018,1055,1001,}, +Z13N1731 ={ 258794,916,9028,4952,6076,1914,4894,1,171,7982,1000,5888,8928,1,3082,1141,947,23,975,2883,979,2066,8912,1034,9194,1866,1087,1,999,1,839,1090,1,3226,822,2,1041,1051,14948,1053,18,806,64,14066,2905,1873,4972,1000,2032,3065,6213,2812,1,4933,39,999,3980,5085,973,1,26,4097,3849,4203,10864,5942,1000,3012,2964,1304,3979,695,196,5027,1841,1,3219,1,1759,1,2069,1,1905,8122,6127,5985,765,43,24,169,808,5166,958,1928,998,44,1001,13856,8030,108,104,789,1043,2935,9025,1069,3973,3080,1878,3024,1000,196,956,1,13945,3949,1000,3124,3840,9181,1,4907,19988,17978,9097,751,1001,1077,1850,1,2273,6895,2948,1830,2091,11330,6021,3797,835,999,893,12180,4106,109,4950,2873,}, +Z14N1731 ={ 142334,1,7112,9089,12944,3119,16814,8686,560,12537,869,12986,1041,8169,7929,76,923,3160,21120,2048,3026,12147,833,1925,6686,1001,405,962,1060,5265,999,2393,4250,5832,6487,1081,8832,11448,12676,8362,9434,1849,8909,3755,1,2697,9646,24703,567,3640,1293,18551,38252,1,1142,10545,29468,8593,2,30304,11898,2233,999,10546,1999,16556,1000,32334,9345,1943,4804,998,1,13403,20760,31076,1,20979,1,16809,1,15893,166,58,942,2,56,18840,}, +Z14N1732 ={ 267632,7218,5905,781,975,8034,5031,57888,1,13190,997,7040,997,8165,1,2672,1058,11211,5718,1000,177246,61028,8884,35867,5950,1001,4968,56013,35863,1,4068,11958,}, +Z14N1733 ={ 374691,}, +Z15N1732 ={ 278689,3006,4922,76,7003,774,19,981,19,5013,5100,1114,797,20,4208,992,802,2210,998,781,1,5019,1,9015,17823,1013,1974,5030,1013,958,1007,12111,1993,999,1809,14,1,1208,1804,22,1988,1953,82,1000,5162,1,744,1102,4963,922,125,981,953,205,821,966,2061,146,855,1046,2972,119,1745,1127,118,768,1,47,1090,10,990,11,1969,1932,1,105,1839,1078,173,2024,1,999,1,689,1,1205,4988,1954,1000,972,1,1017,172,1,1883,636,1002,2500,989,1000,977,8,970,670,4371,16,957,567,999,2333,753,334,20,774,1,214,670,1351,1010,622,386,2537,999,2199,2111,1,1826,1204,1000,657,5166,1116,7,776,10,266,811,1,42,236,2,656,63,1,2852,327,1,658,115,86,99,902,156,2094,999,555,1000,2215,1,7233,1636,923,1084,113,1,816,1426,720,1012,925,1,87,65,1106,750,250,845,983,969,89,181,959,2737,43,238,615,160,933,20,69,35,875,2,20,69,968,59,4948,8,15,1825,1121,1033,2475,2015,540,832,1,89,1,14,449,1434,196,1401,1412,2555,1527,929,2154,1268,1,999,2,599,1059,1,436,6493,1,999,1,79,1,2058,890,618,366,4036,2,604,383,360,640,34,327,2646,6023,204,797,10,2181,2,826,1311,873,18,1,1215,5899,16205,6017,2676,256,906,1147,1000,13,2689,2076,1,1012,154,815,4926,1039,1024,999,30,1,1922,7033,4978,1000,5016,1,1036,2009,967,2965,20,5017,10025,1,15011,22098,2,2893,5022,2069,1943,10055,1007,960,999,994,}, +Z15N1733 ={ 287618,6078,6806,5100,1114,9027,33640,2013,974,5030,1013,957,1009,11110,2993,2808,14,1,1208,1804,22,1988,1952,83,6162,745,1102,4963,922,125,934,47,1158,821,966,2207,854,1047,1971,927,193,1746,125,1119,768,1001,137,11,999,1970,1933,105,1839,1078,173,3024,1,689,1,1204,4989,1954,2982,8,2056,1637,2501,988,1,1977,979,669,4371,16,957,20,1546,2333,753,334,20,774,1,214,670,1351,1010,622,386,3535,2200,2111,1,1826,2204,657,5166,1116,7,776,10,266,811,1,42,236,658,2916,327,1,658,115,185,902,156,2094,1554,3215,1006,6228,1635,924,1084,112,2,1816,1426,726,6,925,1,87,65,1106,750,74,176,845,1952,88,182,3696,43,238,615,160,934,19,104,877,20,1037,16,43,4948,23,1826,1120,1033,5031,833,88,1,14,884,1195,1401,2412,2556,526,928,2156,2868,1059,436,2503,4992,79,1,2058,890,984,4036,2,1987,34,2973,7024,2192,827,1311,672,201,19,999,6116,22222,2675,256,3053,2702,2076,1014,968,4926,2062,1031,8954,12032,2009,967,2965,15063,40004,5022,4012,10055,}, +Z15N1734 ={ 709169,}, +Z15N1735 ={ 709169,}, +Z17N181556 ={ 356350,10094,1,11064,16845,1,999,1,40969,4,25043,13133,1,999,1,16963,17943,43447,19917,999,1000,10965,7793,40,66,894,39,9835,11039,999,3962,}, +Z17N181557 ={ 357349,9095,12066,15844,1,41973,26043,13132,16965,16942,43448,21916,1,11967,7789,107,894,39,9835,11038,2,4960,}, +Z17N181569 ={ 356350,10094,12066,15844,1,999,40970,4,26043,12133,999,2,15964,17941,44448,20916,1,999,10965,7792,106,896,38,9835,11038,2,3960,}, +Z18N202736 ={ 352221,7993,1001,13990,6991,998,84045,3031,12924,1,1998,2,2135,11013,2,208,2,1679,1002,10350,998,1776,1961,39,4867,27,1,16366,1631,5189,199,801,199,1202,2432,1,14187,1398,602,398,14019,1855,2,3064,1000,1800,168,84,3617,8084,2,3234,7663,9122,1,7019,1,}, +Z19N1731 ={ 135627,96617,1001,5122,15056,2,876,2143,3,4061,1062,1905,842,155,1000,3088,16240,1002,22294,2678,1,3048,869,1131,868,4508,12064,5353,1960,227,2,769,3133,3003,3478,85,1965,1012,517,1000,437,2,3051,618,313,376,1001,664,1008,866,143,857,101,1,41,13,2905,1,12059,1,18531,9581,754,565,1998,2537,286,655,58,289,1784,2,3353,9046,1001,2866,10173,1,6769,1,8126,28,11745,2,5058,5116,1777,15030,5084,16060,633,1001,18586,19961,3914,998,2884,3966,1,7263,435,7581,1,3059,1,2883,33002,1000,14076,2492,14048,16484,5765,1734,20080,4335,1,999,1,5500,1999,5161,998,1951,1,12278,2910,2,4735,11532,2999,11858,10928,844,1396,552,4235,1,2079,1,53928,}, +Z19N1732 ={ 226317,27156,2,1998,16382,3737,19132,1,3149,1,35996,17279,6703,215841,1002,21442,24018,14558,1,18479,15114,12878,4001,23,2112,2144,3161,3581,3425,4134,5890,6844,138,2805,1,2835,2252,119,999,883,3155,1048,9519,4947,3958,484,2,2606,2995,4017,3921,1469,1,998,10023,1030,467,1015,8556,1,722,12932,1338,}, +Z19N1733 ={ 275592,75558,283564,1,54753,3159,12140,4892,6981,9893,3155,2048,23511,9406,12053,10039,14993,}, +Z2N1732 ={ 103543,948,12087,22826,1,17043,15111,743,47031,27120,1002,3179,1,21981,998,6623,11440,8885,17146,12895,6150,3751,1001,5118,7797,1001,61119,7884,1,238,761,1,238,30710,19090,2,55887,37334,8044,87957,9930,1000,}, +Z2N1733 ={ 104491,12087,7764,15062,32898,8073,25814,13145,24000,850,2269,1002,3181,5596,11246,9954,1262,1544,979,6419,10623,3302,23882,5159,6151,4751,5119,5163,2634,2000,903,59217,3825,4058,2,238,1000,20830,9880,16966,2124,3364,9676,4161,3177,3915,16034,3943,11619,31971,128,6235,7046,4028,10598,10317,101,5493,9492,5956,19566,6476,937,3895,2947,2196,581,420,578,4374,8847,1083,3073,6918,1000,4047,2835,26844,3960,4154,15925,50923,}, +Z2N1734 ={ 277433,203340,7059,12923,100021,91713,}, +Z2N1735 ={ 114923,1000,8420,523,95,382,521,1,20988,2053,11021,13953,6494,2,1580,16354,5880,1999,13719,18544,4733,148,851,1000,5285,2006,1756,2000,7233,2,975,3037,977,8974,30,1235,1,1522,7420,10622,20096,998,1884,4205,1003,21844,3497,5538,16999,1001,1,45039,1002,23125,2002,6307,17991,2548,5487,947,48,914,40,959,2058,3010,1030,670,1343,999,1820,2,147,3028,4913,1,3031,11004,1000,2945,998,1748,27164,3116,11562,128,18309,9598,10317,101,5493,2579,5914,1082,5872,4124,951,1022,2961,10509,547,4020,1844,2,63,2047,2786,2948,1774,1,195,224,1001,13799,1,4154,6919,1000,4046,1,2834,26845,1,3959,4154,16925,6069,26925,3973,8992,3964,999,1988,3031,36,5966,6030,3973,4992,}, +Z2N2040 ={ 087696,3966,66,15010,11998,31039,1172,4934,1886,24970,8141,1055,2792,9179,1,49785,59963,93081,1,29993,10102,174854,1002,8142,2991,6994,40,148471,1,5036,1000,977,4980,976,1,6014,2027,6989,11992,}, +Z2N2047 ={ 190879,255951,355465,5014,22007,}, +Z2N2653 ={ 832334,1,5978,1987,5023,5017,3957,2027,1984,}, +Z21N1732 ={ 193216,16002,5206,1,999,1,980,796,201,5866,5950,2025,111,7928,74,1946,4966,17027,975,23,977,19002,1000,2022,12950,1,36,5923,2,53,10924,18991,1,156,6947,1033,1001,842,1,3089,1,15014,1001,3144,1,9921,989,999,1118,2826,77,923,76,1,6038,1002,947,124,820,125,18,857,125,19,36,3978,1,1735,10124,1001,1876,272,729,270,3050,1819,2138,848,39,39,999,2929,1094,1937,1001,75,156,598,2,2307,2,998,978,31,46,1983,46,2989,2622,26,1,237,763,238,2,1132,817,2,2941,3032,2927,4906,5180,1914,998,2908,1201,2000,4818,2196,3873,4092,897,6159,1949,8840,3017,1,2943,1000,13116,1,3273,611,22,5083,1,269,1,4742,1889,24,246,117,615,268,1117,4631,1,6023,336,1,1905,1774,2,26,224,779,231,5944,3111,935,674,324,796,248,753,247,937,792,1187,1001,857,3859,1001,1362,3780,1,1221,2655,1000,83,1980,1,20,3900,1992,164,187,913,73,1,925,74,1,2684,3151,838,3974,3020,212,23,75,1702,1001,2049,2,151,848,999,132,2128,688,332,1,677,4,1978,1310,724,1000,275,2010,1684,26,1944,97,1,3051,909,92,839,1030,25,2988,3019,410,556,415,552,33,414,598,388,1,4973,584,9379,1923,1,86,970,6,1962,6037,17,1977,2029,2982,2986,4019,4009,6995,}, +Z21N1733 ={ 193216,16002,7983,201,5866,5950,1025,1110,7929,74,1947,4964,18003,23,977,19002,1000,2022,12950,1,35,5926,53,10924,18991,1,156,6947,1033,1001,843,3089,1,15015,1000,3144,1,10910,2117,2826,76,1,922,77,1,6038,1002,948,123,820,124,876,126,18,36,3978,1,1735,10124,1001,2148,729,270,3050,1820,1136,1849,39,39,999,2928,1094,1937,1002,75,156,598,2,2307,1978,31,46,1983,46,2989,2622,27,237,763,238,1134,817,1,2942,3032,3928,3905,4180,2913,999,2908,1201,1999,4819,2196,3873,4092,897,5158,2950,8839,3018,1,2943,10560,3556,1,1426,27,886,934,50,18,73,471,21,5083,1,268,41,3,44,2376,2280,1889,24,246,732,268,1117,3632,465,534,483,4540,1337,1,1905,1774,2,26,234,990,218,1960,8,45,979,22,2723,244,976,1890,609,326,998,796,249,752,247,937,792,2186,859,4329,33,498,1362,2089,1691,1,1221,2655,478,521,84,981,1020,3900,444,1142,406,165,186,148,765,73,1,998,2686,3151,838,435,3539,605,2628,22,75,258,433,421,1,589,1001,3050,999,132,296,1830,690,332,1,677,4,1978,1310,724,1000,447,1838,1231,453,26,1943,97,2,3051,380,529,91,840,1030,25,1989,4018,409,557,415,553,32,414,598,388,1,4557,416,9963,1923,1,57,27,977,1000,963,6054,1977,2029,2982,2986,8027,1,6995,}, +Z21N1734 ={ 528713,1026,885,985,17,74,4886,1045,13029,1017,11027,1966,1027,21,3943,7998,6972,3982,6046,6950,10993,4145,3838,15060,3068,}, +Z21N1735 ={ 524727,1001,3983,27,886,1,984,91,4886,998,47,13029,1017,10029,998,1960,6,47,948,31,22,2966,3,50,924,11102,3868,33,1,965,35,2085,862,6047,6950,1143,904,998,1001,6947,3145,3983,854,1,6066,8994,999,3069,4953,1000,1958,1002,4025,1960,1000,}, +Z23N1731 ={ 108690,30925,998,23599,1000,4312,3,972,3671,999,12057,5927,29,382,1001,999,1,2656,2025,6028,1001,4389,1,6573,916,1001,2039,4,5112,16278,126,1001,999,1,5435,5022,7475,461,2032,2963,76,11010,963,955,11051,1012,1997,2932,21,632,335,2052,2015,1,7936,7180,5461,1000,33898,15083,2,997,3,13569,1,2238,1003,16663,24923,1000,22592,1001,8609,1,19189,1,2125,19725,995,9304,1,26888,11849,6321,770,2,230,768,2,39172,1000,17710,997,999,5071,1,11336,2743,2,999,18849,1,314,1684,316,3803,7281,7853,997,9722,999,6085,26920,17200,6912,1000,}, +Z23N1732 ={ 164194,1,17016,2968,1000,6067,2070,847,41,1,109,849,42,111,4945,6883,1,64,1015,1,3045,2887,207,3,791,206,1,10811,7067,3,1998,1,23894,29,2951,4167,3823,17,2047,36,1928,1071,935,104,864,71,1169,3773,1,9987,2988,2022,18,5013,2,926,5015,6118,1,9895,1000,13983,151,1,8044,3858,18184,5056,1000,3764,24972,999,77570,7739,46209,3792,22162,16060,6049,2,2827,1959,14950,999,25197,6045,8785,8276,8587,17349,1069,3822,1000,6761,2091,3,14180,999,10870,1001,12924,1002,4988,24170,1000,9908,}, +Z23N1733 ={ 164193,17018,1969,8066,2070,888,958,11982,1,64,1015,1,3045,2886,212,1000,56805,36,3934,39,66,2102,3774,14998,18,4012,1930,5014,6116,3,9896,14982,153,8043,3858,28004,24972,78568,53948,25955,1,16058,8879,1960,8076,34069,22105,30828,7761,48057,25172,}, +Z25N1731 ={ 223676,7012,10,2010,29030,1996,9998,3,17849,1,7122,13,4871,4219,4876,3124,1878,66,1,2988,3909,1034,1959,1162,3837,7170,1001,14049,1,999,902,101,5892,994,955,6012,1989,4119,1996,7004,17869,13127,7922,7075,2930,19121,3017,7962,6034,2958,21991,1879,2009,122,1,2887,2125,33906,2009,981,3055,9,991,10,1901,6070,3937,8104,3008,3015,12879,1000,979,3012,11116,9,2848,127,2,10863,1000,4116,1001,890,8105,7992,16894,2003,4009,2121,10,6,23932,2013,15981,942,57,1684,1,6017,244,18,1,10606,1990,8,22935,1,5013,1000,15153,2855,998,1948,32,4,9,4959,2188,1,912,17,983,1018,2059,2,2860,13,985,76,7973,3,5003,10957,1019,1990,4971,3005,1989,}, +Z25N1731 ={ 297711,10099,9944,5932,966,10161,20051,8889,6967,1989,4119,9000,17869,71146,20991,1879,2132,5012,33907,1001,1988,43960,19,15107,9,2976,15980,9997,7991,17894,5012,2121,10,6,23932,2013,16981,1683,1,6017,244,19,10606,1989,9,27949,19008,2946,36,9,4959,10053,9034,1002,4004,21942,}, +Z26N1734 ={ 243481,15827,4250,25225,74546,7987,9029,999,442,5584,2955,14009,28022,23009,18990,201,43888,63879,58333,17677,12041,21119,23,5952,4971,14285,}, +Z26N2040 ={ 203318,3025,2,5948,1010,445,558,998,1,12953,1163,4,4015,316,998,1000,1,8723,16,1,19,1,979,1,19,1,2777,3248,1224,2,4974,532,36,13,5238,154,2,42,23,894,2,78,920,1,79,1,24,2465,1,14,41,33,2405,7954,3,2019,1001,519,1,4387,4,48,1,2107,548,4949,304,4,19,674,304,1,23,1050,1126,1001,2032,1812,168,42001,12,1000,989,2981,2638,2022,1000,3381,4508,2001,4088,352,578,99,945,925,354,1983,1,999,1,1053,1765,3,1869,116,883,442,1722,3937,924,25,1,49,2331,524,474,551,1,3110,999,1989,1831,1,4066,13,1,18,166,1000,762,43,1,10,19,1,2019,1,400,999,1442,8214,2905,14,985,3950,1,4026,45,998,2015,1000,1850,43,1025,2469,474,1110,1014,1,855,61,1000,83,2,852,6158,2888,2,110,8827,4240,70,226,529,3297,999,800,1,999,1,1094,3799,51,1899,2224,72,928,71,2,2021,3925,2313,2,642,999,360,637,1919,17,1154,1,1796,1072,932,70,1997,2035,847,517,484,4024,1105,1,114,36,850,1113,1036,1,930,998,1890,1021,1003,1018,999,1,2980,1997,970,3176,35,2,962,36,2,3791,100,920,78,1060,1,7272,4563,2000,4983,2,462,2888,998,2001,1,1662,350,3820,3180,1097,1,3542,1016,315,687,6454,2690,9852,2452,2001,1630,1001,3021,12903,444,555,443,2591,2990,5432,34,967,2871,1715,7263,1,4041,1039,963,37,999,1619,11001,1040,1,376,584,1446,9623,1,9089,1,19,2,5952,5970,4322,4413,1003,3548,1,1553,3944,932,1,}, +Z26N2047 ={ 206342,4950,2011,1003,442,13510,4180,3316,1,7725,14,1020,2,3776,4249,5204,527,50,986,4250,157,1065,893,2571,89,967,439,10975,1001,519,1,5387,709,341,5911,5,18,673,1377,2129,1842,191,3980,40012,1989,2981,5660,3380,5509,1001,4089,351,579,98,870,1354,1984,1999,1,53,1768,1868,1,116,2326,721,3888,4377,551,1,8930,263,1820,995,1186,805,1,10,18,2,3419,8656,3905,15,7962,1044,4013,1851,6539,600,8006,8890,5474,2529,3297,1799,2,2093,7972,1001,8977,997,359,1574,2156,4867,3,3032,3365,2611,2,1150,1962,2967,887,5044,4977,969,3177,1034,3794,100,920,8411,5563,5983,463,3887,3014,651,4170,3179,1097,1001,1541,1334,1683,6456,2691,12300,4634,2,3020,12903,2442,1560,31,3990,4466,1966,1872,1715,7266,3040,3001,37,999,1619,11001,1,414,625,1,1408,10620,2,9089,22,5951,5971,4323,8963,1,5496,933,}, +Z27N202736 ={ 356698,8039,1000,956,958,44,30629,1,479,1,3504,1473,612,1,371,628,1,2956,2056,2354,2547,3065,8040,1002,3286,1697,272,5974,697,304,1019,1,4662,9103,1001,1989,7017,1000,2994,2906,23,3473,1000,3541,1,974,4501,13012,8482,1,1018,1502,999,12590,1,1904,78,922,79,8406,1,533,1000,2049,7412,1595,1,465,3922,1061,2,2946,999,6574,1,4499,1512,975,2516,7486,10501,1,4514,1000,1472,916,1587,1,3433,3065,985,3543,5988,3415,1,2019,1,12559,999,7070,2,8935,12144,1,4914,1063,7026,7971,1000,}, +Z29N1731 ={ 360203,2007,2009,4970,9031,4952,16,11001,38,961,15971,5114,879,5010,2003,1000,7078,2060,1000,2174,7682,4374,2770,1164,714,1001,6284,827,2,2025,1000,2845,9999,1,6999,1,984,4321,14,15,986,5004,5006,3011,4003,5649,1999,5022,3121,1000,872,1947,8180,818,5150,6046,96,1860,6,3112,733,5415,782,187,1,18,2,2886,1019,19,102,10,869,131,2719,2273,888,1983,2137,42498,2006,18004,}, +Z29N1732 ={ 205640,282943,5015,5988,1036,29215,1995,6965,3983,2031,4985,11918,1,12972,2912,1007,10996,4080,1998,12132,4864,7133,1796,999,11068,2993,31,8103,1000,1844,6976,1002,3993,3986,4982,}, +Z29N1733 ={ 488584,5014,7024,39175,2983,7016,24891,2912,16082,13131,5864,7133,2795,23195,2843,14958,}, +Z3N1731 ={ 336125,4992,23,10990,11999,1021,6975,1993,}, +Z3N1732 ={ 345150,10004,6015,3996,}, +Z3N1733 ={ 287607,}, +Z3N1734 ={ 098520,13167,1684,9427,929,12871,15761,6020,18241,7741,12011,8999,11167,2976,6065,7046,29025,1986,89987,11003,25008,10049,36893,9997,3673,1232,7067,708,219,9746,5086,91,1000,4947,7089,20701,6298,1002,8038,40024,5019,1864,2081,78,8696,1099,1977,6115,6876,9138,18027,3126,37982,38950,21842,18118,}, +Z3N1735 ={ 329135,40978,13017,4987,22996,}, +Z3N2040 ={ 098520,6154,1,1680,999,33,4140,160,925,1056,703,256,26,131,1,588,254,24,99,745,999,225,40,597,3382,46,1,941,48,23,1859,1000,108,1,1739,1,77,52,1,100,1868,1002,145,868,740,1186,1,17,169,753,1,1000,77,178,857,156,20,1988,1938,2684,1098,202,701,96,202,1821,4856,2161,1000,2859,5974,2,998,11267,7727,14,987,13,2271,6740,1003,997,6985,2013,8994,1000,1,173,2977,999,42,2821,2202,1000,935,1,1145,3944,778,3,220,19,1,7882,3872,1001,4131,875,7138,1,4124,1987,3733,13005,1,14003,1000,11996,1001,13762,2220,776,224,2269,5513,2985,1,5013,2489,707,1,999,1001,3786,3026,477,1,1492,1994,45,2166,2846,980,981,498,1000,514,1975,17,26,1492,3459,70,987,2948,31,173,3309,476,1,64,480,1481,2984,990,452,2078,1,486,4426,999,567,3571,1,1419,3467,1000,2535,2528,1001,480,549,2,2906,6081,2,12626,1998,297,3068,2,6926,3672,1,1233,896,1,5042,1074,13,1,39,1,708,2,217,4752,1,1000,311,551,3131,987,439,1,518,40,1985,1116,1,89,1,908,2,89,1,2735,3213,1299,5790,3,217,11470,1531,6479,1505,2564,1019,1210,1002,2189,4848,5749,3398,10602,6051,1344,5007,6992,1882,1,979,1,998,759,2282,1,1862,2081,76,1,1829,1,209,1,788,2,209,1,23,748,2211,3675,99,1977,1001,1288,1649,53,945,1180,1,3859,1,1000,2014,8135,1003,17028,999,1000,1,3126,8998,5948,3976,18,17040,1001,16975,11990,997,3,6751,2235,999,3752,1,10981,2248,1,1823,1000,1036,1,16,1899,2976,998,2083,82,891,27,84,2011,6014,1037,6001,1,}, +Z3N2047 ={ 098520,6154,1,2712,966,3174,160,925,1056,703,256,158,866,843,1,253,971,637,3428,13,929,1930,100,2747,2,77,52,101,1867,3014,743,185,1,16,170,2866,156,20,1988,2939,2684,96,1001,1201,1819,3858,2161,2859,6973,12268,7727,14,3271,8740,6985,2000,13,10168,3976,2,40,2821,2202,1000,935,1001,145,2944,1778,223,20,6882,3871,6133,1875,5136,5128,1986,4731,11007,1001,14003,1000,11996,1001,15983,4267,15002,708,9784,3203,5786,1518,5025,6669,3308,2021,4907,3078,1,4912,1566,9459,6063,479,9541,12625,1000,1296,3070,6926,3672,1,1233,894,3,5042,1074,13,1,39,1,708,219,4753,1002,309,550,3133,944,42,999,1984,1116,90,1,909,90,1,2735,2212,2300,5792,1,218,11470,8009,3069,3018,211,1002,2189,3848,6748,3399,10602,6052,343,6007,7993,881,1,979,1,1757,2281,1864,1157,924,1906,998,236,748,2211,3675,99,1978,2288,701,948,2178,2860,1002,4011,8139,18028,3127,8998,6948,3976,19,18040,16975,11989,1001,7750,1236,999,3753,997,9984,3249,823,2036,1,16,1899,2976,3082,81,891,27,85,2010,6014,1036,5002,}, +Z31N1733 ={ 473203,}, +Z33N175404 ={ 102340,1994,1000,1,19032,10021,15136,3,2777,2,1347,2,934,998,66,4015,2752,5146,3930,5186,741,1893,2393,11720,10915,1000,1,5297,3,7985,3755,999,3040,1001,5156,15992,4809,1224,999,6026,3754,998,28256,2000,21989,12994,1003,9689,1001,18290,23,974,18714,15314,2959,2006,1709,1,1999,17299,11701,1,999,17997,35994,999,12000,1,1316,2001,21998,2684,1003,12326,2,669,1,998,330,15014,24014,999,1603,2,7419,1,1000,999,14153,1017,1001,1382,997,1,5571,1057,2,7028,2937,973,2078,2906,1015,1045,354,1509,1160,1024,1,921,1000,1932,108,26,919,8011,46,957,978,2,1963,3021,65,1987,5959,3030,1000,3024,2,7969,998,7019,3001,7015,1001,2020,}, +Z33N2047 ={ 102340,1994,19035,11019,1002,14134,1,1779,1,2348,1936,7832,3146,4929,5186,1741,895,2391,11720,17214,7987,3755,999,2040,1001,6156,15992,4809,224,9026,3750,28257,1000,22989,12994,3,10690,19290,20,977,18714,15314,2959,2006,1708,18300,12701,1,999,16998,36993,999,12000,1,1316,24999,2687,12326,2,669,16343,24014,1000,1602,7421,1,1999,1,14152,1017,2381,6571,2057,5030,3910,2027,1050,2907,1015,1046,353,1508,161,1025,998,1923,1932,108,27,917,8012,45,1937,1,1963,3086,934,1053,5959,3031,998,3025,1,9968,6019,999,9019,2021,}, +Z33N324 ={ 102340,1994,1000,1,19032,10022,1002,14133,1,1779,1002,1348,1,933,1001,64,6015,752,5146,3930,5186,1741,895,2391,11720,11915,1,5298,2,7985,4754,1,3039,1,6155,15993,4809,1224,998,1,6026,4752,2,28254,1000,22989,12995,1002,10689,1,18290,23,974,22,18692,15315,2958,2006,1709,1,1999,17299,11701,1,999,1,16996,36994,999,12000,1,1316,2001,21998,2684,1003,12326,2,669,1,998,330,15014,997,23016,1000,1604,1,7419,1,1000,999,14153,1017,1,2379,3,997,1,4569,1002,1057,2,7028,912,2025,973,2078,2906,1015,1045,354,1507,162,1025,999,922,1000,1932,108,26,919,8011,46,957,979,1,1963,2087,934,65,1987,5959,3031,999,5024,1,5970,998,7019,1003,1998,7016,1000,1021,}, +Z34N1733 ={ 391463,9104,2874,1019,21,3021,2934,2117,2076,3802,4110,5071,2198,1807,2016,6953,2208,1001,3768,1989,611,3436,3544,2204,3291,976,1,5754,2196,2994,3954,4036,115,1,12873,2068,18,1,13,61,4891,915,687,2427,556,2063,247,94,2573,517,2820,4008,9165,889,7989,108,12984,1891,1090,5987,6669,220,98,4892,1810,969,982,19,6205,8,3970,2969,10,8912,494,4971,1058,5485,458,1546,1509,396,3566,2027,4024,6404,14042,3954,8027,7979,3015,2942,2052,962,6994,4045,}, +Z34N1734 ={ 385338,6125,9106,2872,1040,3020,2935,7995,4110,25022,15075,11921,6990,1115,1,14959,75,6944,1976,15944,6099,8986,36610,7206,6957,6366,3040,15423,38027,11996,8009,}, +Z34N1735 ={ 369374,1,6002,3977,1,5983,1189,4936,6080,959,2066,2873,1019,21,979,21,2020,2936,2116,2076,1000,1902,900,379,3731,9,4011,1053,2196,1807,2525,492,1,506,1008,1015,3422,582,1626,1001,3768,2600,388,3048,9,571,999,2965,1204,3291,976,1,516,1000,4237,2197,2994,201,798,2955,4037,114,1,1709,1,999,2,3983,2185,1,3993,2068,18,1,75,4890,914,1,687,451,549,450,977,557,2061,247,1,94,2573,517,532,2000,288,4009,3065,5961,1,137,889,8097,892,11970,122,1890,1091,4959,1028,2935,1023,2711,219,99,4892,1810,951,18,983,17,5213,993,2979,999,2969,10,3388,2979,999,547,1,1492,2015,2956,56,2,6484,459,1546,1905,602,1962,1003,2026,4024,986,5418,3143,1,979,1008,999,4990,1893,2,1027,2000,1954,980,2011,1019,964,3053,1,2989,965,1021,968,987,4063,942,4052,962,1,979,2061,3953,4045,}, +Z35N1732 ={ 214489,16004,2111,1,12050,842,159,1997,2870,1116,2995,7879,478161,1001,2984,1000,14965,1001,14958,2,29840,962,37,1110,1,2966,985,}, +Z35N1733 ={ 214489,17003,1112,12893,57231,154986,90120,102797,90043,5985,13965,1001,14958,34917,}, +Z35N1735 ={ 298616,4112,1964,45720,5339,15936,7740,25011,2989,9259,1995,15013,1,6017,11699,6303,2,52952,8985,11956,14236,727,1262,10018,1574,415,2711,257,4619,23,4953,7,414,998,1600,3011,1,377,24,1732,1227,5631,394,3616,6135,3837,4012,9162,1001,8043,2002,20921,1990,2093,}, +Z35N2047 ={ 339640,84775,50291,78968,95957,127900,}, +Z35N324 ={ 777530,}, +Z36N1731 ={ 282470,14954,1001,9029,1,28073,7919,3026,3930,8963,13030,2978,1,2153,10006,4838,9252,1,1946,2821,5248,3054,1,5968,626,3410,1000,1616,6044,282,746,1000,17312,1948,1001,15625,2426,2980,7795,1,1985,977,5953,96,213,2572,4390,2048,641,2103,1989,900,5930,1000,7188,1942,4119,1899,3844,1,55,1001,216,6912,930,1098,1001,928,3135,1770,1122,6947,1970,3101,1002,2877,1928,3044,3136,3855,21013,11158,1,21807,24179,26990,101,7869,5016,5245,30051,1960,3733,2148,1,1012,739,1220,1000,2752,6153,305,695,305,616,3950,5270,902,1,1778,4301,1,763,2955,73,97,4871,1001,221,861,2881,5085,4363,1548,1001,3151,810,328,1,8029,1,882,2040,3046,825,3016,1,2231,1084,1018,4566,68,8262,1,4742,2281,1000,3973,1917,3792,226,3802,9180,3856,1,4957,17076,1000,16011,56,}, +Z37N202738 ={ 288386,998,119,2,16798,2,13237,15038,5,996,4,28709,1,999,1,67036,960,1333,2,666,1332,1,17662,2005,1003,296,4,4759,1,19287,4001,16168,4,31918,1999,13042,1,93782,997,2003,30955,1003,2875,17211,4693,1,35093,}, +Z37N202740 ={ 288384,2,119,998,16800,13239,15038,1001,28712,2,998,2,67035,961,1335,667,1331,2,17661,2000,308,1996,3762,2,19287,20169,30922,16041,1,93782,1997,31957,1004,2875,17211,4693,1,35092,}, +Z37N202741 ={ 288384,2,1117,2,16798,2,13238,15037,5,996,4,28708,2,999,1,67036,960,1333,2,666,1332,1,19970,699,297,4764,999,18288,4001,15168,31922,2999,13042,1,93779,3,3001,30954,1003,1875,18211,4693,1,35093,}, +Z38N202738 ={ 294824,2997,58796,1997,11260,2,4477,999,36311,1002,636,1558,442,558,28529,1002,5884,2,13438,1,999,2,18508,1,999,1,28079,1,1998,5,59443,1997,43563,31057,2007,1994,29285,2,998,3,7087,3,1657,1,1000,997,52053,999,59061,999,11937,}, +Z38N202740 ={ 297821,58796,997,12262,4476,999,36312,1002,636,1559,999,28529,2003,4883,2,13438,1,999,2,18508,1,999,1,27080,998,1999,6,59443,1997,43563,31057,4001,29285,2,998,2,7091,658,339,660,1001,997,53052,4,59057,999,11937,}, +Z38N202741 ={ 297821,58796,1997,11260,2,4477,999,36311,1002,636,1558,442,558,28529,2003,4883,1003,12436,2,999,2,18508,2,998,1,28079,1,1997,6,59443,1997,43562,31058,4001,29285,2,998,3,5090,2657,340,661,1997,1004,52048,4,59057,999,11937,}, +Z39N1732 ={ 333736,}, +Z39N202737 ={ 172567,5065,1986,1952,3593,2013,2429,1994,970,1582,1000,1024,1401,3631,1933,1049,1000,5405,3004,542,5444,1,3969,1,589,1,72,2364,5566,2404,4026,1971,3021,581,1000,5390,21,3006,91,733,1000,1280,29,1824,162,845,98,535,1,3202,1191,1969,168,1469,2005,230,165,1,2813,1308,883,117,838,1,75,914,3980,1,891,176,847,274,1706,129,829,250,1056,1032,999,774,104,1865,67,1,984,864,111,100,789,111,1,100,796,90,959,139,1007,2927,192,921,78,2048,1000,2711,206,781,1023,1010,218,1823,1,859,127,873,1010,2010,1010,1,949,7,1391,582,1,2408,2685,1487,2503,19,186,118,1166,5007,1007,1978,993,980,756,1298,993,590,1356,61,297,1023,657,34,1296,531,1,859,13,1323,947,40,307,1681,1282,1166,171,310,36,52,466,807,1032,20,213,281,185,550,331,373,272,82,1,311,58,38,11,901,44,37,18,391,1,1405,79,96,257,76,1136,1,141,1278,1,141,593,213,153,1530,719,1,261,480,259,16,222,446,81,31,301,554,747,61,289,247,136,28,1,108,410,570,1160,7,337,1712,981,281,60,721,124,148,852,149,839,69,1090,287,430,20,238,1007,765,75,128,2321,1,1662,918,909,1,1018,1083,64,864,1,144,10,2352,233,2,134,847,3022,973,3304,531,1524,393,1,3678,322,6091,986,480,520,2519,2086,324,2551,442,650,1,21,4021,1022,11,570,710,4281,1362,665,2687,2262,469,1941,637,1001,947,1742,1,4249,417,53,1,586,1932,1778,2201,88,2903,450,341,1,2016,287,894,2457,3645,277,1424,406,2167,88,2754,585,1287,1387,733,870,1291,612,3175,268,379,173,94,1,137,207,3360,285,1097,1250,406,157,1,2839,246,722,2269,364,416,131,864,137,1076,2065,5,1295,393,11,220,363,26,995,403,3152,844,150,2238,235,1,987,2377,2155,255,1000,2988,227,1,1408,153,811,609,2431,1595,375,2012,6,172,841,2148,3408,1,1000,1446,616,984,952,55,1935,1700,767,97,2479,666,899,2150,251,1711,1751,1,95,182,1001,654,370,1228,393,73,905,396,797,57,91,1645,1074,173,1009,380,620,102,5275,615,101,1266,599,410,501,1860,235,2037,1887,4081,2035,712,1,5259,2936,982,1007,2982,1037,1106,1,3896,1061,1912,2,1034,114,1,3945,914,1,26,2128,5877,1063,2953,112,1,2939,1,2779,1299,724,1137,67,3092,1894,1025,1931,171,1,828,1075,1772,1188,1152,1643,214,971,8065,1926,2003,3078,6010,906,3107,6016,1000,3009,40669,12980,}, +Z39N202738 ={ 172567,6066,985,1952,2593,1000,2013,2429,1994,970,1582,1000,1024,1401,3631,1933,1049,1000,7401,1008,542,5444,1,3969,1,589,1,72,1000,1364,5566,2404,4026,1971,3021,581,1000,5390,1021,2006,91,733,1000,1280,29,1824,162,845,98,535,1,3202,1191,1000,969,168,1469,2005,230,166,2813,1308,883,117,838,1,75,914,3980,1,889,2,176,847,274,1706,129,829,250,1056,1032,999,774,104,1865,67,1,984,864,111,100,789,111,1,100,796,90,959,139,1007,2926,1114,78,1,2047,1000,2712,205,1781,23,1010,218,1823,1,859,1,126,873,1010,2010,1010,1,956,993,398,582,1,2408,2685,1487,2503,19,186,1118,166,5007,1007,1978,993,980,756,1298,993,591,1354,1,61,297,1023,657,48,986,296,531,1,859,13,1323,295,652,347,654,1027,1282,1166,171,310,36,52,466,807,1032,20,213,281,185,550,331,373,272,82,1,311,58,38,11,2,579,320,1,43,37,18,391,1,1405,79,96,333,1278,858,1,419,1,141,593,213,153,1530,719,1,16,245,480,259,16,222,446,55,26,31,301,554,747,61,219,70,247,136,28,109,892,88,1161,6,337,1712,981,281,61,720,124,148,729,123,118,31,839,1,68,1377,430,20,238,1007,11,754,74,1,128,2321,1,1662,917,1,1909,1,18,1147,864,1,72,72,10,2352,233,2,134,847,1998,1024,974,3303,531,1524,393,1,1999,1679,2,320,6091,986,480,520,2519,2086,324,2551,442,650,1,21,4021,1022,12,569,710,4281,1362,1665,1686,6,2257,1470,940,587,50,1001,947,1742,1,4249,416,54,1,586,1932,1778,2201,88,2903,450,341,1,2016,1181,106,2351,3645,277,1423,1,405,2168,88,2754,584,1,1287,1387,733,870,291,1000,612,3175,268,379,173,94,1,137,207,3360,285,1001,96,1250,406,157,1,2839,246,722,2269,364,416,132,863,137,1076,2065,5,1295,393,11,220,363,26,995,403,3152,844,150,2238,235,1,987,2377,2155,255,745,255,2988,227,1,1408,154,810,609,2431,566,1029,375,2012,6,172,841,2148,3408,1,1000,1447,615,984,952,55,1935,1700,767,97,903,1576,666,899,2150,252,2706,756,95,183,722,278,654,370,1228,393,73,905,396,797,57,91,1645,1074,174,1008,380,620,102,5275,615,101,1266,599,410,501,1860,235,2037,1887,4081,2035,712,1,5259,1,2935,982,1007,2982,1037,1107,999,2897,1061,1912,2,1034,114,1,3945,914,1,26,59,2069,6878,62,2953,112,1,2939,1,2779,1023,276,2,722,277,860,67,3092,1895,1025,1930,73,98,1,828,171,1,903,1772,1188,1153,1642,214,971,8065,1926,2003,3078,6010,906,3107,6016,1000,3009,40669,13981,}, +Z39N202741 ={ 172567,6065,986,1952,2593,1000,2013,2429,1994,969,1583,1000,1024,1401,3631,2933,49,1000,7401,1008,541,5445,1,3969,1,589,1,72,1001,2363,4566,2404,4026,1971,3021,581,1000,5390,1021,2006,92,732,1000,1280,29,986,838,1007,98,535,1,3202,1190,1001,969,168,1469,2005,230,166,2813,1307,884,117,838,1,75,914,3980,1,891,23,152,1122,1706,129,829,250,1056,1032,999,774,104,1865,67,1,984,864,111,100,789,111,1,100,796,49,41,1098,1007,2926,193,921,78,2048,1000,2711,206,781,1023,1010,218,1811,12,1,859,1,999,1010,2010,1010,1,940,16,1391,582,1,2408,2685,1487,2503,19,186,1118,166,4999,1015,1978,993,980,756,1298,993,591,1355,61,297,1023,657,1034,296,531,1,859,13,1323,947,40,307,654,2309,726,440,171,310,36,52,466,807,1032,20,213,281,185,550,331,373,272,82,1,311,58,38,11,900,45,37,18,391,1,913,492,79,96,257,1354,858,1,419,1,141,594,212,153,1530,719,1,261,480,275,222,446,81,31,301,554,747,61,219,70,247,136,28,109,460,432,88,1161,6,337,1712,981,341,721,124,148,729,123,149,839,1,68,826,551,430,258,1018,753,76,127,2322,1,714,948,918,909,1,1018,1147,864,1,72,73,9,2352,235,135,846,3022,973,2304,1531,1524,393,1,3678,2,320,6091,986,480,520,2519,2086,324,2551,442,650,1,21,4021,1022,11,570,710,4281,1362,1665,1692,2257,469,1941,637,1001,947,1742,1,4249,417,53,1,586,1932,1778,1289,912,2991,450,341,1,2016,287,894,2457,3645,277,1423,1,406,1000,1167,88,2754,585,1287,1387,1603,1291,612,3175,268,379,173,94,1,137,207,3360,285,1097,1250,406,156,2,2839,246,722,2269,364,416,131,864,136,1077,2065,5,1295,393,12,219,363,26,995,403,3152,844,150,2238,235,1,987,2377,2155,255,1000,2988,227,1,1408,153,811,609,2431,1595,375,2012,6,172,841,2149,3407,1,1000,1062,384,1600,952,55,1935,1701,766,97,2479,666,899,2150,1962,1283,468,1,95,182,1001,654,370,1228,393,73,905,396,797,57,91,1646,1073,173,1009,380,620,102,5274,1,615,102,1265,599,910,1861,235,2037,1887,4081,2035,712,1,5259,1,2935,982,1007,2982,1037,1106,1,3896,1060,1913,2,1148,1,3886,59,914,1,26,2128,2938,3940,3015,112,1,2939,1,2778,1300,725,1136,67,3092,1895,1024,1931,171,1,828,1075,1772,1188,1153,1642,214,971,8065,1926,2003,3078,6010,906,3107,6016,1000,3009,40669,12980,}, +Z4N175404 ={ 292676,1046,9914,5113,7720,161,798,9391,9626,998,140,4924,17296,2,18679,1,23309,2,8027,12018,2761,262,1,737,262,1,2889,1,3874,8014,2,4132,1000,6930,11081,6996,2,}, +Z4N2047 ={ 293676,46,9914,5113,7679,42,160,10188,9626,140,5923,17296,16498,1023,1160,1,13873,989,22,4931,2014,1,50,997,434,3438,1,1093,61,748,52,1068,37,1,528,5492,1001,3103,3042,380,2762,261,1000,1,2889,1,1377,2498,2666,4922,425,3494,640,360,639,5506,14,1411,5415,1152,145,2838,1531,4502,2494,2,450,5069,999,5060,1020,1,2899,1,2129,1,51946,6972,953,21940,45,953,7056,12951,8021,3133,999,893,1000,2288,5042,2667,1,4090,999,4054,941,14,2,45,14014,21032,14132,1000,3870,4106,12908,2013,2010,1027,2043,998,4967,}, +Z4N324 ={ 376301,1023,1,16022,11,12,4930,2014,1,50,997,3872,1,1093,61,748,53,1067,38,999,5021,1001,998,2105,3041,8673,4163,998,2,4922,2919,997,1003,5157,1,987,6840,153,999,1145,1838,6033,2946,5068,1,6059,1,1019,1,2899,1,2129,1,32619,1,18013,312,7973,953,20728,46,1165,46,953,7056,12951,5784,2237,3133,999,222,439,232,768,232,2289,5042,2666,1,789,3300,1,5010,43,942,14,1,45,134,1,2053,3972,7854,1576,1068,4960,14429,542,4041,8547,1000,3871,4106,1,12907,2013,2010,1027,3042,1,998,3967,}, +Z42N1734 ={ 298656,52,7005,6006,917,1011,8,2072,3820,1103,1990,2897,2073,126,920,3013,1878,70,980,1940,1136,1051,1,1049,909,92,3734,238,762,1020,1262,1724,1169,1,5101,5720,3308,1,1000,4990,999,1720,1,3004,275,1,3710,999,303,3011,682,318,695,5974,3329,6665,5339,8002,2649,1010,4853,1,1000,2139,1878,1133,1837,154,4836,172,877,31,93,2884,3095,1,921,78,950,1,1035,868,1079,6910,15050,471,3523,24,999,5989,3463,8995,1000,1573,1,14950,28,1036,6158,1174,607,2066,90,1,11,1237,1000,669,3112,1,979,1,47,3767,414,1000,1771,3076,1156,1769,19,1,5237,1814,2862,1026,1,961,38,988,4022,1,292,4017,2,1691,5313,6695,3993,14005,12993,5992,2351,4640,4361,7616,3387,6606,397,12750,1016,3245,1731,34,6235,4676,39,961,1024,2306,3660,4924,14411,11985,5731,4265,18002,12996,999,23986,18990,11925,2020,30,902,18,}, +Z42N1735 ={ 298656,52,7005,6923,83,928,8,1072,928,72,3820,1104,1989,1897,1000,2073,124,2,920,3013,1878,70,980,1000,940,1136,1051,2,1048,909,1002,1050,1012,35,727,1000,20,2262,1724,1169,1,5101,5720,3308,1,1000,5989,1,1719,1,3004,275,1,3710,999,303,3011,1000,695,4985,989,4329,5665,6339,8003,1648,10,5853,1,999,1,2139,1878,1133,1837,154,4836,1049,30,93,1,2883,3096,1,922,77,1,949,2,1035,866,1082,6908,13531,1519,471,2523,1000,1023,1,5988,3463,8995,1000,1573,1,14950,28,2035,5156,3,1174,607,2066,1,89,1,11,1237,1000,669,3112,1,979,1,47,2766,1415,1000,1771,3076,1156,1769,19,1,5238,1813,3849,13,26,1,959,2,38,988,4022,1,292,4017,2,998,692,5313,6696,3993,14005,12993,4992,1000,2351,4640,4361,7614,2,1001,2386,6606,397,602,398,11750,1016,3245,1730,35,6235,4676,39,961,39,986,2304,4661,3924,14412,11984,4730,5266,19002,11996,1000,23985,18990,11925,2020,30,920,983,999,}, +Z43N1731 ={ 270719,3888,2000,825,61,861,1,140,1835,2194,1001,4868,100,71,1,3894,1052,2229,939,5777,2020,312,689,312,700,1825,1,1146,3989,3192,2636,4539,2000,1781,833,9808,3219,5159,2790,12022,1782,5288,2977,10890,16794,5214,1,999,1,2755,6344,1,3982,6973,963,9724,1622,2494,7019,1939,2037,2975,1000,534,4381,2068,4008,1001,9516,20997,4422,20984,1,21606,1001,15352,1,700,998,1341,999,24641,1001,1486,2531,1000,14493,999,967,19556,4550,36434,15989,}, +Z44N1731 ={ 207353,21036,4930,3258,4022,13943,1001,13955,4824,1001,1049,17909,1000,8186,6756,2123,6085,1842,22019,31041,106397,24994,1,27,999,9044,83817,3956,8134,7979,18089,3957,}, +Z44N1732 ={ 325474,969,7069,8640,18302,1,2708,1323,1001,1755,10191,15751,1,44040,17252,1001,1921,244,958,1050,572,9392,2011,1805,3168,7834,998,173,845,181,4981,977,4991,1049,595,1002,4360,999,2042,1967,2018,4020,1834,1038,8121,1,6932,1112,1002,4906,1044,140,827,3638,8553,4808,15170,999,3477,21509,15057,13978,9009,7976,4989,596,6992,1055,6227,43,1,82,9816,2132,679,1,1373,3584,4099,4886,993,21,21,979,21,3164,4803,8135,1001,5046,11985,26965,19982,}, +Z44N1733 ={ 467646,15979,18977,14012,1,}, +Z44N1733 ={ 325474,8037,26943,1,2709,2323,1755,10191,59793,20173,244,958,1622,10392,1011,1805,12172,1026,4982,977,6637,6359,28,2014,8005,1834,1038,8122,14996,140,827,3638,8553,4808,15170,998,3477,21510,15057,22988,21607,6225,45,1,1083,8815,2132,680,1373,3584,9999,5185,17985,12984,25966,19981,}, +Z44N1735 ={ 381454,1,37007,68040,8021,999,35999,73690,10029,15013,12013,8043,22116,858,21,1,5016,7990,1964,2022,988,3056,70,929,1948,6018,976,1001,7016,11084,42,23981,}, +Z5N1734 ={ 078564,1,1965,3987,999,5968,1001,973,105,3927,21938,9158,2834,10170,5087,1972,4763,2209,13001,2840,4148,8865,21146,26029,22052,4914,25986,18,10974,1841,14001,188,1974,12993,5021,14004,28984,1000,10737,4997,8985,12995,11337,10665,19972,10363,19645,14186,123,9680,6315,671,8977,3042,8307,22014,1987,15997,10002,27026,981,9017,981,8021,3651,6128,5214,9650,9990,2406,5828,145,6617,243,4124,10001,883,1748,4258,2837,7915,111,1292,1,4676,1281,868,11,1745,1427,1544,2417,7800,3182,4985,15985,16994,1709,9000,5996,1146,2015,2964,82,2863,226,1943,1,4781,259,4738,243,80,}, +Z5N2040 ={ 074566,1000,2998,1966,3987,999,4988,1,978,1002,973,105,1002,2925,7081,1001,14856,8156,2,2833,1014,9156,5088,1972,979,3784,3209,2833,2,7233,1933,3,2837,3148,51,949,3849,5015,1,999,1,2145,17002,999,9999,12952,3078,2971,1000,3953,1001,13127,1950,2899,63,2,907,2,5146,13952,2,5978,999,18,1787,7187,1000,840,1001,6163,7836,190,1,811,1162,10844,1000,1149,5020,14003,2,28984,1000,8738,1000,6996,6284,1701,10320,2675,1,11336,8999,666,1000,7338,1,8647,3,3346,1000,638,6993,2369,13988,4658,999,7993,1999,3195,135,987,999,2842,5838,1,5314,673,328,1862,6787,4041,2170,2073,2,711,3351,654,299,4970,2041,1001,6960,6089,901,1086,1892,38,4031,2724,1002,6309,1,803,1876,2,138,1,2084,20,5078,2682,268,997,1844,6886,1,3112,2232,2001,2661,5323,1,1000,2670,998,4348,981,1000,7021,2,3649,2001,5129,1,11,2976,53,1169,2,1810,1011,3984,844,156,25,818,2193,5954,70,965,35,924,851,148,1090,1001,167,760,1020,985,2209,854,146,998,1830,1,2042,901,844,188,14,41,1923,1010,1040,1150,790,2007,1969,1001,1019,992,76,1148,883,951,797,140,71,1949,64,1942,92,1988,850,4068,76,846,76,54,893,66,948,1,886,180,6,217,1,596,403,1,770,959,1,2946,1091,1058,11,121,626,2425,1002,1543,247,774,225,170,1,713,6906,1,179,1,3179,2,3985,1670,330,1742,13243,703,295,16996,709,7989,1011,3175,1,2819,1,109,1,1036,1013,1002,2928,36,967,116,2,1859,1,226,773,1,227,11,931,1,4779,1,259,2,3739,999,305,17,920,2050,}, +Z5N2047 ={ 074567,999,2998,1966,3987,1000,4987,980,22,979,78,895,3032,8081,1002,14855,8158,3833,14,9156,5088,1972,1979,2784,4210,1835,7233,1932,2840,3200,1946,3852,4014,1,3145,18001,9999,12951,3079,4972,2953,999,13128,1949,2901,64,907,1002,4146,13953,5979,999,19,1786,8187,1,839,1001,14000,189,1974,10844,2149,6020,13004,28985,1000,10738,4996,7284,1702,11318,1676,10337,2000,9665,7337,8649,3349,637,363,8629,1371,13989,4657,999,8993,999,4317,12,987,2842,5838,1,6314,672,2191,5787,4041,2170,2073,2,710,3352,654,298,3970,3042,1001,7961,4988,100,1987,1892,39,4030,3726,998,5312,803,1878,139,1086,1019,5077,1682,2265,2844,5887,3112,2232,2001,2661,5323,1,999,3669,4348,9002,3651,1002,6128,1,12,1975,51,2171,3,4814,2834,156,25,3012,5953,1035,35,924,851,2237,168,782,1984,2209,854,144,2,2829,3041,746,160,28,55,1923,1010,981,59,151,5765,1001,1019,993,74,1149,883,1748,140,71,1949,64,1942,92,2838,4143,846,77,54,891,67,950,886,112,68,9,214,1,596,403,1,1729,1,2946,1092,1057,11,121,626,2425,1002,541,1249,773,396,714,6906,1,179,3180,2,4985,670,2072,13243,702,296,16705,291,8698,1011,2175,1001,2819,1,109,1,1036,1013,1,2964,967,1117,1861,2,225,773,170,58,11,932,4039,740,1,261,4738,306,16,920,2050,}, +Z9N1731 ={ 285495,14992,2012,10942,6112,17876,3902,143,3975,11123,5955,4862,10932,12252,7921,1,2032,5763,8106,74,926,73,13061,1864,1,1225,2714,2,999,12188,4055,831,4063,1044,1845,1273,2820,4896,315,880,999,2922,934,999,2035,2043,975,2910,977,5171,2841,127,985,980,83,798,120,48,34,799,2173,934,22,165,1977,872,902,3120,171,2820,5042,7911,1,1138,31061,1,999,707,14220,866,191,2993,1001,12810,85,8060,9916,1929,14119,10987,2027,7052,8806,9146,24009,1000,2042,9854,1,10120,999,12922,6049,999,1050,1,4961,1000,3025,3905,1085,5022,4878,2001,1118,4922,45,4994,7965,1031,988,977,22,1990,1053,914,3065,53,913,35,52,2889,40,4942,1033,1000,951,102,998,928,4033,1974,25,2996,3095,12891,6069,6943,12106,833,6106,1803,5151,7875,3927,8241,6937,956,6923,165,}, +}, + { -- continent 3 + Z1N181555 ={ 290326,24907,32528,532,4476,4445,1,32573,1941,1569,13336,1,546,2388,901,5224,1,14059,1,5069,1,999,1,4807,4072,1000,16016,916,8870,5261,16873,790,1001,49,3231,39036,11626,2123,194,7589,10960,5090,1045,1,1195,1089,2759,7938,8854,4588,926,1,4602,100,6044,1000,8791,1000,4200,6732,1,6319,1,4856,1383,1,4711,820,998,2,3967,11280,2130,971,1,14856,1808,5433,5692,1,13277,50,950,50,4892,1,16659,1,79,1001,343,5699,999,17219,128,6903,1614,18469,}, +Z2N181555 ={ 062494,1,17033,24026,1,4923,9941,2051,1117,1797,2,976,84,915,85,1092,7865,1001,11970,1,6033,217,817,182,818,4152,1001,18868,920,1041,2,11147,1971,1,999,1,7984,9098,2027,1,999,1,2023,2891,3045,1,86,2750,2206,877,1,10148,928,3971,1000,5172,1,2955,1074,1,1000,6869,1,74,1725,1,306,693,1,8328,2,3909,1,4113,732,2177,1000,676,11258,5835,113,1063,66,934,66,6902,783,3296,3635,1,1256,2832,1000,888,3313,1,2291,1726,709,137,398,465,535,5394,1351,946,3022,2057,258,1,4779,1,179,1,3523,5175,1067,3955,998,3781,1,2097,1000,2051,751,1,39,1,379,1,4152,1525,1000,918,5584,1,9951,574,6216,3718,1,1194,1315,1,999,1,2438,4475,1722,1000,2312,4534,7230,121,7175,878,3089,8925,1,538,331,1,1798,4231,1,1149,1,1658,2891,1,222,1133,1129,1001,639,2805,2,1281,2154,689,3244,2,3632,51,1435,1,1719,1,1342,1000,6703,8949,1209,578,3945,4306,949,374,5731,5719,1000,3532,1435,10226,1989,40,766,1274,266,24,709,267,24,8661,210,790,210,11029,3576,1151,281,2764,2,168,1,829,2,168,1,2093,8540,6133,1023,2,5042,3859,2121,5802,364,1,10058,1063,2531,1000,1313,26,1078,1,1625,50,8864,1,2313,3120,861,179,821,179,802,783,989,302,2,143,5583,1000,6355,61,1788,1067,1000,2,1029,1,2789,1,877,2045,1143,4161,95,817,4881,1,276,2000,5933,2,5742,3289,834,2980,1000,5047,7024,1772,2,4037,10974,1000,5252,1038,21960,4107,1,7057,1933,999,2967,10092,2,6979,1,}, +Z3N181555 ={ 223404,1,6894,14036,1000,17382,21487,594,406,1,592,1884,11625,10412,10920,28186,1,24785,9618,166,1,9925,17244,1,1281,4571,1790,2264,1261,2039,6560,12090,1853,2,3255,2774,998,9420,5793,1262,26949,101,900,1542,8932,12190,1142,1,6669,1,3338,10661,1,20388,7576,9348,9285,6718,15190,15054,1,8752,25886,7051,1001,5281,14920,9776,17166,866,1000,1,9233,1000,2973,1743,1,7133,4069,9081,1014,6966,}, +Z4N181555 ={ 208664,1,51086,15805,19247,1000,2951,1,12958,7041,1001,18568,7215,13756,1,12993,9914,2046,1001,8969,1000,2051,3920,3551,19474,1000,1,8905,1059,39937,3062,8312,2098,1060,8126,1,781,1982,2716,330,1,1264,13344,8434,3603,1044,1,22909,1,9046,1222,1001,18448,4936,15633,1000,5226,1919,10686,3491,17591,1,33213,43803,}, +Z5N181555 ={ 213345,999,1000,3064,6965,13960,14010,1079,1001,11960,17094,1001,18069,7861,3175,999,12801,52989,938,9064,2,3033,52,5916,8987,1,4264,6707,1160,923,11020,7148,6787,1,2901,4377,1000,977,5097,661,7754,319,4037,999,8036,4706,99,12946,1,203,890,8154,3785,1000,9020,191,810,190,2198,5908,1,2962,924,1024,5735,1000,2123,12297,712,861,258,3713,1,1476,2035,5931,1000,2535,10182,1,2107,7202,1,5658,6972,999,259,5807,21207,20683,14221,1833,1,44,78,48919,2081,}, +Z7N181555 ={ 162698,13097,999,10846,58141,6768,9118,12844,1000,2128,13107,4030,1000,3645,2942,85,5231,23409,22973,6968,7081,9199,5090,11024,6391,1,14662,999,6727,3953,3078,1,4573,280,1000,15703,12699,6869,5840,3923,6232,1,5462,975,9412,1,6372,13737,2,848,1,7124,4485,1,999,1,7949,1,10675,1000,2236,2613,12353,45,2073,1000,620,3881,4233,1,999,1,1019,1,18754,16289,28776,1,4228,37,963,37,12971,51763,1,6065,}, +Z8N181555 ={ 071498,8059,20891,4191,1000,8740,1000,14273,11839,6815,5913,1000,1311,4116,1501,1912,999,7036,1,4605,6391,1999,1979,2965,1,7377,3651,1026,1978,1000,2099,874,4411,17031,6878,13830,4500,1001,21911,15027,21580,1000,1380,90,1948,27521,490,22032,25784,1,999,1,24192,6764,32263,1,3619,1,23169,1001,2908,5296,1000,10620,30405,1,4724,5909,13051,9078,1151,18096,1,2935,2692,1000,29407,1000,13592,26483,1,934,25121,15111,10663,1,3292,390,3639,1001,6014,806,157,1,1782,1000,2237,1,1717,1215,8021,12858,14518,1,3599,1,42799,1,11893,169,832,17689,4512,6117,6555,8849,5058,1000,}, +Z1N181556 ={ 262834,1916,999,17545,1,3162,779,8627,761,1,10563,4173,3169,1000,1288,2560,313,1650,3009,1000,2010,14,1,9982,3984,118,3336,519,1,479,1,3945,626,9814,3128,4895,2214,8860,7107,1,8169,1,299,1,1000,3979,3882,3118,1,3015,1008,4998,1961,4028,1364,3035,1,592,6735,1049,4919,5134,1000,9119,1000,12756,2914,2,15737,1399,8897,4656,3246,7063,1217,2697,19245,8558,527,472,5075,1,5098,2967,7837,2262,5071,596,137,387,613,387,4981,1961,1690,22245,2589,3671,1534,2918,422,1813,1,7096,5133,1,923,197,1476,1000,1283,1,158,2444,11515,4832,1,229,1001,1059,1,6627,1000,3184,8489,1639,2,2042,571,6364,3621,2439,2,889,73,926,2,6628,449,1648,71,264,36,373,256,1355,1010,2989,2500,1,955,1001,8012,1230,717,282,1882,1,3441,2432,3900,5608,3578,1,10127,3808,5497,23601,432,16526,}, +Z3N181556 ={ 071399,30,22023,3932,1,7053,999,11941,2983,14026,42930,3033,2043,11969,1001,9184,27731,10207,998,229,8899,1546,1001,1136,1,844,26,3033,3953,1000,3085,4951,1134,1000,1922,1521,1,467,21,2869,1015,580,1520,7025,279,683,1,4232,11762,7228,1840,1532,673,1038,1073,13898,4023,1,918,14030,10149,19211,1000,2460,77,2904,1,3037,130,870,129,763,1272,4828,2988,1024,12502,1548,3866,277,723,2962,1,2427,4115,46,954,47,1,612,8262,1001,1883,1933,1721,3242,1000,15761,6614,1,2759,1,4938,7728,4313,1001,973,40,4203,6905,2893,1987,2009,9106,908,3993,3250,1001,18751,1,1702,4270,7093,2604,1,2331,2207,2525,5250,10919,796,2,998,2,3345,5696,998,2,253,17976,999,6187,18627,11965,196,12835,1,999,1,1468,14550,111,2,5293,1945,1,1796,1312,1619,9325,4024,763,1,5866,4216,6801,1000,8156,1,18000,999,1018,2992,1,2976,12,6006,5989,990,}, +Z4N181556 ={ 195722,27931,13697,6030,42,10984,3017,2015,1359,3569,216,818,21,2936,28,1025,4111,1869,21,4739,2479,3763,978,804,1,1014,2517,4080,998,3629,1731,1,398,9581,67,1969,999,4025,15402,2171,15972,765,1,2711,1058,5300,1,6848,11383,3490,78,253,668,79,253,4575,6487,473,13386,853,6800,5543,1,4842,16971,2841,10745,1,1473,3898,6836,3302,1859,1953,2931,1475,11328,4418,9609,306,13290,3731,1,6663,4221,3253,1144,7409,999,3167,4791,2390,305,8470,1314,9823,1,10909,1,5032,1989,2158,1,1202,1625,7,984,984,1001,1053,979,1006,1068,1,356,2563,2042,999,2977,987,10960,203,1860,7019,1892,297,9763,6085,804,305,29816,45,28890,23060,}, +Z5N181556 ={ 201383,7840,1002,19101,7083,5879,22078,999,4069,12090,1001,6919,1,11999,1,10929,1,18137,2827,45,1,10043,6252,4618,10092,4042,5929,18,982,17,9056,1,13,986,1,4952,4303,1000,590,184,934,8998,14985,4290,7896,8857,810,2270,1,5606,4193,1,6276,9043,1,8087,1597,18323,16573,1390,1578,9029,1939,77,3034,5942,3989,4060,1965,143,9867,256,1,734,8942,22353,1,2151,5895,15896,7405,6376,16137,1000,2443,1712,12364,1,18338,3629,731,243,757,243,4979,998,9485,1610,4946,1,15785,5187,12033,2438,1620,1000,3960,19016,1,927,11065,6983,}, +Z7N181556 ={ 168687,8081,15849,7166,8333,1038,1,2946,17983,1,2037,2988,3444,1,10533,14683,6762,210,5366,15368,16611,10703,41277,19309,2410,11365,17059,9583,2,9677,11880,16761,1,3025,11653,11398,1000,12173,1,13785,20121,3488,485,515,486,8084,999,5054,7331,4901,1,3722,2335,770,4797,385,1,615,16981,14625,943,17932,935,1610,4255,326,5707,1,23231,4520,378,1,3836,3207,9578,1070,168,1,831,168,1,2332,16423,1000,9027,999,1402,3084,4641,5431,1,985,2461,4405,5631,13453,2066,}, +Z8N181556 ={ 081468,6130,42923,5729,8129,1000,2265,1,27437,4986,6085,5936,3977,29368,1,54766,12464,999,60547,999,57479,34694,19028,2256,22628,999,25144,6946,1,999,28321,999,2696,7236,998,2,11803,20293,18599,45439,55094,8065,1000,4033,981,11027,5310,2349,14108,9189,18462,18951,7051,1048,14282,559,11119,1001,23117,4318,1,14499,1,}, +Z1N181557 ={ 262834,23623,24904,3169,4848,313,1650,4009,2024,9983,3983,119,8281,20677,8860,7108,8169,2,299,4979,4882,2119,3015,1008,4998,1961,4028,365,4627,6734,1050,4919,5134,999,10120,12755,2916,17137,8896,7903,7063,1217,2697,19245,8558,999,5075,1,5097,1967,12100,4071,733,387,613,5368,1961,1690,23243,5262,1534,3340,1814,6096,7057,198,3758,14118,4832,1,2289,7628,3183,8490,1641,2043,570,6363,3622,2439,963,927,6079,551,1168,1300,628,2366,5490,9968,2230,1882,3441,2433,3899,9186,10128,3808,29098,432,15526,}, +Z3N181557 ={ 071399,30,22023,3932,1,7053,12940,2983,14026,42930,3033,2042,11970,1001,9184,27731,10205,1229,623,8276,1546,1001,1137,844,155,871,2033,4953,3085,4951,2134,1922,1522,467,21,511,2358,1015,580,1486,34,7025,279,683,1,4232,11762,7228,1840,1532,673,38,2073,14898,3023,1,918,14030,11150,16605,1604,1001,2460,77,2904,1,3167,870,129,763,97,1175,7816,1024,5530,4571,1790,611,1548,105,3761,277,3685,1,2135,293,4114,1047,613,6023,3240,1871,11,1934,1721,3242,1000,11077,1262,3422,6614,1,2759,1,4938,7728,4029,284,1001,973,40,4203,6905,2893,1987,2009,1827,1143,4668,1468,908,3993,4251,18751,1,1702,4270,46,7048,529,2074,1,2331,2207,2525,210,5040,4244,6675,797,1000,2346,7695,254,3141,14835,220,6966,18627,9045,2920,197,12835,999,1,1468,9833,4716,114,4946,347,1945,1,1796,1311,1620,10146,179,1687,337,1763,1,5866,4216,1024,1743,4034,7169,1987,1,7093,7980,2927,2017,2992,2976,13,6006,5989,990,}, +Z4N181557 ={ 195722,27931,30753,3017,2015,1359,4603,21,2937,27,1025,4110,1870,16316,5079,4628,732,10045,1969,5025,15402,2171,15972,766,2711,5359,23053,667,4907,6487,473,13386,13196,1,4842,19812,10745,1,1473,3897,6836,4163,5883,2474,14747,9915,27906,4396,8409,10347,306,9784,9824,15942,1989,4986,7,984,3038,979,1006,1068,1,355,2564,2042,3977,986,10959,2064,8910,297,9765,6084,804,30121,51995,}, +Z5N181557 ={ 209224,20102,7083,5878,22079,4067,13092,7919,1,12000,10929,1,18137,2827,46,10043,10870,10093,9970,1017,10056,1,4952,4303,1000,1708,2979,6019,2969,12016,21043,810,2270,9800,6277,38051,16963,11546,5494,8548,6168,10124,3056,6620,22353,2152,5895,23301,25956,14076,1,21966,732,243,6978,11093,4948,15785,5187,12033,5058,3960,19016,928,11064,6983,}, +Z7N181557 ={ 168687,7081,16849,7166,38771,1,25216,6762,210,20734,16611,10703,41277,20308,1411,11364,18060,8585,9677,11880,16762,3025,12653,10399,999,12173,1,13785,20121,3488,1000,487,8083,999,5054,7331,4902,2721,3337,769,4183,999,616,16982,14624,943,17932,935,1610,4255,1326,4707,23233,4519,378,1,3836,3207,9579,1237,831,169,1,2332,16424,10025,1000,1402,3083,4642,4431,1001,986,2460,4405,6631,12453,2066,}, +Z1N181569 ={ 262833,1916,1000,20708,9406,761,17906,2288,2873,21768,9907,19051,14967,1,101817,14951,42027,999,20978,7929,35990,29071,37938,28038,20027,11938,}, +Z3N181569 ={ 071399,30,22023,3932,1,7053,999,11941,2983,14026,42930,2033,3043,11969,1001,9184,27731,10205,1229,8899,1546,1001,1136,1,844,26,3034,3952,1000,3085,4951,1134,1000,1922,1520,470,20,2868,1016,580,1520,7025,279,683,1,4232,11762,7228,1840,1532,673,1039,1072,13898,4023,1,918,15030,9150,19209,1001,2460,76,2905,1,3037,130,870,130,762,1,1271,4828,2988,2024,11502,1548,3866,277,723,2962,1,2427,4114,47,954,47,613,8262,1001,1883,1933,1721,3242,1000,15761,6614,1,2759,1,4938,7728,4313,1001,973,40,4203,6905,2893,1987,2009,9106,908,3993,4251,18751,1,1702,4270,7093,2604,1,2331,2206,2526,5250,10918,797,1001,3346,6696,253,17975,1,7186,18626,11966,196,13835,1,1468,14549,112,2,5293,1945,1,1796,1312,1619,10325,3023,764,1,5866,4216,6801,1000,8156,1,17999,1,2017,2992,1,2976,12,6006,5989,990,}, +Z4N181569 ={ 195722,27931,13697,6029,43,10984,3017,2015,1359,3569,216,818,21,2936,28,1025,4111,1869,21,4739,2479,3762,978,1805,1,14,2517,4080,4627,1732,398,601,8980,66,1970,5023,15403,2171,15972,767,2710,2057,3301,1,7848,11383,3489,79,254,667,4907,6487,472,13387,854,6799,5543,1001,3841,16972,1842,11744,1,1473,3897,6836,3303,1859,1954,2931,1474,11328,4417,9610,306,12290,4731,1,6663,4221,3253,1144,7409,999,3166,4792,1390,1305,8470,1314,9824,10909,5033,1989,2158,1,1202,1625,7,984,984,1001,1053,979,1006,1068,1,356,2563,2042,3977,986,10959,203,1861,6018,2893,297,9763,6889,196,109,29816,45,28890,23061,}, +Z5N181569 ={ 201384,7840,20102,7083,5879,22078,5068,12090,1001,6919,1,11999,1,10928,2,18137,2827,45,1,10043,6252,4618,10092,4042,5929,18,982,17,9056,1,13,986,1,4952,4303,1590,184,934,8998,14985,12186,9666,191,2080,5608,4192,1,6276,9043,1,8087,1597,18323,16574,1389,10607,939,4111,5941,3990,4061,1964,143,10123,1,734,9,8933,22353,1,2151,5895,15896,7404,6377,16137,3443,1712,12364,1,21966,732,243,757,243,5977,11095,4946,1,15784,5188,11033,3438,2620,3960,19016,1,927,11065,6982,}, +Z7N181569 ={ 208116,1038,1,2946,17983,1,2037,2988,13978,27021,330736,944,17932,935,7191,27939,4898,1,6043,15148,28852,2083,11073,1,986,6865,19084,2066,}, +Z5N185877 ={ 597791,4079,21979,975,1,69,1,8972,6941,2054,11980,98,902,99,4648,1233,23,964,1813,1000,2175,1036,1003,4077,4957,74,2,886,28,40,2897,1789,1998,1,1254,1951,36,783,3268,924,1000,1015,2040,2057,967,2964,1,20,979,21,26,968,1995,1973,1985,2091,3946,794,2,966,3251,978,59,941,60,1929,4057,924,73,919,1059,940,2048,981,2042,2024,917,1002,1054,981,35,10,943,4026,3011,999,1,1949,1,6075,2948,4965,67,15059,922,32,}, + }, + { -- continent 4 + Z4N188432 ={ 261482,15,2010,3973,1009,16013,1968,3023,1007,}, +Z4N188699 ={ 802430,20,992,}, +Z1N189978 ={ 210302,3976,13050,5886,1,4172,21951,25221,1000,6741,11290,3590,5046,7357,676,369,13658,1000,15398,1,15023,4546,1,961,5072,12436,1,1516,3966,8176,6044,1711,4566,1,1000,6455,539,1959,999,7747,1,791,1000,15031,897,1,3559,1,999,1,2914,9994,2036,2531,4439,9859,3710,3151,999,2193,886,4754,488,961,1000,1763,2,4089,1,3099,1,1000,2789,1,3381,1707,11311,1000,1,607,4348,3397,1000,13547,1,448,1044,417,1,1555,10451,987,6979,3577,1,999,1,2133,1346,1,4969,1,6063,6570,2192,726,14380,4637,411,1,5623,1001,6169,8123,6928,4945,1,19139,1,3778,40,2,957,42,1,14199,1,7889,1,8798,240,4055,11873,1936,1000,5170,8691,23088,66,2892,2,14132,2963,161,8929,33091,14996,22986,1,18013,26961,3918,10044,12949,1000,}, +Z10N189978 ={ 418890,970,1017,18997,1,47992,232873,13001,5965,8021,89911,}, +Z12N189978 ={ 111761,14,974,4032,3993,933,8063,4876,1000,116,4921,1017,2065,5002,12809,4184,32790,2214,1,3955,4754,1,13165,2997,6052,4819,1186,1,16,4946,891,9084,8049,23013,1,8998,15,5006,1,3931,7120,3996,1657,269,135,596,269,135,3569,439,730,1991,5882,1,4980,1266,999,5720,2150,1043,2864,176,2,805,2991,2295,877,1000,126,722,1011,3162,3963,5967,1,2233,54,7986,4012,1000,957,1881,4755,2409,3576,15061,937,63,12366,2572,4426,5673,1328,1,2909,1,999,5095,2915,1,745,1000,6313,2583,1000,2016,8979,2365,12903,64,12059,2916,16025,976,2635,1,2103,62,58,802,59,3262,2813,1,4028,797,2413,2005,2622,427,1947,1,1979,1,2724,61,939,61,1227,2038,998,1589,117,7855,1,5436,1000,591,1985,2435,2946,818,1001,5257,1,1795,1175,999,7069,905,11840,1000,76739,7164,1776,1043,22,958,3956,2094,3164,1,2015,1000,947,3862,2160,4801,1221,1962,1874,4916,2006,2470,764,2243,4738,1,1012,12,241,2723,2279,4729,13,1,5974,1270,1508,3479,5997,6696,853,2434,518,1,17030,}, +Z2N189978 ={ 283878,12971,1886,998,634882,999,1002,23796,}, +Z4N189978 ={ 133429,22028,3986,2120,7927,7127,12871,75,1064,27792,11218,21737,1001,1249,1,19799,1,241,23958,1,6097,1034,1000,6696,10146,12123,1000,7863,1,28003,20181,20812,5001,5050,14111,12729,11620,2441,620,417,583,417,9125,999,1,1749,1,21067,4160,4492,1,4986,6033,1,7993,5020,2966,2484,3690,5336,1,3697,13272,1001,1035,5724,1,3711,1000,2243,4982,10813,1,11019,1000,7560,1,24741,1238,1001,3898,6101,1,2059,1,792,1043,6814,1,1229,1,10897,6936,16833,3468,1877,1160,1373,7354,9805,3870,5269,4331,1000,599,4356,13408,8014,3072,3481,12964,15962,1,569,1001,1467,17972,1,518,30571,1,4637,1000,3236,7518,8286,1000,9232,1000,1,22056,2762,8950,}, +Z5N189978 ={ 104453,1000,15035,5856,1,1258,2,1919,1,2038,1069,7817,36,999,7906,19988,22964,37932,1,14221,1001,1820,5085,41136,986,1,999,1,1045,10914,1,36953,1000,5966,1,33969,1,23318,4686,14110,17092,1001,3058,18921,1937,21886,1,3081,1000,6083,718,4229,5687,1188,8830,7997,1012,5386,1643,2011,3147,1056,1000,772,14359,1,16989,1,12606,10467,32986,1,7560,14028,2,1942,99,10124,620,50,1983,976,620,6520,6085,1000,1,13367,3531,241,1,919,1,14907,8412,1,8649,1,2071,14218,1,10823,3043,4034,999,2094,934,15082,1,21948,}, +Z6N189978 ={ 188229,19001,3029,10013,2929,2934,10026,15,20033,7077,1845,179,1841,4390,5508,1109,1066,1,4907,1000,3971,6959,4502,1,6547,5579,10929,11173,973,28,2702,1246,2782,1,20254,768,10571,1001,2185,1,2251,2632,956,930,71,12122,3055,842,1,3927,9060,2979,2187,10772,2012,980,16022,1,3534,4494,381,1,2201,2442,1446,1,10063,1481,5372,226,1806,2823,8964,4242,9726,6834,6409,167,6636,1,1403,3381,11224,5215,5570,3469,1566,9468,2693,1,17054,2353,3479,578,422,1146,297,1,586,13538,9592,135,41,60,615,2582,1,3789,1,3796,2960,1001,4859,2449,5798,2250,1666,1,2133,1001,1120,11509,472,1681,3280,5174,4959,1,3555,4816,5481,3173,3494,1,998,1116,1964,2391,2973,34,16,6527,1,1423,2920,2516,1,6316,255,3498,1,12366,138,693,10204,6758,1,294,2812,9026,1907,1001,7066,8993,1,6872,2035,}, +Z1N189979 ={ 210302,3976,13050,5887,5172,20950,25222,999,6742,11290,3590,4045,8357,46,631,14027,1000,15398,1,15022,4547,1,961,5072,12436,1,1516,3966,8176,6044,1711,4566,1000,1,6455,2498,999,7747,1,791,1000,15031,897,1,3559,1,3914,9994,2036,2531,4439,9859,3710,3151,999,2194,885,4754,488,961,999,1764,2,4089,1,3100,3789,3382,1707,12311,1,607,4348,4397,13547,1,448,1044,418,1555,10452,986,6980,4576,1,2133,347,999,4970,6064,6570,2192,727,14379,4637,411,1,5623,7170,8123,6928,4946,19139,1,3778,1041,14200,1,7890,8798,240,4054,11873,1937,6170,8692,23153,934,1960,14132,2963,161,8929,33091,14996,22987,18013,25961,4918,9045,13948,1000,}, +Z10N189979 ={ 419860,1017,66990,251839,}, +Z12N189979 ={ 111761,14,5005,3994,933,8063,5876,116,4921,1017,2065,5001,12810,4185,32789,2214,3956,4755,13165,2997,10870,1187,17,4946,1890,39148,8998,6022,2931,7119,3997,1926,134,1597,2973,439,730,2992,4883,5979,266,6720,2149,42,3866,175,807,3992,2171,128,872,848,1011,3162,3963,5968,2233,54,7986,5012,957,1881,4755,2409,3576,15061,936,64,12366,1573,5425,5673,1328,3910,5095,2916,999,746,6313,5599,8979,2365,11968,935,12122,2918,16024,976,2635,1,2104,61,58,862,3261,2813,4030,796,2413,2005,3622,427,947,1981,2724,60,2228,3037,1588,117,7855,4437,2591,1985,1436,3945,818,6259,1795,1175,8068,905,11840,77738,6165,2776,1043,22,958,2956,3094,3164,1,2014,1948,2862,3160,4801,1221,1962,1874,4916,2007,1468,1765,2243,4738,1,264,748,12,2964,6021,987,5988,1269,2509,2479,4996,7697,854,2433,518,1,17030,}, +Z2N189979 ={ 299733,634881,}, +Z4N189979 ={ 133429,22029,3985,2120,7927,7127,12871,75,1064,27793,11216,22739,1249,1,19800,241,758,23200,6097,1035,1000,6696,10146,12122,8864,1,28004,20180,20812,5001,5050,14111,12729,11620,2441,620,417,1000,9125,1000,1749,1,21066,4161,4492,1,11019,13014,4450,4690,5336,1,3697,13272,1037,6723,4712,2243,4983,10812,1,11019,1000,6560,25742,1238,1001,2898,7101,1,2059,1,792,1043,5815,1999,230,1001,9897,6936,16833,3468,1877,1160,1373,7354,8805,4870,5269,4331,599,5356,13408,8014,3072,3481,12964,15962,1,1569,1,1467,17972,1,518,30572,4637,4236,7518,8286,11233,22056,2762,8950,}, +Z5N189979 ={ 104453,17036,3856,2258,2,1919,1,2038,1069,7817,1035,7906,19988,22964,37932,15225,1818,5084,41137,986,1,2045,10914,1,36952,6967,1,33969,1,23318,4686,14110,17093,1000,3058,18921,937,22886,3082,1000,6083,718,4229,5687,1188,8830,14395,3654,3147,2056,15131,16990,1001,11606,10467,32986,1,7560,14028,1944,99,10124,620,50,1983,976,620,6520,6085,1000,1,14367,1773,758,241,920,1,14907,8413,8648,2073,15218,9824,3043,5033,2094,934,15083,21948,}, +Z6N189979 ={ 188229,19001,4029,10014,1928,2934,10026,15,20033,7077,1845,179,1841,4390,5509,1108,1067,5907,3971,6959,4502,1,6547,5579,10929,11173,973,28,2702,2246,1783,20254,768,10571,4187,1251,2633,955,929,12194,3055,842,1,3927,9060,2979,2188,10771,2012,17002,1,3534,4494,381,2202,2442,1446,1,10062,1482,5371,227,1806,2823,8964,4242,9726,6834,6409,167,6636,1404,3381,11224,4215,6570,2470,2565,9467,2695,17054,2353,3479,578,1568,297,587,13538,9592,135,41,675,1582,1,4790,3796,3961,4859,2449,5798,2250,1666,1,2133,2121,11509,473,1680,3280,5174,4959,1,4555,3816,5481,3173,3494,2115,1964,2391,2973,34,16,6527,1,1423,2920,2516,1,6316,255,3498,12367,138,693,10204,6760,293,2813,9026,1906,8067,8993,1,6872,2035,}, +Z10N189980 ={ 228634,1,5927,1000,5920,7138,1842,113,1096,774,26,23,1,1188,5,740,999,3155,2101,991,2015,2984,3804,1026,3997,1084,1,5028,7790,1034,25,2177,3877,1952,205,756,6,18,962,226,3816,3384,22,810,2794,2964,221,787,3379,11685,170,4978,2739,6274,48,952,48,766,351,58,4931,861,1737,252,1000,2232,738,1171,876,18,721,260,741,6246,769,373,2863,1870,1152,7051,53,6099,1982,6001,875,1868,113,1037,724,1386,1858,2019,1,2971,874,1902,2137,990,102,1699,2222,1958,25,983,2702,1308,3105,943,61,937,75,1006,889,46,1005,1042,875,815,262,75,909,745,172,1743,351,940,1001,71,69,893,733,330,2945,995,89,1786,195,968,4940,3124,963,1860,7174,1556,1370,1030,3004,3640,2340,1007,999,1073,1941,13,7595,5364,1009,24985,1962,7962,1012,18,2961,2052,3973,994,2082,6,905,1979,6039,980,7011,2830,159,2794,1026,168,1000,42,1775,3164,1112,2971,1000,1796,2113,2071,4771,1,36,6114,2100,1000,2993,1740,8058,10161,1969,884,2162,3760,37,1150,2803,1266,1937,899,1,2151,990,1812,1976,166,2115,1000,1931,1792,1066,926,199,2782,175,13,987,1851,2182,1828,3997,1200,1,847,1932,1008,162,860,1,4994,968,126,104,782,6092,2123,1,874,1007,14124,4061,2763,89,3020,16,4025,1,2911,4970,7207,12940,1000,1982,10992,991,994,42,1,4974,3009,23098,18980,}, +Z11N189980 ={ 061661,10999,6867,20132,17991,22783,2,12001,998,9946,16288,5043,1000,6966,14947,1,959,1,2014,3884,2,999,5198,6782,1163,2826,2020,2000,18775,350,650,350,2015,8609,6390,9008,2578,1000,11974,3,209,1,1166,2888,965,2,7055,7021,2033,15972,1000,3652,404,8581,1,5010,4992,28467,1001,590,999,3348,3566,14136,1,2939,2,6077,2,17332,1962,12752,15053,1,19999,2,7078,1,1019,1,999,1,1025,4014,1002,1087,2999,11788,2458,12726,1001,2758,2,12993,14260,979,2001,12254,455,4911,1001,2039,633,18,10311,6350,1000,2060,984,2,10607,2,2989,7365,10164,4030,693,1000,307,691,3127,229,14744,2,998,3,7685,2000,2369,5156,9837,3,13683,13963,4201,1,861,138,1,3081,6074,1000,7879,1999,14135,13295,7795,2,917,2270,2000,4801,1009,11,2,887,1213,27,971,29635,1000,12015,11218,13109,9921,}, +Z12N189980 ={ 121707,21940,17928,4185,86873,60129,6630,1438,13851,25943,9931,16242,28682,19364,26980,4598,25248,12122,19918,2636,6346,12057,11989,4742,23067,6259,1794,1176,8973,124542,22194,10010,25925,20836,}, +Z2N189980 ={ 238199,13010,14965,2,32082,26031,999,66041,16001,}, +Z4N189980 ={ 080425,11,988,6989,9997,186018,5991,29783,4012,1,1000,22123,500139,42231,}, +Z5N189980 ={ 670044,}, +Z8N189980 ={ 276630,3026,8971,967,1049,10773,1996,178,5104,6,864,3149,643,978,1,155,844,1,155,1968,4891,248,1068,999,5930,1,2783,334,758,196,1000,1811,995,827,2994,3421,1,2548,3411,1,25,3190,1000,2397,3135,242,890,1,98,867,1146,245,748,7,769,88,32,998,101,272,2699,801,1197,1723,67,932,319,816,189,1673,59,1173,2697,113,1,169,1,1818,898,282,7,2703,1089,1227,1797,24,95,3994,2855,1,138,883,67,204,2990,1748,4269,770,1,230,73,766,1,109,735,134,3,129,774,991,84,1,79,5,1000,2943,869,2015,362,879,753,74,1,3205,752,2232,1,3059,795,171,824,933,68,2990,184,4755,3978,1008,888,11,13262,919,1011,1905,166,288,633,1083,27,801,94,1247,95,895,631,26,140,2075,44,901,4,51,127,1001,2107,1680,1082,1011,246,1531,4,1157,64,254,482,41,1200,1004,1040,1028,670,309,1989,1026,1009,181,719,1272,1653,27,6,973,4061,347,653,825,100,79,331,1991,646,3921,1,2445,1750,67,1940,1275,85,708,3151,605,1251,7569,1000,1603,5,36,304,59,3609,712,9,631,3012,1589,1936,19,5439,209,791,3206,409,400,606,1051,445,2482,11,496,105,888,379,188,539,3797,12,1200,409,1970,453,177,823,2114,1989,22,58,868,1008,909,1109,67,979,1000,2874,1159,898,1,2974,3045,1,66,1803,2507,5,498,1,5088,121,1,3791,6121,5129,1817,43,21,1024,121,879,113,8,142,1,1822,41,7,1870,984,2167,2045,10,709,168,1166,909,674,129,199,787,861,128,1068,9,1967,1196,2845,908,1,2239,1,3084,1922,2069,8,1966,1,46,746,1220,589,186,65,205,630,990,185,218,782,1203,23,580,71,62,939,316,814,2228,934,992,1828,179,83,1715,8,2055,151,1647,153,846,196,2132,480,347,943,63,1171,749,248,1915,1830,1319,467,1,1000,2213,1325,693,311,1978,707,2026,1000,1754,518,744,211,2029,1,33,1741,1006,184,2006,2743,3242,58,1486,1535,742,76,170,11,6873,4986,813,3016,1208,1,919,1,3096,17,3015,4776,1000,1149,806,1,2277,4022,2,99,864,59,942,58,746,1,153,1872,667,1347,167,1838,2139,1000,886,39,2,1082,14,826,11,1032,885,2289,1,5929,1,5062,2927,7,6962,6076,6971,5063,1984,10021,14000,}, +Z9N189980 ={ 204633,53,78,2,869,51,1016,54,835,83,888,85,29,46,65,1957,1,880,904,95,2147,1000,6762,2,1288,1017,1000,944,1,2725,984,1,2989,4374,1615,296,10693,13975,999,2405,11012,2,776,781,4015,2001,1189,3244,6523,1,5149,1,1085,754,180,999,1002,2953,1856,1,7188,2079,3731,1000,3965,5138,1000,294,697,101,766,1,29,1,1051,328,1,755,896,2397,697,239,861,1000,309,606,3064,1035,1001,792,160,123,694,1,89,1,13,907,477,522,1,477,855,1085,611,96,177,205,15977,18,982,5379,313,334,1,1587,912,1,1001,308,833,168,188,1485,866,1,506,2462,517,1034,1,2573,3066,1,1114,375,1,2485,1263,2,998,2,2085,21,467,1493,1638,1541,7878,4121,6495,1,3504,1885,2,3116,1349,983,1,5669,1002,9326,52,1,1613,731,2020,1025,1,1230,999,1,2512,4333,473,1158,57,251,534,158,56,3014,447,422,923,109,893,2439,1,44,1059,897,103,115,4543,2903,6089,466,1,768,2,3115,559,1001,2300,249,5756,147,434,405,200,395,405,200,783,2,25,5251,462,1,2406,1000,1622,26,473,1355,2983,1174,1,237,1254,1000,2534,3424,1,1627,5778,2201,1325,867,251,1,327,452,1,547,452,1,1939,1,1208,3061,1,2696,1000,1932,377,1335,999,1019,1435,13,3809,2278,520,385,2,1760,999,1122,1777,2311,1,565,147,530,391,261,1331,1618,808,1076,382,1,999,1,2058,559,204,1251,775,2248,425,398,215,384,18076,1395,2,4549,329,85,587,1376,1118,980,1674,401,600,401,600,901,3488,2,1698,1,2022,1000,897,1,2921,1928,1,1328,2,189,1,1589,1,999,1,6918,2,216,1900,1000,954,998,1088,1328,3811,1135,999,1,1798,3225,1549,1117,1,3084,8044,3963,998,1200,2,2833,812,1000,3162,2055,3030,6091,6815,1,10053,4094,1869,923,1,3096,3017,1942,2869,1001,4093,10110,8940,1085,4942,1000,42,903,999,26,}, +Z10N189981 ={ 235562,14900,113,117,2991,10006,2984,9912,5028,8849,2177,6034,756,986,226,1829,1987,3406,810,754,2040,3184,788,3379,11685,14161,1048,766,351,4989,860,1990,3232,1909,895,980,5130,1857,769,3236,3022,7051,53,6099,1982,8744,1874,386,7849,874,1902,3228,13939,64,943,61,3958,1917,2061,918,3033,7037,1875,164,5939,4087,34602,5364,27956,8992,2961,1052,4973,994,4972,7019,7011,2989,4987,3982,2112,9951,36974,1968,3047,4947,4069,1938,2050,1990,3954,5046,2983,3957,13,5020,10975,6949,6978,18129,5823,1090,9973,40082,994,}, +Z11N189981 ={ 061660,10999,6868,20132,17991,22784,1,11000,999,10947,16287,5042,999,8967,12949,959,1,39,1975,3884,1001,1,4196,6783,2163,1826,4020,19775,350,650,1350,1015,2,8608,6389,9008,2579,999,11975,2,208,2,1166,1888,1969,7053,2051,2970,1000,19005,1000,3652,404,8581,1,5011,4991,28467,1591,410,589,3348,3566,14136,1,1941,998,6080,1,17332,1963,11751,16053,1,19999,2,7078,2,1018,1,999,2,1025,4013,1002,1087,2999,11788,3458,11726,2002,759,999,12994,14260,979,2001,12254,455,5914,2037,632,19,10312,5349,2000,2059,985,1,10609,1,2989,8366,9163,4028,695,1000,998,1126,2230,14744,3,997,4,7684,5368,4157,9837,3,13683,13963,2,4199,1,861,138,2,3080,6075,999,7879,15134,1002,13293,7796,1,918,2269,6801,9,1012,1,888,1212,27,971,29635,2001,11014,11218,13109,8920,}, +Z2N189981 ={ 237199,14010,14967,32082,93071,}, +Z4N189981 ={ 080425,11,988,6989,9997,186018,5991,29783,4012,1,1000,21123,}, +Z8N189981 ={ 276630,3026,8971,967,1049,10773,1996,178,5104,6,863,3150,643,979,155,845,3123,3891,248,1068,6930,2784,334,757,196,2811,995,827,2994,3423,2547,3412,25,3190,1001,2396,3135,1133,98,867,1146,245,646,102,776,88,1030,101,272,2699,801,1197,1723,67,938,313,815,1188,675,59,1173,2697,113,1,169,1,1818,898,282,7,2703,1089,29,1198,1821,95,3994,2856,138,883,67,204,997,3741,3087,987,195,74,697,1070,117,727,137,903,990,165,5,1001,193,2749,869,78,1937,1241,753,75,3205,752,2232,1,3058,967,824,1,932,3058,8917,1008,888,11,13262,920,1010,1905,166,921,366,718,921,105,1142,95,895,631,26,140,2119,901,4,178,1001,1107,1547,130,2085,1010,1,246,1534,954,204,64,254,523,1200,1004,1039,1028,671,309,1989,1026,1008,182,719,1272,1680,6,973,1989,2072,347,1478,100,79,1331,991,646,3921,4196,67,1941,273,1086,708,3152,604,1251,8569,1007,637,304,4380,9,631,3012,2590,938,16,5439,209,791,3206,409,400,606,1051,445,2476,513,105,888,379,188,1539,2797,12,1201,2378,453,177,2937,1989,22,58,868,1008,1909,109,67,979,1000,2874,1159,898,1,2974,3046,66,1803,2507,5,498,1,5088,123,3790,6121,5129,1817,42,22,1024,121,879,113,8,142,1,1822,40,8,1870,984,1167,3045,9,710,169,1073,92,1583,115,14,199,1648,128,1068,9,967,2196,2845,908,1,241,1998,3085,1922,2069,8,1966,47,1966,590,185,65,205,630,990,119,66,218,2588,71,62,939,130,185,5,809,1220,1009,934,992,1828,262,1715,8,2054,152,1646,1,153,1042,2132,479,348,171,835,937,234,741,8,2163,3149,468,1232,2981,325,1004,1978,707,3026,1754,261,257,2983,35,741,2006,184,1006,3743,3245,1541,518,1759,246,11,819,6054,4986,813,3016,1209,919,3097,17,3015,4776,1000,1955,194,2084,4024,99,864,59,942,58,746,1,153,1872,667,1347,167,1838,2139,1886,39,75,927,82,14,826,11,1032,885,2289,1,10992,2927,6969,6076,6019,952,5063,25006,}, +Z9N189981 ={ 204685,81,869,51,1017,973,46,34,30,777,28,56,2097,1,880,904,2242,1001,6760,1292,1016,1000,944,1,1726,984,999,2990,5373,616,295,10694,13974,1000,2405,11013,1,776,781,5016,2189,3243,6524,1,5149,1,1085,754,1001,178,1002,2953,1857,7188,2079,3731,4965,5139,1000,292,595,103,866,2,30,203,848,328,756,895,2335,63,697,1100,999,916,394,2670,1035,1001,769,1,21,161,123,783,15,907,477,1855,1086,706,177,205,521,15456,17,6675,334,1,351,1235,913,1,1001,497,644,167,1,673,1866,1,1506,1461,518,1034,1,2573,3066,1114,377,2485,1263,1001,2086,21,467,1494,1637,1541,6002,2876,8616,1002,3503,1886,3116,1348,985,6672,9326,52,1001,613,731,2021,1024,1,2230,2512,4333,1472,159,57,252,747,3015,867,924,110,2376,955,1001,103,115,885,115,4543,2903,6090,466,767,3119,558,3301,249,4756,1146,434,407,999,200,783,2,25,5251,463,3406,1121,502,26,1827,2983,1174,1,237,1253,1001,1534,4424,1,1626,5779,1201,2326,865,252,2,325,453,1,547,452,1,1939,1,1209,2060,1001,3696,1309,624,1711,2017,436,13,4809,1278,1905,616,1146,3122,777,2310,1,712,530,324,67,261,1331,1618,808,1076,1383,2617,204,237,1015,774,2248,823,215,384,18075,397,5549,331,84,587,1376,1118,980,3675,1,398,1503,4188,1,2021,1001,897,1,1922,2927,1,1329,190,1590,1,999,1,6918,2,216,1900,1000,1952,88,2327,3813,3133,1,797,2226,2549,1116,2,3084,12006,2201,2645,188,1811,3163,2055,3030,6090,5817,999,10054,5093,870,923,1,3097,2015,2943,2869,5094,10111,9939,85,4941,1043,902,2,1025,}, +Z10N191133 ={ 235562,13058,1955,1870,1238,7991,2015,2984,4831,3996,1085,5028,7790,1059,2177,6034,756,986,226,1829,5371,22,810,5758,221,787,3379,11685,170,4978,2739,6274,1048,766,351,58,4931,861,1989,3232,738,1171,894,981,741,6246,769,1373,1863,3022,7051,53,6099,1982,6001,875,1868,1874,386,7849,874,1902,3229,5879,4121,5006,2953,1005,1917,1078,1899,3035,2034,4008,1084,1786,164,5939,4087,1860,66062,7973,1019,2961,2052,3973,3987,1979,1023,5996,7011,2989,9969,1112,46925,1969,7993,4069,1938,4040,4954,4046,2983,3970,987,4033,7025,3950,6949,104,6874,2124,874,15131,6913,3020,16,6937,4970,7207,15922,12977,41,7985,}, +Z11N191133 ={ 061660,10999,6868,20132,17991,22784,1,12001,998,9947,16287,5042,1000,6967,14948,959,1,39,1975,3884,1001,5198,5782,2163,2826,2020,20775,349,1001,2015,8609,6390,9008,2578,1000,11186,789,1378,2888,967,7055,7021,18005,1000,3651,405,8581,1,5010,4992,28467,1,1590,999,3348,3566,14136,1,2939,2,6078,1,17331,1963,11752,16053,1,19999,2,7078,1,1019,1,999,1,1025,4014,1002,1087,2999,11788,2458,12726,1,2760,999,12994,14260,979,2001,12254,455,5913,2038,633,18,10311,6350,1000,2059,985,2,10607,2,2989,7365,10164,4030,693,1000,998,3127,229,14744,2,998,3,7685,4369,5156,9837,3,13683,13963,4201,1,861,139,3081,6075,999,7879,15134,14295,7795,2,917,2270,6801,9,1012,889,1212,27,972,30634,12015,11218,13109,9921,}, +Z2N191133 ={ 237198,14011,14967,32082,92071,}, +Z4N191133 ={ 080436,988,6989,9998,186017,5991,29783,4013,1000,21123,}, +Z8N191133 ={ 276630,4027,8937,33,1016,10773,1996,178,5110,863,3151,642,1134,845,2123,4891,248,2068,5930,2783,335,757,196,2811,995,827,2994,3421,1,2548,414,3023,3190,1000,2397,3135,245,888,98,867,1391,646,102,776,88,1030,101,272,2699,800,2921,67,938,313,3,812,1863,59,1173,2697,114,170,1818,899,288,2703,286,803,1227,819,978,119,3994,2856,138,883,67,204,997,8010,771,303,766,1,844,134,132,774,991,85,84,1194,808,1940,870,2015,1994,74,3206,752,2232,1,3059,795,1928,3058,8917,1008,888,11,11189,2073,919,2916,165,289,633,1083,27,895,1247,96,894,631,26,140,2119,1083,2815,293,1680,42,1040,1010,1,246,1531,4,953,203,65,254,523,252,948,741,263,1039,1028,2969,1026,1008,182,719,1272,1680,6,973,1989,2072,347,1478,99,411,669,1322,646,3921,2445,753,1065,1940,1360,708,3151,605,1251,8569,1007,941,4380,640,3013,3527,16,2045,3603,790,4016,605,1,589,462,445,2482,507,105,888,379,188,1539,2797,12,1200,2379,453,177,2937,1988,23,59,867,1008,909,1109,67,979,3874,1159,899,2974,3046,66,1803,2507,503,1,505,4583,122,3791,6121,4016,1113,1817,43,1045,121,992,8,142,1,1822,47,1871,984,2167,2045,10,709,334,1908,675,115,14,199,1648,128,1068,9,967,2196,2845,908,1,241,1998,3085,1922,1087,982,8,1966,793,61,1159,589,186,270,630,990,185,218,1985,23,580,71,62,939,315,815,2228,926,8,2820,262,1715,8,2055,151,1646,1,153,1042,2611,1353,1,937,234,740,9,248,1915,3149,468,3213,1326,692,311,1978,707,3026,1754,518,744,211,2029,34,1741,1006,184,4749,3245,1541,518,1759,76,170,11,6873,4986,813,3016,1209,919,3097,17,3015,4776,2149,806,2278,4024,99,923,900,42,58,746,1,2025,2014,167,1838,2144,995,886,1,38,1084,14,826,11,1917,2289,1,5930,5062,2927,6969,9079,3016,952,5063,}, +Z9N191133 ={ 205634,1,51,1016,54,835,196,776,84,75,2023,1784,3242,6761,1291,1017,1944,1,1725,1984,1,2989,5373,616,296,10693,13975,1000,2404,11012,778,781,6016,1190,3242,6524,5150,1,1085,754,1179,3955,1857,7188,2080,2730,5966,6138,292,595,104,100,1766,409,673,84,896,2398,696,238,1862,915,394,2670,1035,1793,160,122,695,1,89,921,93,384,1856,1084,91,616,177,16180,20,6361,312,335,1,2501,86,914,1141,167,189,1485,866,1,1506,462,1516,1036,2573,4181,376,2485,2263,2087,22,466,3131,1541,8877,3122,6495,1,3504,1887,3116,1349,982,6673,9326,1053,613,731,2020,1025,2231,2513,4332,472,1158,1057,3015,868,578,345,1002,2440,44,1059,1115,4543,2903,6090,466,768,2117,1559,3301,249,5756,146,436,405,999,200,785,25,5714,3406,1121,501,27,1827,2983,1175,237,761,493,1000,1534,5424,627,5779,2201,1325,867,253,778,1,547,2392,1,1209,3060,1,3696,1932,378,1334,2018,1435,13,3809,1278,1520,385,3883,1777,2311,567,146,530,391,262,1330,1618,808,459,617,1383,2058,559,202,3,1250,776,2247,822,216,384,18075,396,5551,330,84,587,1376,1118,979,2676,1902,3490,1698,1,2022,1000,897,1,1921,2928,1330,190,9509,218,2900,1953,1087,2328,2811,2136,1797,3225,548,2118,3085,12007,2200,2645,188,4974,1055,4030,6090,6817,10053,5093,870,924,3097,2016,1943,4869,4092,9111,11025,3941,2043,1903,25,}, + }, + { -- continent 5 + Z3N1731 ={ 328362,3009,2983,1001,4908,186,2818,1010,1000,3034,1130,980,3894,3009,1,27947,10022,6005,6941,6044,1,5981,978,1,33,1940,8322,2021,5008,4655,1,5462,15,2979,2538,2323,1663,2349,1008,5707,8993,3358,974,1,3011,2220,5357,1637,11960,1000,2834,2007,1557,2455,1533,1094,508,1951,1010,435,79,1987,6504,1,1486,4448,985,1,1719,1,1848,456,684,2981,1,2009,1,793,2108,500,1573,3820,98,1069,1842,609,2558,858,173,1541,1324,977,50,3043,18,581,471,3013,1,1505,907,92,7916,4896,5016,11,38969,1027,1,4731,3257,4755,7019,46904,4013,7030,40,1,2989,}, +Z1N202736 ={ 191549,3008,35,965,34,900,32,1060,4020,878,1017,1993,3129,734,1,2113,3161,7,993,7,7802,1207,747,3034,4942,1285,58,656,287,671,1355,981,32,4024,593,118,956,999,1026,2312,585,3425,3571,982,984,988,181,851,1146,2340,1,971,16,984,16,3019,5445,6311,1702,991,5013,961,1,319,1,32,1879,1131,1687,1,169,1,29,1,799,170,1,30,76,670,1373,221,468,527,790,1654,1,579,1,594,37,90,1937,8,300,999,1417,61,281,855,1,1379,492,324,234,560,834,26,1,352,681,63,236,972,19,262,510,490,554,1,171,210,1836,1680,1287,1188,530,318,608,636,365,166,469,2311,457,12,1695,1,1384,37,538,1,432,2013,1558,1086,1,254,1230,306,43,96,32,11,9,353,596,373,523,1487,474,1256,225,210,565,225,563,119,829,2165,235,102,907,283,551,1285,630,100,889,848,152,248,2873,1018,97,988,795,16,1223,1128,165,481,68,932,69,290,456,2274,918,214,580,421,791,179,880,298,1838,800,178,355,250,1,1309,2,915,196,10,866,283,661,1349,690,970,358,833,35,9,10,255,507,185,43,10,490,51,415,12,132,427,1733,509,3804,1,948,70,533,141,1000,228,301,960,251,1569,193,1012,1347,394,967,84,177,250,3129,3351,1274,1,429,1,1077,1231,519,124,134,742,124,33,13,88,1754,3725,120,1393,532,1,694,538,134,27,301,1555,702,62,2816,1,113,182,1562,1252,52,88,1,306,93,1,566,1001,212,567,1104,446,303,1125,211,474,1,432,327,568,249,290,13,1312,437,1148,61,17,809,29,84,78,1580,2392,1648,401,836,1484,336,462,1433,2063,1,3384,904,39,1032,1,349,500,1,499,1,1275,4399,900,35,1,1697,337,1149,1691,740,291,62,1100,1116,3748,728,999,1054,475,344,388,54,947,1597,5988,1940,1952,89,2237,954,1250,1000,3109,442,208,410,2562,371,1392,662,1062,3279,465,1,180,1848,2,554,198,466,1894,2047,2817,3140,52,1054,724,2228,2604,2402,2048,2006,537,77,294,37,1,719,2,251,1642,1145,1,1301,520,405,85,1672,53,1000,282,2574,935,1402,1,2623,1106,367,633,1,911,125,239,3664,1,3319,1,983,619,106,1947,29,41,14,1,235,1635,1370,2645,467,3881,112,2384,52,10,111,433,395,1383,799,1215,789,2407,376,1,79,1,146,1152,1156,492,64,297,230,850,851,176,896,43,26,930,1,69,9,64,498,473,2548,382,38,25,122,367,314,1,28,958,715,22,933,452,81,551,172,768,60,16,392,521,10,282,1342,396,509,28,76,641,684,92,1,31,389,170,328,376,17,673,394,111,1,486,1592,404,40,545,31,371,1,414,2545,465,135,1,746,282,43,348,1,988,384,581,277,26,22,111,1,654,203,40,959,169,239,635,1,1049,1,58,826,1137,79,549,1,14,382,262,327,1969,22,613,1,55,384,1,19,1,382,53,535,385,27,987,2,587,34,333,2013,89,539,139,883,71,1,68,6,810,67,105,99,865,113,38,110,149,97,442,1,49,338,72,12,440,88,1,387,60,52,1,875,660,182,1202,1,68,471,1,214,370,893,484,1408,2002,1000,22,597,987,348,84,1,556,343,73,599,1058,1,1969,1,471,807,1280,399,132,2,873,62,111,152,1,21,1240,567,183,108,62,95,554,1910,946,1436,1702,303,150,560,75,972,965,284,52,511,32,1036,250,1801,1038,953,457,463,97,440,505,414,601,14,21,2199,4,15,219,594,3005,948,1001,913,1323,124,88,564,1368,1643,11,901,114,323,1670,197,1200,470,3512,1528,287,1,3165,3834,1,7002,6995,1015,4020,666,3011,1401,999,2945,2693,334,18,1,974,8990,1733,5014,18,2,4012,5013,45,10,972,40,1945,}, +Z1N202738 ={ 191549,3008,35,965,34,6,894,33,1059,4898,1017,1993,3129,734,1,2113,3161,7,993,7,7802,1207,747,3034,4942,1285,58,656,287,671,1355,981,32,4024,593,118,956,999,2,1024,2312,585,3425,3571,981,985,988,181,851,1146,1341,999,972,16,984,16,3019,5445,5001,1310,1702,6004,961,1,319,1,32,1879,1131,1687,1,169,1,29,1,799,170,1,30,746,330,1043,221,468,527,790,1654,1,579,1,594,37,90,1937,8,300,999,1417,61,281,855,1,2195,184,50,443,117,834,26,1,352,681,63,236,972,19,262,1000,554,1,171,210,1836,1681,1286,1188,530,318,609,635,365,165,470,2311,458,11,1695,1,1384,37,538,1,432,2013,1000,558,1086,1,254,1230,306,43,96,1,31,11,9,353,969,523,1488,473,1256,225,210,565,225,563,119,829,2165,235,102,908,282,551,1285,630,100,889,848,152,248,2873,1018,97,988,795,16,1223,1128,165,481,69,931,69,290,456,2274,918,214,580,390,1,30,791,1059,298,1838,800,178,22,333,1,249,1,1309,2,915,196,10,866,283,661,1349,690,970,358,833,35,9,10,762,185,43,10,490,466,12,559,14,560,1159,509,2805,999,949,70,532,142,1001,227,301,960,252,1568,193,1012,1347,394,967,84,177,250,3129,3351,1274,1,429,1,1077,1230,520,124,134,222,520,124,33,13,88,1754,3725,120,1393,532,1,1232,134,27,301,1555,702,62,2816,1,113,182,1562,1252,140,1,306,93,1,511,56,944,56,779,1104,446,303,1125,211,475,432,327,1,567,249,290,13,1312,437,1148,61,17,809,29,84,78,1580,2392,1648,401,1836,484,336,462,1433,2063,1,3384,904,39,1032,1,349,500,1,499,1,500,776,516,3882,900,35,1,1697,337,2840,740,291,62,1101,1115,3748,728,999,1055,474,344,388,54,947,1597,5988,6218,954,1250,1000,3109,650,410,2562,371,2054,1000,62,3744,1,180,1848,2,752,466,1894,2047,2817,3140,52,1054,724,2228,2604,2402,2048,2006,537,77,294,37,1,719,2,251,1642,1145,1,1301,520,405,85,1672,53,1000,282,2574,935,1402,1001,1623,1106,1,366,633,1,911,125,3903,1,3319,13,971,17,602,106,1947,29,41,14,1,235,1635,1370,2645,467,3881,1113,1383,52,10,111,828,604,779,799,1215,789,2408,375,1,79,1,145,1153,1156,492,64,297,230,850,851,1072,42,27,35,895,1,69,9,64,498,473,2548,383,37,26,121,367,314,1,28,958,715,22,933,533,551,172,828,15,393,521,10,1,281,1343,395,509,28,76,641,684,92,1,31,389,144,26,328,376,17,673,505,1,1483,999,40,545,31,371,1,1937,1022,401,199,1,746,282,43,348,1,988,384,859,25,22,766,203,40,960,168,239,635,1,1049,1,884,1137,79,549,1,14,644,327,1969,22,613,1,55,384,1,19,1,382,53,535,62,350,987,1,588,34,333,2013,89,539,140,882,71,1,68,6,810,67,105,99,865,113,38,110,149,97,442,50,275,63,72,12,528,1,387,60,24,28,1,1717,818,384,1,68,471,1,214,370,893,475,9,1408,1049,953,1000,22,1603,329,84,1,556,342,74,600,1057,1,1969,1,471,807,1281,398,132,2,935,111,152,1,21,652,588,567,183,108,62,95,554,1910,2381,1703,303,150,560,75,972,965,284,53,542,1036,250,1801,1039,952,457,463,97,441,504,414,601,14,21,2199,4,15,219,594,3005,948,1001,1914,322,124,88,564,1367,1655,901,89,25,323,1670,197,1200,470,3512,1529,286,1,3165,3834,6003,1000,6995,1015,4020,665,3012,1401,999,2945,2693,334,18,1,974,8990,1733,5014,18,2,4012,5013,45,10,972,40,1945,}, +Z1N202739 ={ 191549,4008,34,6,894,33,1059,4898,1017,1992,3864,1,265,1848,3161,6,1001,7801,1208,747,3034,4942,1285,58,656,287,672,1354,981,32,4024,593,118,956,999,1025,2313,585,4425,2571,982,983,989,181,851,1146,2340,1,971,16,984,16,3019,5445,5001,1310,1702,6004,962,319,1,32,1879,1131,1687,1,170,29,1,969,107,670,224,1148,222,467,528,790,1655,579,1,631,90,873,1064,8,300,999,1417,60,281,2729,323,184,50,561,833,27,352,681,63,236,972,19,262,1000,554,1,171,210,1836,680,2287,1188,530,318,1244,365,166,469,2311,457,12,1695,1,1384,37,538,1,432,2013,2644,1,254,1230,306,43,97,31,11,17,345,595,374,523,1487,474,126,1130,225,775,788,119,1829,1165,235,102,907,283,550,1286,630,100,889,848,400,2873,1018,97,989,794,16,1223,1128,165,481,999,69,291,456,2274,918,214,580,1212,179,880,298,1838,800,178,355,250,1312,915,1072,124,9,150,661,1349,690,970,358,868,9,10,255,507,185,43,500,466,12,559,14,560,1159,509,3804,949,70,532,1142,228,301,960,251,1569,193,1012,1347,394,967,261,250,573,2556,3351,1274,1,429,1,1077,1750,124,134,222,520,124,33,13,1842,3725,120,1393,532,1233,134,27,301,1555,702,62,2816,1,113,182,1562,1252,52,88,1,306,93,567,1001,779,1105,445,303,335,790,686,432,327,1,567,249,290,13,1312,437,1148,61,17,809,29,84,1658,2392,1648,401,837,1483,336,462,1433,2063,3385,904,39,1032,1,850,499,1,1275,4399,900,35,1,1697,336,1150,1691,741,290,62,1100,1116,3748,728,999,1054,475,343,389,54,947,1597,5988,1940,1952,89,2237,954,1250,1000,3109,442,208,410,2562,1763,662,1062,3279,465,1,180,1848,556,198,466,1894,2047,2817,3140,52,1054,724,2228,2604,4450,2006,537,77,295,37,721,251,10,1632,1145,1,1301,520,490,1672,53,1000,282,2574,935,1403,999,1624,1105,368,633,912,125,239,3664,3320,984,619,106,1947,29,41,14,1,235,635,2370,2645,467,4994,1384,51,10,111,1211,221,902,676,1215,789,2407,376,80,1,146,1153,711,444,492,361,230,850,851,1115,61,896,69,9,1034,2549,382,38,26,120,368,314,1,28,958,715,22,933,452,81,551,172,768,60,15,393,521,10,282,1342,396,509,28,76,389,252,684,93,31,389,170,328,377,16,673,394,111,1,2078,404,40,545,402,1,414,2545,401,64,135,1,746,282,43,348,1,988,384,581,277,26,16,118,654,203,40,1128,239,635,2,1048,59,826,1137,79,549,1,14,382,262,327,1969,22,613,56,384,1,19,1,382,53,535,61,324,27,987,2,587,34,333,2013,89,539,1022,71,1,45,23,6,811,66,104,100,865,113,38,110,246,442,388,72,1,11,440,89,387,60,52,1,875,842,818,384,1,68,471,1,214,370,893,484,1408,2002,1022,1584,19,413,557,342,74,600,64,993,1970,319,153,807,1280,533,872,63,111,152,1,21,1240,567,183,108,62,95,554,1910,946,1435,1703,303,150,560,75,972,965,284,52,511,32,1286,1801,1038,915,38,457,463,97,440,505,414,601,35,2031,168,4,15,219,538,3061,948,1001,913,1447,88,564,1367,1644,912,101,13,323,1670,197,1200,470,3512,1528,287,1,3165,3834,1,7002,6995,15,5020,666,3011,2400,2945,3027,18,1,974,8990,6767,4012,5013,45,10,972,40,1945,}, +Z1N202741 ={ 191549,4008,34,6,894,32,1060,4898,1017,1992,3130,734,1,2113,3161,7,1000,7802,1207,747,3034,4942,1285,58,656,958,1355,981,32,4024,593,119,955,999,1026,2312,585,3425,3571,982,984,988,181,851,1146,2340,1,971,16,984,16,3019,5445,5001,1310,1702,6004,962,319,1,32,1879,1131,1687,1,169,1,29,1,969,1,776,331,1042,221,468,527,790,1655,579,1,594,37,90,1937,8,300,999,1417,61,281,855,1873,324,183,50,1394,27,352,681,63,236,972,19,262,1000,554,1,171,210,1836,1680,1287,1188,530,318,1244,365,166,469,2312,456,12,1695,1,1384,37,538,1,432,2013,1558,1086,255,1230,306,43,128,11,17,345,595,1,373,523,1488,473,1256,225,775,788,119,1829,1165,235,102,907,283,551,1285,630,100,889,848,400,2873,1018,97,988,795,16,1223,1128,165,481,1000,68,291,456,2274,918,214,580,566,646,179,880,2136,800,178,355,250,1312,915,196,10,866,283,661,1349,690,970,358,868,9,10,255,507,185,43,500,466,12,132,427,14,719,1509,3804,949,70,532,1143,227,301,960,252,1568,193,1012,1347,394,967,84,177,250,3129,3351,1274,1,429,1,1077,1750,124,134,866,33,13,1842,3725,120,1393,532,1,694,539,133,27,301,556,999,702,62,2816,1,113,182,1562,699,553,140,1,399,1,511,55,1001,779,1104,446,303,1125,211,907,327,1,240,327,249,290,13,1312,437,1149,60,17,809,29,84,78,1580,2392,1648,401,1836,484,336,462,1433,2063,3385,904,39,1032,1,349,500,1,499,1276,4399,900,35,1,1697,338,1148,1691,741,290,62,1101,1115,3748,728,999,1054,475,343,389,54,947,1597,5988,6218,954,1250,1000,3109,650,410,2562,371,2054,999,63,3744,1,180,1848,754,466,1894,2047,2817,3140,52,1054,724,2228,2604,2402,2048,2006,537,77,294,37,1,721,251,1642,1145,1,1301,520,405,85,1672,53,1000,282,2573,936,1402,1,2623,1106,367,633,912,125,239,3664,3320,984,17,601,108,1946,29,41,14,1,235,120,515,2370,2645,4348,112,2436,10,111,433,395,383,1799,1215,789,2407,376,80,1,146,1153,1155,492,64,297,230,850,851,1115,26,35,896,69,9,562,296,177,2482,66,383,37,25,122,681,1,986,715,22,933,533,551,172,828,15,393,521,10,282,1342,905,28,76,641,683,94,31,389,170,327,377,17,185,488,505,1484,595,404,40,545,402,1,2959,401,199,1,746,282,43,348,1,952,36,243,141,884,22,766,7,196,40,1128,239,635,1,1049,885,1138,78,549,1,14,644,327,103,1866,22,613,56,384,1,19,383,53,535,61,351,987,2,587,34,333,2013,89,539,1022,71,1,45,23,6,810,73,99,99,865,113,38,110,148,1,97,442,325,63,84,440,89,387,60,52,1,1717,818,384,1,68,471,1,214,370,893,484,1408,1049,953,1022,1603,329,84,1,899,73,600,1057,1,1969,1,471,807,679,601,531,2,467,468,111,152,1,21,652,1155,183,108,62,95,554,1910,2381,1703,303,150,560,74,973,301,948,595,118,1168,255,1546,1038,915,38,920,537,505,414,601,35,2031,168,4,15,219,538,3061,948,1001,1914,534,564,348,1019,2556,89,12,13,323,1670,197,1200,470,3512,1529,286,1,3165,3834,1,7002,6995,16,5019,665,3012,2400,2945,3027,18,1,974,8990,6767,3012,6013,27,18,10,1012,1945,}, +Z1N209311 ={ 214760,1000,988,1026,2010,1,1947,6992,6990,1,1081,84,399,364,1647,1370,124,2,486,4440,847,219,488,614,912,3714,1135,693,430,1,569,250,1,71,108,1,738,67,1143,676,995,126,1036,77,2,246,686,846,350,1853,109,21,870,42,87,756,11,9,68,283,462,1,2055,347,827,1,1154,883,775,947,302,103,897,86,655,1010,896,41,1,39,1044,182,121,601,357,68,913,2648,187,936,206,117,1,1965,752,13,961,16,2245,793,4136,2254,851,763,1,3143,1059,1181,624,1232,778,113,170,92,727,1,259,1824,3038,778,222,966,932,1,182,11,51,1743,1125,53,1434,1,373,100,80,1066,355,312,314,20,355,625,1388,1393,99,69,2,65,875,962,2121,1012,702,178,131,387,303,211,56,43,1012,830,1,1067,58,2059,854,99,398,2319,1662,460,13,2883,1657,1,333,3131,1000,985,1,528,35,2956,2376,44,1,939,1,1197,1000,2432,1,1426,963,1,1982,3646,1436,1077,494,364,1,981,636,502,2,38,1,19,1,4442,547,900,1,897,1035,113,494,568,465,395,637,1305,1,179,529,498,501,499,916,13,134,1,351,372,1202,489,372,1195,1938,1424,1000,2436,1,530,19,1,361,302,455,1257,2008,1118,974,50,950,1034,1,459,1024,658,735,220,61,2831,1481,1,661,338,8,522,12,1051,816,205,363,413,1,189,1,1115,1324,1,514,3150,284,641,1,74,892,16,1909,914,2254,1,352,950,1084,342,71,1,94,492,413,1,94,61,1059,305,1,122,374,612,2319,1248,469,938,503,823,28,65,562,345,28,66,2125,978,94,1,889,2927,1161,428,314,1,59,626,374,215,773,107,857,288,1350,50,362,11,628,507,11,954,1092,869,106,1,396,32,641,327,672,386,530,795,1,69,1,115,78,396,1,372,595,419,1189,1041,365,2578,1,23,764,3241,778,987,1022,2194,1,3816,3192,7995,963,4987,1000,1022,6005,981,890,1000,2648,1,472,976,1011,881,648,378,3602,1413,598,1001,374,3015,1,1587,1000,1434,7975,2590,446,852,1727,1395,2663,1,999,1,361,556,403,999,24,1755,1098,232,1923,928,1,57,101,855,802,363,528,309,153,2841,913,2275,602,2,887,353,1010,1757,208,1900,772,2,503,926,1,926,1090,742,1000,915,390,1944,2046,945,1687,150,982,1000,1881,356,691,1080,1818,3249,813,187,1747,1120,1,99,1,15,1625,171,917,1104,2122,66,174,549,211,65,1,792,180,790,16,24,1817,542,444,276,854,856,219,3162,828,133,822,247,24,932,2777,1276,140,1882,14,999,969,920,52,1964,2047,713,42,218,795,273,97,13,1,574,373,627,215,1,1794,254,1966,152,31,1627,285,1001,38,808,113,1,10,950,63,44,13,683,196,1,2116,643,10,135,13,1221,791,1,178,2668,283,1,738,1306,614,1016,166,889,1,99,1,983,222,684,234,14,40,11,596,368,12,1799,1013,221,649,130,221,690,13,1040,1012,1816,85,42,984,52,1938,2910,1,104,54,986,950,37,2879,15,2099,914,40,926,157,908,1001,2034,987,2942,1088,12,870,2076,1001,1032,909,70,2045,1903,1,81,1001,880,1027,35,967,963,1106,941,2018,34,4941,7975,1,}, + }, + { -- continent 6 +Z1N209312 ={ 286890,21,841,989,4022,2119,22,837,141,21,7991,1986,1028,13981,13860,1000,11990,3012,10999,94500,4024,1,2039,1,97,6049,1857,1048,2868,1,999,1,2061,151,2821,1148,2935,1000,2022,936,2931,3094,1,999,1,945,150,1071,1947,4776,1,999,1,969,1,4059,1,169,1,2038,54,1980,1000,9693,2033,4230,2753,1000,3111,3115,750,178,145,1951,1000,1741,3964,12023,1,138,30,2,782,312,687,313,716,999,3307,4732,1002,942,3978,333,665,4066,958,4325,8992,1,2728,970,1000,2,1312,2663,4980,1000,1368,2983,2682,10320,1655,361,1000,7012,2981,637,2017,6367,4617,5022,2365,6614,3367,2651,11364,638,}, +Z1N209313 ={ 246559,1321,4627,2827,251,179,738,1887,1121,1036,1011,4953,2869,1175,2813,1352,1638,1010,977,1226,5831,3041,13,961,1016,2038,4136,3869,3143,1059,1181,2747,262,727,1,6121,2057,24,62,1743,1178,1808,1913,1314,1388,1393,170,5737,178,1088,44,1841,1,1066,59,2059,854,497,12,4429,1012,3542,4463,986,1,562,5377,940,6057,964,1982,3646,1436,1077,858,1,635,346,1140,38,1,19,5442,360,88,898,147,888,1640,395,139,1803,180,529,497,1916,15,857,1201,862,3133,4859,913,757,1257,1008,2118,1025,949,34,1460,5529,1482,1007,534,988,63,816,981,191,2954,3150,1892,16,1910,913,2607,2375,1072,1,94,1922,198,414,2319,3158,478,373,65,8014,1162,743,1059,988,107,2494,413,3203,1371,33,3422,589,373,1014,2594,2604,5769,6033,13150,12015,6519,1448,1892,4628,1413,1599,5977,9409,2590,1298,148,1579,5058,1,917,403,1023,1755,1330,1923,986,101,1657,353,10,528,309,2994,3792,887,353,1010,1757,208,2672,1432,926,1090,1742,915,391,1942,2048,2631,150,1983,1880,356,690,1081,1818,3249,813,1934,1220,16,1796,917,1104,2911,211,65,973,790,16,14,1827,986,130,1856,219,3162,828,133,822,247,23,932,3054,4035,969,920,53,963,3047,714,41,1014,272,97,588,373,842,1,81,1713,2220,183,1627,1324,808,1137,44,13,683,197,2116,643,10,135,13,2013,178,2668,283,739,1306,614,1016,166,889,1,99,1,1204,685,234,14,40,11,595,369,12,1799,1234,649,130,220,704,988,52,1013,1815,85,42,984,52,4849,104,54,973,963,2916,15,1121,978,914,40,926,129,28,1909,2021,1013,2929,1088,881,2077,2033,909,70,2045,1903,1083,880,1049,980,1963,1047,2019,33,4941,7975,1,}, +Z1N209328 ={ 216748,29811,1321,4627,3996,67,2940,1036,1011,3179,1766,872,136,69,1800,1176,6812,896,81,7057,323,2718,13,961,1016,2038,4136,2254,1615,5383,2747,262,727,6122,1898,159,24,1805,2612,374,271,1956,20,980,2781,170,65,3958,1713,179,518,570,43,1012,830,1,1124,2060,854,99,398,2319,2122,1012,3542,333,4130,986,1,528,35,2956,2376,45,939,1,1197,3433,1426,964,1982,3646,1436,1077,494,364,1,1617,364,139,39,1,19,4990,452,448,898,147,888,606,569,465,395,637,1305,1,179,529,498,1916,14,486,371,1202,861,3133,2424,2436,532,380,757,1257,2008,1118,1024,950,1034,460,1024,1393,281,2831,2488,523,12,1051,816,981,190,1,2954,3150,892,108,908,1909,914,4982,659,413,95,1120,802,612,2319,2655,503,851,66,906,3291,2817,3963,988,107,2494,414,10,3192,869,502,33,2026,1395,1,962,595,419,2230,364,34565,6005,981,4539,1448,1892,649,2979,2413,1600,3389,2587,1434,7975,2590,1298,1727,1395,3663,1,361,557,402,1023,1755,1098,232,856,1067,986,101,1657,353,10,528,309,2994,912,2276,604,887,353,1010,1757,208,2672,1432,926,1090,1742,915,4380,946,686,1150,1982,1881,1046,1081,1818,3249,812,1935,1121,99,16,1796,917,1104,2911,211,65,794,179,790,40,1817,986,276,854,856,219,3162,828,133,822,248,955,2777,276,4021,983,920,52,1964,2047,714,41,218,796,957,373,627,216,999,795,2220,152,1658,285,1001,38,808,114,10,1013,44,13,683,2313,643,10,136,12,1221,970,2667,232,52,739,1920,1016,166,889,1,99,1,983,222,684,234,14,40,11,596,368,11,1800,1234,649,130,220,691,13,2040,12,1816,85,42,984,53,4847,105,54,986,949,38,2879,15,2099,880,35,39,926,35,94,28,908,1001,2021,1013,4017,881,3077,1,1032,909,70,2045,1902,1084,880,1062,967,963,2047,2018,34,4941,7975,1,}, +Z1N209329 ={ 286890,21,841,989,4022,2119,22,837,8155,1984,1028,13981,13860,1000,11990,108510,4027,2038,97,6051,1856,1048,3868,1,2061,151,2821,1148,2935,1000,2022,935,2932,4095,946,149,3018,5776,970,1,4060,169,1,2038,12726,2034,4230,3753,3111,3115,750,178,2096,2741,3964,12023,1,138,30,783,313,687,1029,4305,4734,1001,941,3979,333,665,4066,958,4325,8992,2728,971,1001,1313,2663,3980,3368,2982,2683,10320,2015,1000,7013,3618,363,8020,12005,9981,14016,}, +Z1N209330 ={ 236795,483,7434,1847,5948,3005,991,1886,995,1240,3771,2107,9,2868,348,3640,4000,977,1044,903,426,4684,3041,13,977,2038,6006,6142,2864,2123,6890,6285,808,181,4433,1395,169,5915,1032,56,1885,1,1125,3422,2307,3134,885,7120,986,563,2957,2376,3182,3859,963,1983,4646,437,1076,2979,40,4462,546,1799,148,1494,1033,395,1941,181,529,497,1917,500,371,1202,1862,2132,5410,362,2014,2008,1119,1024,949,1034,1484,4505,2143,880,987,1862,190,2439,515,3150,1893,1925,913,2255,2727,659,413,1156,486,375,612,2319,1248,1407,1326,28,66,9175,2897,2495,423,4597,3421,1557,30569,22523,6992,374,5602,15419,4664,361,1982,5009,3106,528,109,353,3847,2182,604,887,1363,6994,9074,1836,3863,356,690,2900,3248,812,3056,99,2729,1104,3122,65,1763,7209,963,866,2157,3054,4035,2905,3761,40,1014,370,14,575,1215,1793,2403,818,810,2320,926,23,44,13,2797,198,644,1,145,2203,821,1846,232,52,2659,1016,166,973,16,1,1205,684,234,53,12,596,368,11,1800,1234,649,54,76,221,690,3881,85,42,984,53,4952,54,1972,963,1917,1015,122,977,915,39,1083,1909,3021,2943,1088,880,2078,999,1033,909,70,3045,903,1083,879,1050,13,967,962,2048,2052,4942,7974,1,}, +Z12N209311 ={ 068843,7000,911,1,1019,1,2840,119,1,762,1093,1200,5924,1,50,999,1758,983,278,720,1000,1249,2840,925,122,943,118,101,2632,140,211,1,647,142,80,1,129,1,714,1200,1890,2813,219,817,330,836,1,999,4008,890,1154,2021,32,668,2026,223,20,1014,814,967,38,1903,975,52,1963,47,953,47,1977,5935,17,1449,3523,2986,423,1550,7,1466,32,1,528,438,4008,20,2504,990,428,1018,12,63,1,924,12,32,2530,6002,999,1,8972,10,167,25,798,10,26,139,27,5945,872,1162,975,1945,964,44,921,105,72,1,946,37,855,45,30,2960,936,35,89,876,1,123,1086,980,1,1035,839,958,190,956,863,75,1127,856,65,934,2,64,2923,117,2016,963,1076,1,887,91,10,813,149,852,148,867,1124,933,961,1164,925,76,3949,1,1041,1856,6017,125,27,848,125,27,933,1,52,7972,1000,1012,1023,1,4857,82,2,4014,2836,1022,79,910,973,93,955,944,209,43,1,747,171,38,43,1,1882,19,2834,1020,227,2980,93,907,94,3701,76,2012,8,1105,39,738,69,217,839,944,57,191,689,1132,2011,13,136,760,45,74,133,684,120,1,880,81,1096,1938,42,1897,89,873,1057,16,2,36,1862,1,2075,880,29,971,28,1032,1009,938,29,290,2690,64,1914,1051,998,287,2719,1952,186,872,1115,1,972,49,124,699,107,9,207,660,17,107,10,206,725,990,145,150,1656,3109,3155,74,758,1,1147,311,729,1032,1,13,4755,35,46,1,399,2,503,14,35,46,1,399,1,156,383,1,1129,1,2805,14,1,123,1040,806,1,2264,1000,871,834,2,3204,1849,17,105,45,68,908,3847,1180,1961,73,9,1734,168,2,901,217,1,747,1001,1023,1940,21,1057,1,2209,1001,1766,103,1,871,129,994,1978,5891,263,737,263,767,1020,94,1832,210,792,292,1985,263,591,84,927,1000,2062,3063,1031,1,709,1,2123,1010,7,980,85,866,1108,1,67,2050,1871,1049,899,113,2,291,549,46,114,291,1482,1054,2159,81,5997,762,2947,4056,33,42,925,1075,1126,750,502,572,990,41,936,1056,35,956,1029,128,872,12,116,1881,53,808,2,3153,1030,64,1280,1609,39,1062,1754,35,1117,2008,12,5826,1,58,1048,35,908,70,1036,974,1,899,1067,941,31,970,30,2954,1069,913,4083,1000,5922,1,16,5028,1980,38,1943,9992,5988,9994,13008,7995,6015,1032,1,1000,1956,23,1,2059,2,1950,3024,956,44,1029,912,4077,1990,5013,2172,757,2134,10,1,20,990,98,1808,4953,1,1055,164,1,1014,5753,31,1028,4018,1000,909,1057,3058,2,1929,1002,2009,3012,2934,103,1,2944,35,1,964,36,2028,3896,2065,1,2035,944,1,3981,1056,3050,1000,1318,1568,4105,1991,132,868,1,1891,227,1892,901,3223,1985,1001,879,4011,973,1020,970,1013,993,8049,1000,1984,3981,2983,7340,9556,7326,990,871,1,809,2,2331,4106,750,796,1213,118,739,207,730,262,1034,985,50,20,845,85,70,3096,2553,241,985,1098,14,654,356,70,574,426,1,22,627,1,11,1156,101,2644,267,1,840,1260,12,1662,323,676,323,820,3811,1075,3133,3804,1,1039,1002,123,890,1136,999,800,1001,2990,4989,1002,6998,1,3176,1001,3812,1,177,5819,3178,3805,1,3191,797,7118,855,2009,999,184,1956,1,2874,139,20,5851,1137,998,2018,}, +Z12N209313 ={ 269336,1022,989,973,1048,944,999,4989,1020,8002,76,2012,8,1882,69,1056,1001,879,1133,943,1069,12,896,119,817,108,12,1,880,1177,1938,42,1897,89,873,1057,18,36,1862,1,2075,880,29,971,28,1032,1009,938,29,2980,64,1914,2050,3005,1952,1058,2960,982,18,1048,990,1951,}, +Z12N209328 ={ 076755,1019,1,2960,762,1093,1200,5925,1049,1759,1260,720,2248,2841,1047,877,68,116,101,2772,859,223,844,1200,1889,2814,219,817,330,1837,4897,1154,2022,31,668,2025,224,19,1014,815,966,39,1903,975,52,1963,47,2977,4936,1016,1449,3524,2985,423,550,1007,1497,530,438,4008,20,2504,990,428,1030,63,1,923,45,1529,8002,1,8972,10,167,25,798,10,27,138,27,5945,872,1162,975,1945,964,44,921,105,72,1,946,38,855,43,31,2959,972,89,876,1,123,1086,2017,837,959,83,107,956,863,1157,45,856,999,66,2924,116,2016,963,1076,1,887,91,10,813,149,852,148,867,123,1934,961,2089,75,1,3949,1042,1856,6017,125,26,849,1085,1,52,7972,2012,1023,1,4857,84,4014,2836,1022,79,910,973,93,955,944,209,43,748,171,81,1,1882,19,2834,1020,227,2980,1000,95,967,2733,76,2012,7,1145,738,69,154,902,1001,191,689,1132,943,1068,13,136,760,45,73,134,684,120,1,51,829,3115,42,986,911,962,1057,19,36,1861,1,2076,879,29,971,28,1032,8,1939,29,290,2690,65,2913,1050,286,2719,1952,58,128,1987,1,972,49,124,699,107,876,17,106,11,206,725,990,145,149,1657,2109,4155,74,758,1,1147,1040,47,985,1,4768,35,46,1,904,49,46,1,939,1,1129,1,2806,13,1,123,1040,806,1,2264,1000,871,836,225,2979,1849,17,105,113,908,3847,1180,1961,73,9,1734,168,2,901,217,1,747,1000,1024,1961,979,78,1,2209,1,2766,103,1,871,1123,1978,5891,263,1000,767,1020,94,2042,792,292,1985,854,84,927,1000,2062,928,2135,1031,1,709,1,3132,988,86,865,1073,35,1,67,3050,871,1049,899,115,840,46,1887,1054,2159,81,5997,762,2948,4055,33,967,1075,1126,750,1074,990,41,936,1056,35,956,157,872,1000,128,1881,51,810,3155,2093,1890,39,1062,1754,35,1117,2007,13,5827,58,1048,35,908,70,1036,974,1,899,1067,942,30,969,1985,2982,87,4996,5922,1,17,5027,1980,37,1944,9992,5988,9994,13007,7996,6016,1031,1,2956,23,1,1061,2950,3024,956,44,1029,912,4077,1989,5013,2173,757,2134,10,1,20,990,97,1809,4953,1,1055,165,1014,4753,1031,1028,5018,909,1057,3058,2,2931,5021,2934,103,1,2945,34,1,964,36,2028,3896,2065,1,2035,944,1,3981,1056,3050,3886,1107,2998,1991,1000,1,1891,227,1892,901,3223,1985,1001,1879,3011,973,1020,1971,12,9042,1000,1984,3981,2983,17896,6326,990,872,811,2331,4856,796,1213,118,739,207,730,1262,1069,865,85,70,5649,241,985,1098,668,346,10,643,1077,1,11,1258,2643,267,841,1260,2673,1143,3810,1075,3134,3804,1,1164,878,1012,1136,1799,3991,5991,6998,1,3176,1001,3812,1,177,5819,3178,3805,1,3191,797,7118,4046,1958,3014,20,5850,3152,}, +Z12N209330 ={ 269336,1022,989,973,1048,943,1000,4990,1019,8002,76,2012,8,1882,69,1056,1001,880,1132,2011,13,896,118,818,108,12,1,51,829,82,3033,42,897,89,1873,1057,17,38,1861,1,2075,880,29,971,29,1031,1009,938,29,2980,64,1914,2050,3005,2952,58,2960,982,18,1048,991,1950,}, +Z4N209311 ={ 085384,1001,1964,1050,3933,1036,1000,978,180,813,1985,1,224,806,3165,2837,991,1984,3202,1016,12011,1824,999,3144,1017,1859,1,2238,973,5788,1,3165,31,1815,8071,990,5982,1038,5981,7848,7006,1289,877,842,5149,1148,1001,1966,5854,5151,14983,4828,5171,840,9013,1,6991,5272,2031,7625,1,12001,986,4027,16192,5983,1000,1,7019,1208,2580,1963,3023,969,1261,223,573,1,999,1,1344,1944,694,1211,1754,18,337,784,267,32,38,2786,1,3084,2699,1979,1000,103,138,4978,5122,2121,4015,1730,1,6999,1909,1101,719,282,1865,2850,3282,8225,3992,1000,2028,1939,3527,1527,2947,2012,5135,1,407,1014,585,982,1008,777,3986,2257,1977,4992,2036,967,33,738,1001,5278,370,3011,1,338,755,1870,1651,1010,2331,69,977,23,1080,254,9,5016,2245,1730,721,1,878,1080,3586,395,1,984,2025,1,76,5902,1602,11,3392,1592,969,1447,1545,6996,1503,526,536,429,2046,981,1000,985,3504,3915,5999,1117,1966,1,4916,97,6009,2006,5008,1052,1987,20,1000,2884,123,3862,113,959,3035,1887,142,892,40,1051,985,24,4014,5846,8,1983,5059,7980,3009,11989,9849,1,12,3974,1018,989,1986,1032,4974,5022,9,3977,1000,3013,143,1,5866,979,2012,4009,123,1,3919,1,4084,850,976,3164,9902,1000,7018,910,6145,1,1975,12,974,892,4994,99,883,4943,1996,2181,1,8809,5188,10000,16972,2990,970,1001,51,936,64,1966,2957,1091,13,7,6021,867,124,4896,973,17,161,829,171,1839,9,2970,7012,6993,3007,12997,6000,13008,3011,12003,1989,5011,2017,5009,1001,7018,3010,14,1015,7942,4013,13,2020,}, +Z4N209328 ={ 134404,9001,34921,8295,8016,1000,966,46842,21919,13002,55394,562,38141,42431,1422,26987,3350,15045,13723,10906,4009,23966,5999,8000,97,13023,1052,1987,3904,123,3862,112,960,3035,1887,142,892,1091,1009,4014,5846,8,7043,7979,3009,11989,9850,12,3974,1018,1989,986,1031,4976,5022,8,975,4001,3158,861,5984,5,6139,1,3919,4085,851,4139,9902,7018,1910,6146,1961,14,12,6860,99,7822,2182,8809,5189,9999,22984,4923,1091,6041,5871,15,1152,829,15999,2995,}, +Z5N209311 ={ 350707,1845,11,2138,1006,1862,1112,1013,1866,1140,1033,1011,4,44,949,1044,903,40,2049,1021,881,73,2020,989,1000,1776,190,45,31,715,2227,48,737,155,51,1771,42,128,44,980,1026,74,713,1,26,7,194,8,1059,8,2947,7,1012,715,2183,869,131,61,65,693,10,20,102,862,291,977,1033,721,207,44,818,15,92,7,1077,1950,1890,119,33,945,991,896,1129,879,1018,3015,3158,1848,1145,704,1017,265,2700,242,9,55,1,730,134,11,828,19,1232,1795,1,939,2022,147,999,3015,818,54,956,1134,11,2023,2976,3022,1006,1103,878,27,86,723,1,12,2157,1093,30,1900,80,908,101,863,1030,85,893,1097,1182,871,129,1842,15,1873,9,2074,185,1725,992,34,161,999,898,1187,1006,743,973,1190,823,96,1035,31,861,59,871,313,740,80,899,41,76,827,1330,901,810,167,139,656,144,70,797,17,54,1055,1001,58,1831,2308,605,1064,39,23,9,891,28,61,26,903,29,123,841,51,176,804,125,80,724,1,114,6,966,51,1263,882,742,12,194,163,656,963,83,889,222,894,164,690,37,134,139,760,1173,27,991,892,26,842,425,712,94,187,660,90,840,977,49,1,25,197,57,720,1,28,171,1,1194,644,65,833,465,693,124,56,655,151,863,285,1832,901,110,198,667,334,1820,99,41,745,289,1806,15,881,1251,39,967,840,1000,2019,1989,23,154,948,727,264,799,250,1756,1008,917,1068,1955,982,313,735,1020,201,743,231,10,784,9,991,9,1959,46,2186,1,2824,1006,2184,988,833,2197,772,7,12,217,3800,1198,787,1024,987,166,1807,49,193,197,1751,19,798,3219,970,3898,345,371,1,1231,758,258,1000,1750,12,403,1208,405,252,651,330,681,1,79,205,174,973,1011,571,663,1301,112,1587,311,45,964,50,1979,989,1083,1888,1987,1703,1317,17,1,1657,2368,1985,651,301,2042,23,1630,302,4044,1060,2935,3025,2024,1957,1070,2585,4005,346,57,942,1,57,4920,677,2326,985,2690,3339,1977,4010,18,3010,7013,12,4516,999,1011,13,2015,2979,1010,461,2511,1,496,1936,606,989,972,517,1919,573,436,572,6919,2008,1983,1098,491,1457,982,973,19,31,955,91,2026,1,465,471,1029,17,934,1113,1,911,524,535,917,976,30,64,1982,967,1043,63,844,112,947,91,1993,1,208,81,647,2358,629,354,2025,1913,1000,4083,906,65,1,1011,}, +Z5N209313 ={ 350707,1845,11,2138,1006,1862,1112,1013,1866,13,1127,1033,1011,4,44,1993,904,1058,1030,1021,881,2052,9,16,16,3031,734,156,34,11,34,985,2036,737,154,68,1755,42,172,980,1027,73,740,1268,8,2947,7,1012,715,1247,936,61,808,192,64,694,10,983,283,9,912,66,765,267,721,207,43,819,15,2029,3106,33,945,991,895,1130,879,1018,3015,3158,1848,1144,705,1017,265,2942,64,694,37,134,11,827,20,1232,1796,939,257,1765,147,4014,818,54,956,1145,2023,2976,3022,1006,1103,878,837,12,2156,1094,894,1036,89,899,964,1030,85,1990,45,1137,2842,15,1873,10,2073,185,1725,993,33,161,897,102,1803,282,1748,68,2096,823,96,1065,862,112,142,989,691,174,854,41,76,826,2232,99,711,306,656,214,797,17,47,7,62,1993,59,798,1034,2307,605,106,958,62,8,892,89,26,1896,1,30,196,929,80,725,1086,51,1263,882,754,194,163,631,25,66,897,83,889,222,1058,689,38,40,69,24,140,760,963,210,1018,918,1267,807,186,661,58,31,829,249,739,49,1,222,56,721,29,171,1009,186,709,833,465,528,289,56,806,14,849,285,1810,22,901,110,1199,1919,41,745,289,961,846,14,881,1290,2807,2019,1989,23,154,948,991,1049,1756,2993,1955,982,313,1956,974,10,784,9,5192,2824,1006,967,1217,988,1833,1197,772,7,229,2782,1989,1227,810,988,1973,50,192,197,1770,1806,2211,969,4244,371,1,1231,758,3008,12,402,1209,406,251,651,448,563,80,205,174,1983,572,663,1301,112,1587,311,45,8,956,2029,989,1083,1888,3690,1317,17,1658,305,2063,1985,952,2042,23,1630,4346,1060,2935,3025,3981,1071,2584,4005,346,5654,7001,5316,4010,10041,12,3544,1971,3039,2978,1011,7,3462,509,3995,516,1919,1582,427,582,7917,1983,102,2903,41,962,993,32,18,1046,921,106,999,1945,21,17,934,1113,905,1067,880,36,976,93,943,1040,967,1043,63,956,947,91,1994,208,81,647,2987,2379,1913,5989,65,1,}, +Z5N209328 ={ 350707,1845,11,2138,1006,1862,1112,1013,1866,1140,2044,4,44,890,1103,903,2089,951,70,954,2004,16,967,1018,1046,734,190,11,34,3021,737,155,67,1755,42,128,44,980,1100,740,7,194,1067,8,1914,1033,7,1012,715,1247,936,870,256,703,20,102,862,291,977,1033,720,252,818,15,99,18,1059,3959,33,945,991,895,1130,879,1018,6173,2992,705,1017,2965,252,54,731,134,11,60,768,19,1233,1795,939,2022,4161,818,54,956,1145,2024,2975,3022,1006,1103,878,836,1,12,264,1893,1093,1930,61,19,9,899,964,1030,978,1097,45,1137,2842,15,1873,16,2067,185,1725,1026,161,897,102,1803,282,1006,742,2164,823,96,1035,31,861,59,1925,79,49,850,41,76,827,2026,205,1116,656,144,70,797,17,54,3114,3139,605,1054,10,39,23,9,891,89,26,903,152,841,31,20,175,1010,734,112,1016,1263,882,754,194,163,656,66,897,187,785,222,1058,689,38,133,140,761,962,210,1018,892,26,1267,575,231,187,660,59,31,860,218,739,76,196,57,720,29,171,80,1115,709,108,725,270,16,179,528,1151,863,2095,22,901,1309,1960,745,289,1806,15,881,1290,929,1878,2019,1989,23,154,948,991,799,250,1756,2993,1955,1295,1755,201,974,10,784,9,5192,2824,1006,2184,2795,1027,196,779,12,217,2967,1804,227,210,577,1024,1153,1048,759,1049,981,160,4036,820,149,4244,371,1,1989,3008,12,1402,209,405,903,448,563,80,205,174,1983,572,663,1301,112,1587,311,45,8,954,2031,989,1083,2889,986,1703,1317,17,1,1657,2368,1985,651,301,2042,23,1631,4345,1060,5960,1024,2957,1071,2584,355,4053,597,403,4920,677,6000,3340,1977,4010,18,3010,7013,12,5515,1011,13,3016,1978,4479,3531,972,2436,1581,6919,2008,1983,1098,1948,962,20,973,50,1046,1027,999,937,955,74,17,934,1113,912,1060,916,976,30,64,1895,87,967,1043,63,956,947,91,1994,936,1278,1709,2379,7902,66,}, +Z5N215413 ={ 706729,33061,15101,}, +Z8N209311 ={ 225336,4989,999,7004,2938,2998,71,1959,1984,1982,36,42,18,949,1023,19,3167,840,938,1228,2760,1245,746,24,3970,33,7236,1,2009,1,830,1706,7,9,3197,1,8080,1092,1106,511,1,1350,28,918,54,3136,43,598,9,1029,370,455,116,183,90,2124,39,439,205,810,166,213,764,1,220,153,588,79,803,1020,1093,133,1,747,382,2835,208,1000,584,19,92,72,1,20,11,162,630,1395,849,158,623,336,1678,156,52,73,147,564,386,36,7,588,292,986,99,112,510,475,718,96,61,1135,1851,619,5,31,309,45,35,910,781,14,95,912,994,204,83,80,737,110,1134,209,539,888,1036,1227,70,695,329,14,627,294,749,92,213,601,11,83,298,1,901,728,313,1697,4,1143,2011,2791,3206,783,3056,934,340,720,48,6,993,7,220,1721,11,932,81,1521,871,1514,578,23,513,435,25,21,31,425,56,424,136,383,535,82,8,868,57,13,35,805,860,175,640,300,192,132,239,56,157,344,135,570,9,219,250,391,66,282,171,343,130,519,809,94,457,132,75,107,135,88,148,901,162,20,434,68,147,637,203,180,1110,93,182,367,127,1118,22,24,149,361,674,7,394,182,808,359,56,95,849,420,1,158,470,593,569,138,247,62,528,1097,11,292,1015,283,261,159,574,302,13,441,33,543,733,217,1,179,97,510,6,207,1,62,55,62,98,429,4,258,9,500,300,412,696,1621,1697,239,454,207,127,283,680,56,1,512,464,551,1318,414,606,30,57,8,34,235,441,271,548,1481,44,492,128,197,407,22,406,260,10,50,511,524,496,514,456,29,385,94,642,753,222,233,390,32,115,111,161,7,238,628,695,1603,184,208,1235,473,89,260,556,194,11,184,162,1011,74,369,13,12,180,21,180,1029,132,209,9,278,560,595,1312,189,188,280,212,176,629,818,44,478,254,244,529,147,1053,280,742,113,677,481,466,184,490,1,1868,336,130,52,7,197,285,136,652,571,109,14,218,414,339,247,134,1,285,7,350,230,1106,252,875,118,18,298,1,396,591,110,986,360,27,267,815,1402,431,705,295,89,97,111,2301,1486,940,1,34,299,300,24,387,573,407,217,1099,207,20,327,14,216,53,370,20,557,432,103,1,672,1420,289,136,450,275,9,315,410,396,964,347,419,376,504,1107,563,722,705,1,481,97,450,366,1172,590,859,444,1,129,698,21,206,734,673,16,223,240,75,804,144,121,395,368,116,131,42,271,542,7,28,63,375,357,1,10,315,37,558,716,273,1,133,995,262,32,908,49,1,364,291,250,472,10,1024,357,194,346,103,239,105,561,35,315,96,210,1028,14,32,975,1014,919,952,418,1015,303,2312,59,22,303,1671,313,1211,859,171,987,92,954,746,1039,226,43,734,223,752,16,1035,927,227,442,357,29,139,122,894,1037,321,611,43,1089,290,42,32,9,952,541,972,239,7,174,46,40,543,428,433,532,15,579,866,82,21,444,492,80,1405,505,638,485,893,84,320,154,391,526,537,280,6,112,208,363,11,1474,139,22,330,86,511,992,471,1091,124,249,493,98,538,397,213,770,8,34,6,386,534,1556,111,861,1,582,144,32,253,455,146,423,894,552,17,105,340,10,643,393,153,454,17,118,257,589,399,28,740,742,47,494,934,975,209,331,2049,22,604,546,825,444,739,1232,46,1757,209,50,1,154,531,874,1,1011,17,1246,1116,187,1007,696,2164,2127,603,2263,752,1,76,302,1708,83,63,864,147,1768,166,979,216,652,16,1279,1,979,1,411,354,1007,228,12,1059,349,306,253,20,403,453,9,199,957,721,244,394,1031,1955,18,508,500,500,174,33,911,14,711,18,163,973,525,573,923,1012,448,13,475,213,350,1453,143,14,850,19,69,48,1347,29,611,968,441,460,1035,23,67,41,52,1298,14,19,50,444,569,1440,1460,1045,557,408,46,29,8,555,1419,526,72,1,358,508,1171,10,320,1016,1642,1908,62,431,440,19,35,438,34,486,484,71,139,8,462,364,1485,49,652,308,475,5,651,370,471,63,96,404,1473,468,38,472,4,1473,1554,473,533,77,355,594,440,561,960,1014,1071,1910,44,2436,550,1482,535,459,976,546,35,431,7,553,961,68,435,2013,482,78,2975,4005,2421,566,423,1014,3009,1,}, +Z8N209313 ={ 568271,10,5039,1997,28939,3009,982,2977,1031,1973,1008,4022,2956,13,1038,3944,28,3021,1976,13,19,51,1012,2900,1045,965,46,29,8,2931,50,1959,1016,2981,1037,25,932,34,1041,3942,5,1021,1035,1940,38,1949,2027,965,9030,3032,971,1018,2017,2013,11945,3029,}, +Z8N209328 ={ 225336,7995,7935,3069,1959,32,1952,1982,37,41,18,949,2042,2167,840,938,1228,2760,1245,746,24,3970,33,7236,1,2009,831,1706,7,9,3197,1,3083,6089,1106,511,1380,616,301,54,3136,43,598,9,1029,370,571,183,90,2124,478,1015,166,213,764,1,373,588,79,803,1019,1094,134,1129,4,614,2216,1209,584,6,13,92,73,19,12,162,2025,849,158,623,336,1678,208,73,147,564,386,36,6,589,292,986,211,985,717,97,61,1135,2471,4,31,309,36,9,34,915,777,109,906,6,1198,41,42,80,737,110,1134,1636,1036,314,983,695,344,626,114,180,749,92,214,600,393,612,289,728,313,1697,4,1143,2011,2791,3206,1776,2063,1274,768,6,1000,220,1721,32,986,991,536,871,1514,578,23,513,435,46,31,906,518,535,90,868,57,13,44,536,260,860,174,641,300,192,427,157,344,82,32,21,570,9,860,348,171,343,130,879,449,94,589,75,330,148,901,616,68,987,180,1110,275,367,127,104,1014,22,24,149,361,674,7,394,182,808,359,56,95,502,767,159,470,593,569,138,247,590,1108,292,560,455,283,1296,13,111,330,33,543,733,217,277,510,6,207,63,644,4,257,9,801,412,288,408,386,1235,1697,239,454,207,127,283,680,56,1,512,464,551,1318,414,606,88,7,34,235,666,46,548,1525,620,197,139,268,22,406,260,10,50,511,523,1011,456,414,94,642,187,789,232,391,31,115,111,168,736,130,695,1787,208,1053,182,473,89,816,205,184,162,484,527,73,370,13,192,21,180,1029,132,156,53,287,560,594,1313,377,280,212,176,629,818,44,478,254,244,676,80,973,279,518,225,790,481,487,163,490,1,325,879,663,467,17,35,7,311,171,136,652,571,341,414,586,134,1,285,7,330,20,230,1105,253,875,118,18,286,12,1,396,701,1346,27,266,816,1402,431,705,295,89,97,111,2301,1486,940,1,34,139,160,300,24,387,980,594,623,99,207,20,327,13,1085,41,91,432,103,673,1420,289,136,450,275,9,315,411,1493,213,419,880,1107,563,722,705,1,481,97,450,1538,590,859,444,1,129,698,21,206,734,151,522,9,230,240,75,804,265,763,116,173,271,542,7,28,433,5,357,1,10,315,37,558,989,134,995,225,37,32,909,48,365,291,250,472,10,634,390,357,194,346,342,106,560,35,315,96,209,30,1012,33,975,1933,952,418,1015,303,1392,562,358,59,325,1984,1211,859,171,988,1791,1039,226,42,360,375,223,751,17,1035,927,227,442,357,29,139,122,894,1037,321,611,43,1089,290,42,32,9,952,1513,239,7,174,46,40,543,428,433,532,15,579,866,82,21,444,492,80,1405,505,638,1462,320,154,391,526,537,280,6,320,374,418,1056,139,438,511,992,457,1105,123,250,590,539,398,982,8,40,173,213,2090,111,861,583,176,252,602,423,568,326,569,445,653,393,153,589,257,589,399,28,1529,494,586,348,975,209,2380,22,604,546,1269,739,1232,46,2016,1,154,531,266,608,390,622,17,1247,1302,1007,696,2164,2127,603,2263,752,77,302,1000,853,1012,2913,2163,981,411,354,1247,1059,349,559,20,403,661,957,721,244,394,2031,454,519,1008,707,760,151,14,41,360,491,1498,573,923,1012,448,13,688,1803,26,131,850,19,69,48,1347,640,389,579,901,541,517,67,41,52,313,17,486,482,83,444,569,1440,1460,700,345,557,408,46,29,8,555,1419,526,72,359,508,1501,1016,1642,1908,493,440,19,36,437,34,486,555,147,826,962,572,959,98,378,5,651,370,471,63,500,1473,468,38,472,4,111,1362,2027,527,7,431,594,1001,960,2085,934,976,44,1436,1550,2017,459,977,544,36,431,7,553,961,68,435,1007,1488,78,3975,5992,1437,3010,}, +Z8N209330 ={ 612273,6985,2956,13,1038,3943,29,4996,33,51,1012,1924,976,1045,965,45,30,8,2968,1013,959,5059,952,14,1014,27,1936,2011,1021,1034,1941,38,3976,965,9030,3003,23,1995,4030,11964,6013,}, +Z9N209311 ={ 442442,1033,9975,10985,49,1,951,48,1,5035,947,2967,1000,6020,2969,13,25,71,891,11,1,26,71,4004,1941,3947,1001,5030,998,13,59,914,85,1896,3154,2,3945,2913,1,3014,90,5950,1000,6058,903,1106,907,2,2023,1018,7017,60,2,938,2,58,2898,14063,2,17035,4958,1001,62134,2,1095,1004,6943,16032,}, +Z9N209328 ={ 484532,17994,12908,2015,13098,1903,124268,}, +Z10N209311 ={ 187426,14,1014,1013,2703,967,2013,1989,1023,1017,5967,6015,38,7381,1613,2986,2402,1543,1001,3987,1271,2193,649,973,26,1908,1988,86,1172,862,1329,1001,1651,3162,737,117,2855,3985,9066,3013,2024,2051,2970,3030,988,9934,963,1103,911,1000,15,2953,3132,29,1819,1130,912,974,3083,1084,1909,5917,2036,4154,4857,989,1059,1091,2,923,319,692,25,17,354,605,24,1,262,108,1927,690,3423,520,1456,576,433,2606,1368,3602,2368,1,1039,1,1983,6971,108,892,108,196,1726,3227,1749,19,27,993,1261,1008,2801,1,1918,210,2078,928,8853,12178,16,11,1981,2022,10004,1,9011,25970,2020,3989,31002,4999,681,303,987,1725,10993,8056,4153,1,16,2743,1206,1041,1012,24,984,719,27,2202,1757,30,90,910,1267,7,940,3888,874,4292,1678,1026,990,1316,2677,4985,1338,1,7618,6065,139,1797,1,16,3191,3987,830,42,1009,2081,847,196,1,199,2625,93,1045,966,1047,824,1,218,1010,9,11,2141,748,253,1623,1112,3138,934,189,826,35,25,708,277,1028,89,851,786,958,1,51,179,92,893,819,312,737,214,7,42,984,28,653,234,76,112,521,473,805,184,689,2302,617,13,20,875,30,36,964,1123,140,112,2684,334,747,934,10,22,60,802,127,219,13,1,802,253,667,100,821,1031,1006,76,59,927,229,50,713,121,1159,701,6,84,36,861,332,745,880,1,986,13,159,150,698,28,1006,151,1168,730,1,1045,2921,1105,58,269,520,87,393,970,621,23,67,40,1,19,1,11,3846,27,18,901,145,89,754,20,257,715,110,64,92,1,733,44,66,1980,75,111,1,749,1,327,8,1704,1,165,853,83,299,774,97,112,1705,41,2,259,699,41,26,222,611,6,173,834,28,67,198,111,567,50,184,187,797,82,1772,31,991,313,760,149,1972,11,784,336,673,979,1927,51,83,880,228,40,30,838,111,63,797,109,830,941,59,82,3192,743,14,228,781,16,146,866,284,874,27,1060,868,106,894,24,1062,948,196,814,1090,110,868,52,1637,8,2288,129,780,91,1021,14,681,436,861,90,1658,317,711,214,723,104,299,702,84,898,28,1871,43,982,370,687,121,93,815,265,29,751,265,23,586,19,86,300,578,86,2132,74,151,1946,1746,1,1303,4845,7,144,856,144,1,1707,1082,1,1932,3054,71,984,4992,157,989,1,792,2028,53,1153,900,99,1870,1109,15,2012,870,2032,978,130,1000,733,233,3927,985,1,4982,18,889,1,1101,110,837,921,109,47,2077,773,1087,162,1993,2851,980,2064,987,1,875,33,29,190,3997,1820,163,817,37,918,1,1101,12,1024,62,1,811,1182,38,806,2022,1,13,1043,105,804,1177,1937,1,1055,851,1130,7,881,39,1926,50,1,84,991,983,1900,2009,1092,1,5924,62,960,1000,1029,3953,975,35,1978,}, +Z10N209312 ={ 167433,6105,2042,2827,993,1154,1,32,3953,1001,1849,4091,100,1886,1029,886,44,69,3079,1863,1115,839,82,1018,930,999,969,92,11,942,1,5062,12001,1000,5994,925,14,5052,3941,1,3992,3022,1013,16,946,6008,1971,7006,1019,20359,5921,4111,1967,4925,1043,1,2978,9027,5975,7026,7985,41728,1,9015,1994,2990,8083,1987,1,6012,2992,269,990,984,1713,292,1015,1975,2710,1993,1000,5030,11267,2984,1000,4005,4016,2981,2007,2014,1,2045,2957,1022,13025,1,3970,6005,3011,60720,983,1,999,1,6022,7991,217314,5027,1983,2015,3967,1,1010,3014,}, +Z10N209313 ={ 197139,138466,8016,9979,137277,4999,3696,10993,8056,4153,1,15,2744,2205,42,1012,23,732,253,1719,1230,1785,91,2177,8,939,3887,875,3292,2678,2016,1316,2677,4985,1338,1,7618,6065,1936,7067,958,1051,1081,1847,196,200,2625,3151,825,218,1030,3142,1623,1112,3138,1123,1871,1117,1637,959,51,271,2760,1248,991,112,994,989,2991,616,14,3048,252,2684,2025,22,989,233,1722,100,2934,59,1919,121,949,911,6,120,860,333,710,2074,150,698,28,1006,2049,1046,2921,1105,933,365,29,1591,23,67,72,2891,955,27,64,855,234,774,1082,64,93,777,2046,75,111,1078,8,1870,853,83,300,773,97,112,1706,301,766,222,617,173,834,28,67,198,111,567,50,184,182,802,82,1772,31,317,1673,16,58,1149,973,10,784,1009,979,986,991,84,1108,40,30,838,174,797,109,1912,3193,742,14,1009,16,146,866,284,874,27,1060,868,105,1981,948,1010,1046,1022,52,1637,1007,1418,781,1111,13,682,294,1003,90,1658,1028,2042,84,898,28,1871,42,1353,687,1029,265,29,1016,23,586,19,1051,2130,75,2097,7895,7,3934,1,4986,71,984,3992,2147,10,782,2028,53,1153,900,1969,11,1098,4907,22,1108,1733,233,3927,985,4982,908,1049,54,108,1867,48,2077,774,1086,162,4843,980,2065,988,875,33,29,6007,163,817,37,918,1102,1036,62,1,937,1055,39,806,2022,1,13,1043,105,804,1177,1938,1055,851,1017,112,8,920,1925,51,85,991,983,1900,2009,1092,1,5924,62,960,6957,35,1978,}, +Z10N209328 ={ 187440,7710,1989,144506,1976,1009,3974,8003,991,8080,6897,19,27,6063,1919,12069,26213,71992,5680,303,987,1725,10993,8056,4153,1,16,2743,1206,1040,1013,23,985,746,973,1229,1787,90,2177,7,940,3888,874,3292,2678,1026,989,1316,2678,4985,1339,5688,1930,8001,3208,3987,830,1052,2927,196,200,2625,93,2011,1872,218,1010,3162,1624,4249,1123,861,25,985,1117,1637,959,51,271,1713,1048,221,1026,28,653,422,994,989,2990,618,13,1063,2125,112,2684,335,746,944,22,60,930,218,14,802,920,3034,59,927,228,764,1981,6,84,36,861,3116,150,698,28,1006,2015,34,71,975,4353,520,480,970,644,67,41,31,3846,27,18,46,855,234,774,1082,64,93,776,67,1980,76,110,1,749,328,8,1870,853,83,300,773,97,112,1706,42,259,766,222,617,173,221,642,66,198,111,567,50,183,188,748,49,82,803,969,1022,1015,207,1972,11,784,335,674,979,1978,74,9,880,228,40,30,838,112,62,906,830,1082,3192,743,14,1009,16,146,866,284,874,27,1060,868,105,1919,62,43,905,1010,1046,1022,52,1637,3206,1124,682,1297,90,1658,317,711,214,1828,84,898,28,1871,42,983,272,98,687,121,908,265,29,751,893,86,878,86,2131,75,2097,1747,1303,3845,1007,1000,145,1707,1082,1,1932,3054,71,984,4992,157,990,2820,53,2053,1969,11,1098,4907,22,1108,1733,233,3927,985,4983,907,1049,53,109,1759,109,47,2077,773,1087,161,4844,981,1065,1987,875,32,30,4187,983,837,980,37,2020,12,1024,62,1,811,126,1056,38,806,2022,1,13,1042,106,804,1176,1939,1055,851,1129,8,881,39,1926,50,85,991,983,1900,2009,1092,1,5924,62,960,2028,3954,976,34,1978,}, +Z10N209329 ={ 191481,3945,69,4942,6055,6004,32921,40360,93687,9016,1994,11073,7000,3992,269,990,984,2005,1015,1975,2710,2993,16297,2984,1000,4005,4016,2981,2007,2014,3046,1957,1022,14024,2972,3000,6016,60720,1983,1,6022,6991,218314,7010,1015,1000,3967,1,1010,3014,}, +Z10N209330 ={ 329134,12511,1976,10978,2008,9071,2902,85286,42691,303,2712,10993,12210,16,1828,3162,1013,23,984,4825,880,1298,946,60,7994,3677,27,11306,1,3662,2026,13236,4762,4333,1718,1908,137,966,7885,1112,3138,1123,861,25,986,2753,4256,1948,1182,989,689,1931,371,3818,112,1684,2082,943,1012,218,3747,1023,1214,51,993,695,1006,6,84,37,1192,710,2902,20,1185,969,930,69,896,80,4873,309,1762,162,1866,345,710,925,26,65,856,233,1856,63,94,776,2047,75,111,1086,1870,853,83,1170,112,1011,695,1289,790,834,28,943,415,803,82,803,3006,58,149,102,1871,10,784,73,1263,3593,120,108,40,30,1012,797,109,846,1066,2141,1795,12,1010,16,146,56,810,2219,894,1024,3020,2068,3984,911,1125,681,293,2003,1777,937,402,703,84,898,6055,249,39,1569,86,2132,2171,1747,6155,2852,1082,1,4986,71,984,6139,2820,53,2053,1968,4006,2032,979,2096,3927,985,4982,17,1940,162,1758,110,47,2077,2021,4844,980,1066,1987,875,6069,163,816,38,2020,1098,1994,38,806,2022,1,13,1042,106,803,1178,1938,1055,1981,7,881,1964,51,85,991,2883,2009,7017,1023,2027,3954,975,35,2978,}, +Z11N209311 ={ 079384,1001,7015,10848,2196,1,965,2980,1000,5067,10947,1001,6054,5930,57,942,58,5916,1909,22,6085,937,999,3147,1000,6023,1002,1845,37,1000,965,7016,1148,2003,3850,2957,1180,1000,5851,950,11015,3028,6053,1,1892,1000,2130,5958,999,12897,16068,5923,5077,1001,950,1977,4094,1973,1001,2969,2,6027,1000,2915,66,2,3044,3338,577,999,10968,6434,2584,8426,999,999,1979,2,3705,3244,1,8731,284,999,715,1,1248,20,2684,3031,251,642,1001,357,704,2,69,1,1957,4898,1061,1000,1303,1002,668,1,946,1033,1,2039,2270,1,2017,2012,1,2629,1331,671,1073,253,16,732,266,4964,1954,1,1737,281,2,14,703,282,5042,962,3010,701,299,31,942,2013,4008,1159,866,161,1000,831,195,1,776,1052,153,512,337,2775,414,794,114,17,76,444,1000,350,1193,1785,1247,1,569,1,1328,2026,660,29,1000,971,399,1572,5,4415,974,1,2644,1417,6558,2,998,1,376,1673,1,813,531,1490,530,25,1,8449,1002,3494,1039,1000,3545,1,967,464,3983,5028,3494,1073,1,353,46,2,598,1,352,47,1,972,8053,581,419,2614,1,1352,2018,998,969,2564,1998,3087,2953,1,999,1,1974,4410,40,2608,999,998,3383,4569,21,979,21,977,1420,1,11984,}, +Z11N209313 ={ 079386,8014,13045,1965,1981,6065,11949,999,5056,6927,5977,1906,23,6085,1936,3147,1000,7025,1883,998,7982,3150,3851,2957,8031,1950,10015,3029,6051,1894,999,8089,13896,16068,5923,5077,1951,1977,4094,1973,1003,2969,6027,3916,67,3044,3339,576,999,10969,9016,9426,2980,3703,12261,717,4951,3031,1252,641,1062,71,1,1958,4896,2062,2973,1,946,1033,1,2038,1273,3015,1015,998,2630,2001,327,1015,732,266,4965,1954,1,1737,282,16,702,282,5005,3010,1030,670,329,942,4013,1008,1161,1866,160,1000,1026,1,776,1027,25,153,512,3113,338,76,793,114,92,445,1000,2543,785,1817,1,429,1,898,2027,688,1000,971,399,574,1003,4415,974,1,2644,1417,6558,3,998,376,1674,345,654,814,550,471,555,1,9452,3493,1039,1000,2546,999,968,464,3980,5031,3492,476,599,1,353,46,599,2,352,19,28,9607,418,2615,1,1352,2018,998,968,2565,998,4088,1952,1,1999,1975,4410,40,2608,997,2,4381,5569,22,2397,999,10985,}, +Z11N209328 ={ 102410,8047,10948,7054,6929,5974,8015,5084,8024,1883,8981,3151,4850,1958,8030,2951,9014,2027,7054,1893,1000,3131,4957,13896,15067,6924,5078,2950,976,4095,2973,1,2971,9943,67,3044,2338,1577,999,10968,8017,17110,13975,1,3953,3029,1895,1061,73,2957,3897,2061,2973,1,946,1033,1001,2039,271,3016,5643,1001,1327,747,269,4963,2952,739,297,703,280,4044,1961,2011,1701,330,942,2013,3007,2160,1027,999,842,185,1,776,28,1024,665,488,2624,339,75,907,94,444,1000,1543,1785,1247,570,1,430,898,2027,688,971,29,1370,1576,1,2415,2974,1,2644,1416,6560,1001,375,1674,999,346,468,1021,529,26,1,9451,3494,1039,1000,3545,1,431,1537,3443,5031,3494,475,597,2,353,647,351,648,372,8635,419,2614,1,2351,1018,1,1967,2562,2,5086,1952,2,3973,4410,40,2607,998,2,4381,5568,22,977,1421,999,10985,}, +Z11N209330 ={ 140362,64967,8054,1893,22988,15065,6922,8006,4094,16956,2043,15882,43055,3030,1896,1132,1957,4897,2062,1306,2613,1033,7343,3628,5076,7922,9295,701,1001,3285,4168,2025,3521,335,153,3625,414,792,115,17,2521,542,3031,2,569,1,1328,1027,3058,6992,974,1,5061,5560,1374,3019,467,1552,26,446,9007,3493,1039,4545,1,1430,538,3445,5030,2491,2428,49,952,646,1,9007,418,2614,1,1352,3016,969,4562,3087,1953,1,3975,4409,1040,3607,9951,13402,}, + + + }, +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ZoneDatum.lua Thu May 09 18:53:18 2013 -0400 @@ -0,0 +1,135 @@ +-- Nothing to see here. + +Bloodhound2.ZoneDatum = -- scale, xoffset, yoffset +{ + { + { 2700.000, -3891.667, 8033.333 }, + { 1212.500, -4785.418, -6529.167 }, + { 3843.750, -1700.000, -4672.917 }, + { 3677.083, 3372.917, -5381.250 }, + { 2714.583, -7100.000, -7339.583 }, + { 2175.000, -7525.000, -9375.000 }, + { 1177.082, -233.334, 2577.084 }, + { 4310.416, -3016.667, -8222.916 }, + { 1027.083, -3187.500, -10464.583 }, + { 2997.917, -4233.333, -452.083 }, + { 3525.000, 1962.500, -1808.333 }, + { 3500.000, 975.000, 2033.334 }, + { 1204.166, 4491.666, 525.000 }, + { 4041.666, -1797.917, -7237.500 }, + { 4633.333, -5441.667, 2366.667 }, + { 1539.583, 1381.250, -8491.666 }, + { 2831.250, 929.167, -6195.833 }, + { 3633.333, -2204.167, 168.750 }, + { 3831.250, -202.083, -1810.417 }, + { 1159.583, 3506.354, -2486.667 }, + { 966.667, -1491.667, -11033.333 }, + { 2706.250, -2983.333, 5872.917 }, + { 4941.667, -1356.250, -204.167 }, + { 3933.333, -3902.083, -3404.167 }, + { 4808.333, 62.500, 5770.833 }, + { 3916.667, -4235.417, -11847.916 }, + { 704.688, -6533.633, -6523.650 }, + { 2933.333, 433.333, 3966.667 }, + { 695.833, -516.667, 850.000 }, + { 4129.167, -2441.667, 8029.167 }, + { 2466.667, -533.333, 5966.667 }, + { 900.000, 3641.666, 0.000 }, + { 4100.000, 991.667, -8793.750 }, + }, + { + { 2716.667, -8233.333, 4906.250 }, + { 2318.750, 1127.083, 141.667 }, + { 2045.833, 1902.083, 5854.167 }, + { 2441.666, 1193.750, 10583.333 }, + { 2100.000, 464.583, 6985.417 }, + { 643.750, -979.167, 5962.500 }, + { 1666.667, 833.333, 9866.666 }, + { 727.083, -2147.917, -2270.833 }, + { 3264.583, -2137.500, 3941.667 }, + { 1800.000, -833.333, 9716.666 }, + { 2687.500, 2287.500, -3704.167 }, + { 2314.583, -1535.417, 7939.583 }, + { 3283.333, 2087.500, -8641.666 }, + { 2200.000, 2883.333, -5866.666 }, + { 3241.667, -1850.000, -1481.250 }, + { 527.604, 713.591, 4569.241 }, + { 2218.749, 2902.083, -11168.749 }, + { 1868.750, -5070.833, 4018.750 }, + { 1868.750, -5070.833, 4018.750 }, + { 1233.332, -1206.250, 4727.084 }, + { 2733.333, -1743.750, 11016.666 }, + { 645.834, -187.500, 8570.832 }, + { 1712.500, 1479.167, 8514.583 }, + { 2097.917, -3439.583, 533.333 }, + { 2097.917, -3439.583, 533.333 }, + { 1487.500, 322.917, 6100.000 }, + { 3233.333, -6681.250, 4756.250 }, + { 806.771, 4000.750, -7753.709 }, + { 2800.000, -3450.000, -1666.667 }, + { 1158.333, -1722.917, 7995.833 }, + { 4368.750, -2977.083, 10964.583 }, + { 1066.667, 2983.334, -8433.333 }, + { 1672.917, 2081.250, 9535.416 }, + { 2631.250, -2108.333, 12516.666 }, + { 2566.667, 1575.000, -1466.667 }, + { 3012.500, -3033.333, -3837.500 }, + { 1343.750, -2010.417, 560.417 }, + { 1225.000, -2412.500, -377.083 }, + { 3514.583, 2437.500, 2156.250 }, + { 640.104, -873.193, -1877.945 }, + { 4631.250, -8754.166, 3720.833 }, + { 2866.667, -416.667, -3366.667 }, + { 2333.333, -3016.667, 9400.000 }, + { 2756.250, 389.583, 2147.917 }, + }, + { + { 3616.666, -8845.833, -4408.333 }, + { 3443.750, -5539.583, -1481.250 }, + { 3683.333, -10295.833, -41.667 }, + { 3716.667, -5483.333, -5456.250 }, + { 3666.666, -4225.000, 1947.917 }, + { 870.833, -6135.259, 1473.954 }, + { 3600.000, -7083.333, 1000.000 }, + { 3352.083, -9475.000, -1935.417 }, + }, + { + { 3843.750, -8570.833, -4897.917 }, + { 1814.583, -1443.750, -6502.083 }, + { 0.000, 0.000, 0.000 }, + { 3739.583, -3627.083, -5575.000 }, + { 3500.000, 1110.417, -5516.667 }, + { 4031.250, 1397.917, -3116.667 }, + { 2452.084, -2797.917, -10781.250 }, + { 4181.250, -5443.750, -9427.083 }, + { 2904.167, -6929.167, -7287.500 }, + { 4741.666, -1841.667, -10197.916 }, + { 1983.333, -4329.167, -5716.667 }, + { 3329.167, 600.000, -7668.750 }, + }, + { + { 3400.000, -3052.083, -2795.833 }, + { 900.000, -2129.167, 7731.250 }, + { 3010.417, -4383.333, -2881.250 }, + { 1033.333, -1556.250, -1370.833 }, + }, + { + { 3568.751, -6139.583, -1416.667 }, --Dread Wastes 1 --con6 pandarea + { 1191.667, -2004.167, -6697.916 }, --Isle of Giants 2 + { 2756.000, -7654.166, -8147.916 }, --Isle of Thunder --con6 pandarea + { 3125.000, -2947.917, 110.416 }, --Krasarang Wilds 4 + { 4172.917, -4839.583, -5618.750 }, --Kun-Lai Summit 5 + { 0.000, 0.000, 0.000 }, --Shrine of Seven Stars + { 0.000, 0.000, 0.000 }, --Shrine of Two Moons + { 4654.167, -1452.083, -3652.083 }, --The Jade Forest 8 + { 1195.833, -812.500, -1689.583 }, --The Veiled Stair 9 + { 3829.166, -7079.166, -4558.333 }, --Townlong Steppes 10 + { 1687.501, -2481.250, -1947.917 }, --Vale of Eternal Blossoms 11 + { 2616.667, -2679.167, -1095.833 }, --Valley of the Four Winds 12 + }, + + LocalToGlobal = function(x, y, datum) + return x * datum[1] * 1.5 + datum[2], y * datum[1] + datum[3]; + end; +}; +