content
stringlengths
5
1.05M
local llthreads = require("llthreads2.ex") local mtmsg = require("mtmsg") print(mtmsg._VERSION) local threadIn = mtmsg.newbuffer("threadIn") local listener = mtmsg.newlistener() local threadOut1 = listener:newbuffer("threadOut1") local threadOut2 = listener:newbuffer("threadOut2") local threadOut1Id = threadOut1:id() local threadOut2Id = threadOut2:id() print("=============================") print(threadOut1) print(threadOut2) print("=============================") local thread = llthreads.new(function(inId, outId1, outId2) local mtmsg = require("mtmsg") local threadIn = mtmsg.buffer(inId) local threadOut1 = mtmsg.buffer(outId1) local threadOut2 = mtmsg.buffer(outId2) print(threadOut1) print(threadOut2) print("=============================") threadOut1:addmsg("started") assert(threadIn:nextmsg() == "continue1") threadOut2:addmsg("response1") assert(threadIn:nextmsg() == "continue2") threadOut2 = nil collectgarbage() threadOut1:addmsg("response2") assert(threadIn:nextmsg() == "exit") threadOut1:addmsg("finished") threadOut1 = nil end, threadIn:id(), threadOut1Id, threadOut2Id) -- threadOut1 = nil -- not now! -- collectgarbage() thread:start() assert(listener:nextmsg() == "started") threadOut1 = nil -- now it's safe collectgarbage() threadIn:addmsg("continue1") print(mtmsg.buffer(threadOut2Id)) threadOut2 = nil collectgarbage() print(mtmsg.buffer(threadOut2Id)) collectgarbage() assert(listener:nextmsg() == "response1") threadIn:addmsg("continue2") assert(listener:nextmsg() == "response2") local _, err = pcall(function() mtmsg.buffer(threadOut2Id) end) assert(err:match(mtmsg.error.unknown_object)) print(mtmsg.buffer(threadOut1Id)) collectgarbage() print("=============================") threadIn:addmsg("exit") assert(thread:join()) print("=============================") local _, err = pcall(function() mtmsg.buffer(threadOut1Id) end) assert(err:match(mtmsg.error.unknown_object)) assert(listener:nextmsg() == "finished") print("=============================") local _, err = pcall(function() listener:nextmsg() end) assert(err:match(mtmsg.error.no_buffers)) print("OK.")
controler = {} function controler.click(deck, mx, my, player_num) count_x, count_y = deck.mousereleased(mx, my) if (count_x > 0 and count_x < 9 and count_y > 0 and count_y < 9) then if (deck[count_x][count_y][1] == 0) then stepdone = false deck, stepdone = controler.drawdimension(deck, count_x, count_y, 1, 0, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, 1, 1, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, 0, 1, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, -1, 1, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, -1, 0, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, -1, -1, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, 0, -1, player_num, stepdone) deck, stepdone = controler.drawdimension(deck, count_x, count_y, 1, -1, player_num, stepdone) if (stepdone) then deck[count_x][count_y] = {1, player_num} player_num = 3 - player_num end end end return deck, player_num end function controler.score(deck, player_num) score = 0 for i = 1, 8 do for j = 1, 8 do if (deck[i][j][2] == player_num) then score = score + 1 end end end return score end function controler.depth(deck, count_x, count_y, dx, dy, player_num, draw) step = 0 while (count_x + dx < 9 and count_x + dx > 0 and count_y + dy < 9 and count_y + dy > 0) do deckel = deck[count_x + dx][count_y + dy] if (deckel[1] == 1 and deckel[2] == 3 - player_num) then if (draw) then deck[count_x + dx][count_y + dy] = {1, player_num} end step = step + 1 elseif (deckel[1] == 1 and deckel[2] == player_num) then if (draw) then return deck else return (step > 0) end else return false end count_x = count_x + dx count_y = count_y + dy end return false end function controler.drawdimension(deck, count_x, count_y, dx, dy, player_num, stepdone) if (controler.depth(deck, count_x, count_y, dx, dy, player_num, false)) then return controler.depth(deck, count_x, count_y, dx, dy, player_num, true), true else return deck, false or stepdone end end function controler.depth8(deck, count_x, count_y, player_num) for i = -1, 1 do for j = -1, 1 do -- if (i != 0 and j != 0) then if controler.depth(deck, count_x, count_y, i, j, player_num, false) then return true end -- end end end return false end function controler.canMove(deck, player_num) for i = 1, 8 do for j = 1, 8 do if deck[i][j][1] == 0 then if controler.depth8(deck, i, j, player_num) then return true end end end end return false end
chatCommands.spawn = { permissions = {'admin', 'mod', 'helper'}, event = function(player, args) local target = string_nick(args[1]) if not players[target] then return chatMessage('<g>[•] $playerName not found.', player) end chatMessage('<g>[•] moving '..target..' to spawn...', player) players[target].place = 'town' killPlayer(target) end }
local ServerStorage = game:GetService("ServerStorage") local SwordSmith = require(ServerStorage:WaitForChild("SwordSmith")) local ReplicatedStorage = game:GetService("ReplicatedStorage") local Action = ReplicatedStorage.Actionite local tool = script.Parent local debounce = false local data = { criticalHits = 45, --How much damage is dealt to the target on a critical hit criticalInterval = 3, knockBackEnabled = true, swingAnims = {7024937001,7024940374,6845066286}, }; local sword = SwordSmith.new(tool, data) local Owner = sword:GetOwner() print(Owner) tool.Activated:Connect(function() if debounce then return end debounce = true sword:Swing(20) end); sword:OnSwingEnded(function() --You can of course add extra delay if you have a short swing animation debounce = false end);
-- Threatrack -- MIT License © 2019 Arthur Corenzan -- More on https://github.com/haggen/wow -- High level hostile players. -- local SKULL = -1; -- Max player level. -- local MAXED = 60; -- Colors. Stolen from WoW default interface. RegularColor = CreateColor(1.0, 0.82, 0.0); GuildColor = CreateColor(0.251, 0.753, 0.251); -- -- -- -- ... -- ThreatrackPortraitTextureMixin = {}; -- ... -- function ThreatrackPortraitTextureMixin:SetRace(race) self:SetTexCoord(unpack(ThreatrackData:GetRaceTexCoords(race))); end -- ... -- function ThreatrackPortraitTextureMixin:SetClass(class) self:SetTexCoord(unpack(ThreatrackData:GetClassTexCoords(class))); end -- -- -- -- At which estimated level it should be displayed instead of Skull level (??). -- local function EstimatedLevelThreshold() return UnitLevel("player") + 10; end -- Tells whether the Skull icon should be displayed given a player's level information. -- local function ShouldDisplaySkullLevel(data) if (data.effectiveLevel == SKULL) then return data.estimatedLevel < EstimatedLevelThreshold(); end return false; end -- Format player level's information to be displayed. -- local function GetDisplayPlayerLevel(data) if (data.effectiveLevel > 0) then return tostring(data.effectiveLevel); end if (data.estimatedLevel > 0) then if (data.effectiveLevel ~= SKULL or data.estimatedLevel > EstimatedLevelThreshold()) then if (data.estimatedLevel == MAXED) then return MAXED; else return string.format("%d+", data.estimatedLevel); end end end return "??"; end -- Update portrait given stacked player data. -- local function UpdateStackedPortrait(portrait, stackedData) portrait.Level:Show(); portrait.Level:SetText(string.format("×%d", #stackedData.stack)); portrait.Texture:SetTexCoord(unpack(ThreatrackData:GetClassTexCoords(stackedData.class))); end -- Update portrait given flat player data. -- local function UpdateFlatPortrait(portrait, data) if ShouldDisplaySkullLevel(data) then portrait.Skull:Show() else portrait.Level:Show(); local displayLevel = GetDisplayPlayerLevel(data); -- Small tweak to fix text alignment problems. -- -- When we're showing an estimated level with append a "+" sign at the end. -- This kinda screws with the text alignment, unless the level starts with -- a "1". To help with we prepend a space character in every other case. if string.find(displayLevel, "^[2-9]%d?%+") then displayLevel = " "..displayLevel; end portrait.Level:SetText(displayLevel); if (displayLevel ~= "??") then local color = GetCreatureDifficultyColor(string.match(displayLevel, "%d+")); portrait.Level:SetTextColor(color.r, color.g, color.b); end end portrait.Texture:SetTexCoord(unpack(ThreatrackData:GetClassTexCoords(data.class))); end -- .. -- local function GetDisplayPlayerName(data) return data.name; end -- ... -- local function SetStackedPortraitTooltip(data) GameTooltip:SetText(ThreatrackData:GetLocalizedClassName(data.class)); local skip = 0; for i = 1, #data.stack do local details = string.format(TOOLTIP_UNIT_LEVEL_RACE_CLASS, GetDisplayPlayerLevel(data.stack[i]), ThreatrackData:GetLocalizedRaceName(data.stack[i].race), ""); local frame = _G["GameTooltipTextLeft"..(i * 2 + skip)]; frame:SetHeight(18); frame:SetJustifyV("BOTTOM"); GameTooltip:AddLine(GetDisplayPlayerName(data.stack[i])); if (data.stack[i].guild) then GameTooltip:AddLine(data.stack[i].guild.name, GuildColor:GetRGB()); skip = skip + 1; end GameTooltip:AddLine(details, 1, 1, 1); end end -- ... -- local function SetFlatPortraitTooltip(data) local details = string.format(TOOLTIP_UNIT_LEVEL_RACE_CLASS, GetDisplayPlayerLevel(data), ThreatrackData:GetLocalizedRaceName(data.race), ThreatrackData:GetLocalizedClassName(data.class)); GameTooltip:SetText(GetDisplayPlayerName(data)); if (data.guild) then GameTooltip:AddLine(data.guild.name, GuildColor:GetRGB()); end GameTooltip:AddLine(details, 1, 1, 1); end -- .. -- local function RestoreTooltipTextHeight() local frame = GameTooltipTextLeft1; local index = 1; while (frame ~= nil) do index = index + 1 frame:SetHeight(0); frame = _G["GameTooltipTextLeft"..index]; end end -- -- -- -- Portrait template mixin. -- ThreatrackPortraitMixin = {}; -- Update portrait. -- function ThreatrackPortraitMixin:Update(data) self.data = data; self.Skull:Hide(); self.Level:Hide(); self.Level:SetTextColor(RegularColor:GetRGB()); if (data.stack) then UpdateStackedPortrait(self, data); else UpdateFlatPortrait(self, data); end end -- Portrait OnUpdate handler. We use it to request an update once the data becomes stale. -- function ThreatrackPortraitMixin:OnUpdate() if (not self:IsShown()) then return nil; end if (self.data.stack) then local stack = self.data.stack; for i = 1, #stack do if ThreatrackAPI:IsPresenceStale(stack[i]) then ThreatrackFrame:Update(); return nil; end end else if ThreatrackAPI:IsPresenceStale(self.data) then ThreatrackFrame:Update(); end end end -- Portrait OnEnter handler. Used to display tooltip. -- function ThreatrackPortraitMixin:OnEnter() GameTooltip:ClearAllPoints(); GameTooltip:SetOwner(self, "ANCHOR_BOTTOM", 0, -8); GameTooltip:ClearLines(); if (self.data.stack) then SetStackedPortraitTooltip(self.data); else SetFlatPortraitTooltip(self.data); end GameTooltip:Show(); end -- Portrait OnEnter handler. Used to hide the tooltip. -- function ThreatrackPortraitMixin:OnLeave() GameTooltip:Hide(); RestoreTooltipTextHeight(); end -- ... -- function ThreatrackPortraitMixin:OnMouseDown(button) if (button == "RightButton") then ToggleDropDownMenu(1, nil, ThreatrackMenu, "cursor", 0, -8); elseif (button == "LeftButton") then if (not ThreatrackFrame.isLocked) then ThreatrackFrame.isDragging = true; ThreatrackFrame:SetUserPlaced(true); ThreatrackFrame:StartMoving(); end end end -- ... -- function ThreatrackPortraitMixin:OnMouseUp() ThreatrackFrame.isDragging = nil; ThreatrackFrame:StopMovingOrSizing(); end
PlazaRedPacketHdxqCcsView = class("PlazaRedPacketHdxqCcsView") PlazaRedPacketHdxqCcsView.onCreationComplete = function (slot0) ClassUtil.extends(slot0, ZoomPopUpChildView, true, slot0, slot0.bg, slot0.view) Hero.redPacketDesInfoChangedSignal:add(slot0.onRedPacketDesInfoChanged, slot0) slot0:onRedPacketDesInfoChanged() end PlazaRedPacketHdxqCcsView.onRedPacketDesInfoChanged = function (slot0) if Hero:getRedPacketDesInfo() and slot1.rule then slot0.view.nodeContent.t_tfs:setHtmlText(slot1.rule) end end PlazaRedPacketHdxqCcsView.onBtnClick = function (slot0, slot1) if slot1 == slot0.view.btnClose then slot0.model:setIsShowingRedPacketHdxq(false) end end PlazaRedPacketHdxqCcsView.destroy = function (slot0) Hero.redPacketDesInfoChangedSignal:remove(slot0.onRedPacketDesInfoChanged, slot0) slot0.view.nodeContent.t_tfs:destroy() slot0.view.btnClose:destroy() ZoomPopUpChildView.destroy(slot0) end return
------------------------------------------------------------ -- Menu visuals local mp = require('mp') local assdraw = require('mp.assdraw') local Menu = assdraw.ass_new() function Menu:new(o) self.__index = self o = o or {} o.selected = o.selected or 1 o.canvas_width = o.canvas_width or 1280 o.canvas_height = o.canvas_height or 720 o.pos_x = o.pos_x or 0 o.pos_y = o.pos_y or 0 o.rect_width = o.rect_width or 320 o.rect_height = o.rect_height or 40 o.active_color = o.active_color or 'ffffff' o.inactive_color = o.inactive_color or 'aaaaaa' o.border_color = o.border_color or '000000' o.text_color = o.text_color or 'ffffff' return setmetatable(o, self) end function Menu:set_position(x, y) self.pos_x = x self.pos_y = y end function Menu:font_size(size) self:append(string.format([[{\fs%s}]], size)) end function Menu:set_text_color(code) self:append(string.format("{\\1c&H%s%s%s&\\1a&H05&}", code:sub(5, 6), code:sub(3, 4), code:sub(1, 2))) end function Menu:set_border_color(code) self:append(string.format("{\\3c&H%s%s%s&}", code:sub(5, 6), code:sub(3, 4), code:sub(1, 2))) end function Menu:apply_text_color() self:set_border_color(self.border_color) self:set_text_color(self.text_color) end function Menu:apply_rect_color(i) self:set_border_color(self.border_color) if i == self.selected then self:set_text_color(self.active_color) else self:set_text_color(self.inactive_color) end end function Menu:draw_text(i) local padding = 5 local font_size = 25 self:new_event() self:pos(self.pos_x + padding, self.pos_y + self.rect_height * (i - 1) + padding) self:font_size(font_size) self:apply_text_color(i) self:append(self.items[i]) end function Menu:draw_item(i) self:new_event() self:pos(self.pos_x, self.pos_y) self:apply_rect_color(i) self:draw_start() self:rect_cw(0, 0 + (i - 1) * self.rect_height, self.rect_width, i * self.rect_height) self:draw_stop() self:draw_text(i) end function Menu:draw() self.text = '' for i, _ in ipairs(self.items) do self:draw_item(i) end mp.set_osd_ass(self.canvas_width, self.canvas_height, self.text) end function Menu:erase() mp.set_osd_ass(self.canvas_width, self.canvas_height, '') end function Menu:up() self.selected = self.selected - 1 if self.selected == 0 then self.selected = #self.items end self:draw() end function Menu:down() self.selected = self.selected + 1 if self.selected > #self.items then self.selected = 1 end self:draw() end return Menu
--[[ Copyright 2017 YANG Huan (sy.yanghuan@gmail.com). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --]] local System = System local throw = System.throw local Collection = System.Collection local addCount = Collection.addCount local getCount = Collection.getCount local removeArrayAll = Collection.removeArrayAll local clearCount = Collection.clearCount local ArgumentNullException = System.ArgumentNullException local ArgumentOutOfRangeException = System.ArgumentOutOfRangeException local table = table local tconcat = table.concat local schar = string.char local ssub = string.sub local StringBuilder = {} local function build(this, value, startIndex, length) value = value:Substring(startIndex, length) local len = #value if len > 0 then this[#this + 1] = value addCount(this, len) end end function StringBuilder.__ctor__(this, ...) local len = select("#", ...) if len == 0 then elseif len == 1 or len == 2 then local value = ... if type(value) == "string" then build(this, value, 0, #value) else build(this, "", 0, 0) end else local value, startIndex, length = ... build(this, value, startIndex, length) end end StringBuilder.getLength = getCount function StringBuilder.setLength(this, value) if value < 0 then throw(ArgumentOutOfRangeException("value")) end if value == 0 then this:Clear() return end local delta = value - getCount(this) if delta > 0 then this:AppendCharRepeat(0, delta) else local length, remain = #this, value for i = 1, length do local s = this[i] local len = #s if len >= remain then if len ~= remain then s = ssub(s, 0, remain) this[i] = s end for j = i + 1, length do this[j] = nil end break end remain = remain - len end addCount(this, delta) end end function StringBuilder.Append(this, ...) local len = select("#", "...") if len == 1 then local value = ... if value ~= nil then value = value:ToString() this[#this + 1] = value addCount(this, #value) end else local value, startIndex, length = ... if value == nil then throw(ArgumentNullException("value")) end value = value:Substring(startIndex, length) this[#this + 1] = value addCount(this, #value) end return this end function StringBuilder.AppendChar(this, v) v = schar(v) this[#this + 1] = v addCount(this, 1) return this end function StringBuilder.AppendCharRepeat(this, v, repeatCount) if repeatCount < 0 then throw(ArgumentOutOfRangeException("repeatCount")) end if repeatCount == 0 then return this end v = schar(v) for i = 1, repeatCount do this[#this + 1] = v end addCount(this, repeatCount) return this end function StringBuilder.AppendFormat(this, format, ...) local value = format:Format(...) this[#this + 1] = value addCount(this, #value) return this end function StringBuilder.AppendLine(this, value) local count = 1; if value ~= nil then this[#this + 1] = value count = count + #value end this[#this + 1] = "\n" addCount(this, count) return this end function StringBuilder.Clear(this) removeArrayAll(this) clearCount(this) return this end StringBuilder.ToString = tconcat StringBuilder.__tostring = StringBuilder.ToString System.define("System.StringBuilder", StringBuilder)
-------------------------------------------------------------------------------- ----------------------------------- DevDokus ----------------------------------- -------------------------------------------------------------------------------- if not ((_StartError_) and (Framework.Vorp)) then function DrawCircle(x, y, z, r, g, b, a) Citizen.InvokeNative(0x2A32FAA57B937173, 0x94FDAE17, x, y, z - 0.95, 0, 0, 0, 0, 0, 0, 1.0, 1.0, 0.25, r, g, b, a, 0, 0, 2, 0, 0, 0, 0) end function Notify(text, time) TriggerEvent("vorp:TipRight", text, time) end function DrawInfo(text, x, y, size) local xc = x / 1.0; local yc = y / 1.0; SetScriptGfxDrawOrder(3) SetTextScale(size, size) SetTextCentre(true) SetTextColor(255, 255, 255, 100) SetTextFontForCurrentCommand(6) DisplayText(CreateVarString(10, 'LITERAL_STRING', text), xc, yc) SetScriptGfxDrawOrder(3) end function DrawCoords(text, x, y, size) local xc = x / 1.0; local yc = y / 1.0; SetScriptGfxDrawOrder(3) SetTextScale(size, size) SetTextCentre(true) SetTextColor(255, 255, 255, 100) SetTextFontForCurrentCommand(6) DisplayText(CreateVarString(10, 'LITERAL_STRING', text), xc, yc) SetScriptGfxDrawOrder(3) end function DrawTxt(str, x, y, w, h, enableShadow, col1, col2, col3, a, center) local str = CreateVarString(10, "LITERAL_STRING", str, Citizen.ResultAsLong()) SetTextScale(w, h) SetTextColor(math.floor(col1), math.floor(col2), math.floor(col3), math.floor(a)) SetTextCentre(center) if enableShadow then SetTextDropshadow(1, 0, 0, 0, 255) end Citizen.InvokeNative(0xADA9255D, 10); DisplayText(str, x, y) end -- Spawn a NPC model function SpawnNPC(_, x, y, z, heading) local _ = GetHashKey(_) while not HasModelLoaded(_) do RequestModel(_) Wait(1) end local NCP = Citizen.InvokeNative(0xD49F9B0955C367DE, _, x, y, z, heading, 0, 0, 0, Citizen.ResultAsInteger()) Citizen.InvokeNative(0x1794B4FCC84D812F, NCP, 1) -- SetEntityVisible Citizen.InvokeNative(0x0DF7692B1D9E7BA7, NCP, 255, false) -- SetEntityAlpha Citizen.InvokeNative(0x283978A15512B2FE, NCP, true) -- Invisible without Citizen.InvokeNative(0x7D9EFB7AD6B19754, NCP, true) -- FreezeEntityPosition Citizen.InvokeNative(0xDC19C288082E586E, NCP, 1, 1) --SetEntityAsMissionEntity Citizen.InvokeNative(0x919BE13EED931959, NPC, - 1) -- TaskStandStill Wait(100) Citizen.InvokeNative(0xC80A74AC829DDD92, npc, _) -- SET_PED_RELATIONSHIP_GROUP_HASH Citizen.InvokeNative(0x4AD96EF928BD4F9A, NCP) -- SetModelAsNoLongerNeeded return NCP end function RoundNumber(n, d) local m = 10^(d or 0) return math.floor(n * m + 0.5) / m end RegisterNetEvent('DokusCore:ProgressBars') AddEventHandler('DokusCore:ProgressBars', function(text, x, y, size, time) local Text, run, count, loop, End = nil, true, 0, 1, ((time - 2) / 2) while run do Wait(1) if (count <= 15) then Text = (text..'.') end if ((count > 15) and (count <= 30)) then Text = (text..'..') end if ((count > 30) and (count <= 45)) then Text = (text..'...') end if ((count > 60) and (loop ~= End)) then count = 0 loop = (loop + 1) end if (loop >= End) then count = 0 loop = 1 run = false end DrawInfo(Text, x, y, size) count = (count + 1) end end) end
function TreeTag:OnThink() if GameRules:IsGamePaused() == true then return 1 end end function TreeTag:OnGameRulesStateChange() local newState = GameRules:State_Get() if newState == DOTA_GAMERULES_STATE_CUSTOM_GAME_SETUP then TreeTag:OnSetupVotingPhase(); elseif newState == DOTA_GAMERULES_STATE_PRE_GAME then TreeTag:OnSetupPreGamePhase(); elseif newState == DOTA_GAMERULES_STATE_GAME_IN_PROGRESS then TreeTag:OnSetupStartPhase(); end end function TreeTag:OnSetupVotingPhase() GameRules:SetCustomGameSetupRemainingTime( 10000 ); GameRules:SetCustomGameTeamMaxPlayers(2, 6); -- RADIANCE GameRules:SetCustomGameTeamMaxPlayers(3, 2); -- DIRE libBuild:NewGrid(); for i=4, 13 do GameRules:SetCustomGameTeamMaxPlayers(i, 0); end -- spawn a WISP hero for every connected player Timers:CreateTimer({ endTime = 1, callback = function() for id=0, DOTA_MAX_TEAM_PLAYERS do local player = PlayerResource:GetPlayer(id); if player ~= nil then local hero = CreateHeroForPlayer("npc_dota_hero_wisp", player); hero:SetControllableByPlayer(id, true); hero:SetPlayerID(id); hero:AddNoDraw(); end end end }) end function TreeTag:OnSetupPreGamePhase() -- swap out all wisps for a proper hero based on team choice for k,hero in pairs( Entities:FindAllByClassname( "npc_dota_hero_wisp" )) do local id = hero:GetPlayerOwner():GetPlayerID(); local team = PlayerResource:GetPlayer(id):GetTeam(); if team == DOTA_TEAM_GOODGUYS then PlayerResource:ReplaceHeroWith(id, "npc_dota_hero_treant", 0, 0); elseif team == DOTA_TEAM_BADGUYS then PlayerResource:ReplaceHeroWith(id, "npc_dota_hero_doom_bringer", 0, 0); end end -- setup quest timer CreateQuest("InfernalSpawnTimer", 30); BroadcastMessage("Infernals arrive in 30 seconds", 10); ShowGenericPopup( "#popup_title", "#popup_desc", "", "", DOTA_SHOWGENERICPOPUP_TINT_SCREEN ); TreeTag:SetupAllPlayers(); -- gold tick timer Timers:CreateTimer(function() TreeTag:OnGoldTick(); return TreeTag.cfgGoldTick; end); end function TreeTag:OnSetupStartPhase() BroadcastMessage("Infernals have arrived!", 3); CreateQuest("GameTimer", TreeTag.cfgEndTime * 60); -- make infernals spawn local infernal; for k,hero in pairs( Entities:FindAllByClassname( "npc_dota_hero_doom_bringer" )) do hero:RemoveAbility("ability_unselectable_hero"); hero:RemoveModifierByName("modifier_unselectable_hero"); hero:RemoveNoDraw(); infernal = hero; BasicParticle("particles/units/heroes/hero_warlock/warlock_rain_of_chaos.vpcf", infernal, infernal:GetAbsOrigin(), 8, false); end -- create infernal spawn particle if infernal ~= nil then BasicParticle("particles/units/heroes/hero_warlock/warlock_rain_of_chaos_start.vpcf", infernal, TreeTag.Jail:GetAbsOrigin(), 8, false); EmitSoundOn("Hero_Warlock.RainOfChaos_buildup", infernal); EmitSoundOn("Hero_Warlock.RainOfChaos", infernal); end -- treant win timer Timers:CreateTimer({ endTime = TreeTag.cfgEndTime * 60, callback = function() TreeTag:TreantVictory(); end }) end function TreeTag:OnEntityHurt(keys) local victim = EntIndexToHScript(keys.entindex_killed); if keys.entindex_attacker == nil then return; end local attacker = EntIndexToHScript(keys.entindex_attacker); -- kill treant on damage --if victim:GetUnitName() == "npc_dota_hero_treant" then -- victim:Kill(nil, attacker); -- kill dead treant on damage if victim:GetUnitName() == "npc_dota_hero_wisp" then victim:Kill(nil, nil); end end function TreeTag:OnEntityKilled(keys) local killed = EntIndexToHScript(keys.entindex_killed); if killed.OnDeath ~= nil then killed.OnDeath(); end if killed._dummyUnit ~= nil then killed._dummyUnit:ForceKill(false); end if keys.entindex_attacker == nil then return; end local attacker = EntIndexToHScript(keys.entindex_attacker); -- change treant into dead ent if killed:GetUnitName() == "npc_dota_hero_treant" then local playerID = killed:GetPlayerOwnerID(); killed:SetAbsOrigin( TreeTag.Jail:GetAbsOrigin() ); -- destroy all buildings belonging to this treant local buildings = TreeTag.Treants[playerID]['BUILDINGS']; if buildings ~= nil then for k,building in pairs(buildings) do building.Kill(building); end end TreeTag.Treants[playerID]['BUILDINGS'] = {}; TreeTag.Treants[playerID]['INCOME'] = 0; TreeTag.Treants[playerID]['ALIVE'] = false; local gold = PlayerResource:GetGold(playerID); PlayerResource:ReplaceHeroWith(playerID, "npc_dota_hero_wisp", gold, 0); Timers:CreateTimer(function() local hero = PlayerResource:GetPlayer(playerID):GetAssignedHero(); for i=0, 3 do local ability = hero:GetAbilityByIndex(i); if ability ~= nil then ability:SetLevel(1); end end hero:NotifyWearablesOfModelChange(false); end); TreeTag.TreantsAlive = TreeTag.TreantsAlive - 1; TreeTag:CheckInfernalVictory(); -- bring dead treant back to life elseif killed:GetUnitName() == "npc_dota_hero_wisp" then local playerID = killed:GetPlayerOwnerID(); local gold = PlayerResource:GetGold(playerID); PlayerResource:ReplaceHeroWith(playerID, "npc_dota_hero_treant", gold, 0); Timers:CreateTimer(function() local hero = PlayerResource:GetPlayer(playerID):GetAssignedHero(); for i=0, 3 do local ability = hero:GetAbilityByIndex(i); if ability ~= nil then ability:SetLevel(1); end end TreeTag:GiveBuildMenu(hero); end); TreeTag.Treants[playerID]['ALIVE'] = true; TreeTag.TreantsAlive = TreeTag.TreantsAlive + 1; end end function TreeTag:OnGoldTick() for id,data in pairs(TreeTag.Treants) do if data['ALIVE'] then local income = TreeTag.cfgBaseIncome + data['INCOME']; local gold = PlayerResource:GetGold(id); PlayerResource:SetGold(id, gold + income, false); local player = PlayerResource:GetPlayer(id); local hero = player:GetAssignedHero(); local particle = ParticleManager:CreateParticleForPlayer(PARTICLES['gold_tick'], PATTACH_OVERHEAD_FOLLOW, hero, player) ParticleManager:SetParticleControl(particle, 1, hero:GetAbsOrigin()); Timers:CreateTimer({ endTime = 3, callback = function() ParticleManager:DestroyParticle(particle, false); end }); PopupGoldGain(hero, income); end end -- don't give Infernals income during pre-game if GameRules:State_Get() == DOTA_GAMERULES_STATE_GAME_IN_PROGRESS then for id,data in pairs(TreeTag.Infernals) do if data['ALIVE'] then local income = 2; local gold = PlayerResource:GetGold(id); PlayerResource:SetGold(id, gold + income, false); local player = PlayerResource:GetPlayer(id); local hero = player:GetAssignedHero(); local particle = ParticleManager:CreateParticleForPlayer("particles/units/heroes/hero_alchemist/alchemist_lasthit_coins.vpcf", PATTACH_OVERHEAD_FOLLOW, hero, player) ParticleManager:SetParticleControl(particle, 1, hero:GetAbsOrigin()); Timers:CreateTimer({ endTime = 3, callback = function() ParticleManager:DestroyParticle(particle, false); end }); PopupGoldGain(hero, income); end end end end function TreeTag:ExecuteOrderFilter( filterTable ) local order_type = filterTable['order_type']; local target = filterTable['entindex_target']; local playerID = filterTable['issuer_player_id_const']; local player = PlayerResource:GetPlayer(playerID); local units = filterTable['units']; -- count number of units and buildings; local unitsSelected = 0; local buildingsSelected = 0; local unitList = {}; local firstUnit; for _,unit in pairs(units) do unitEnt = EntIndexToHScript(unit); if unitEnt._isBuilding then buildingsSelected = buildingsSelected + 1; else unitsSelected = unitsSelected + 1; table.insert(unitList, unit); end if firstUnit == nil then firstUnit = unitEnt; end end -- remove buildings from any group orders if unitsSelected > 0 and buildingsSelected > 0 then units = unitList; end -- use mine if target ~= nil and target ~= -1 then targetEnt = EntIndexToHScript(target); if targetEnt ~= nil and targetEnt._isMine then for _,unit in pairs(units) do unit = EntIndexToHScript(unit); unit:AddAbility("ability_use_mine"); local ability = unit:FindAbilityByName("ability_use_mine"); ability:SetLevel(1); ability:EndCooldown(); unit:SetCursorCastTarget(targetEnt); ability:OnSpellStart(); unit:RemoveAbility("ability_use_mine"); end return true; end end if firstUnit then if firstUnit._canSetRallypoint then if firstUnit._isBuilt == false then return false; end -- prevent [Stop] and [Hold Position] cancelling unit production if order_type == DOTA_UNIT_ORDER_HOLD_POSITION or order_type == DOTA_UNIT_ORDER_STOP then return false; end -- set rallypoint if order_type == DOTA_UNIT_ORDER_MOVE_TO_POSITION or order_type == DOTA_UNIT_ORDER_MOVE_TO_TARGET then local x = filterTable["position_x"]; local y = filterTable["position_y"]; local z = filterTable["position_z"]; local pos = Vector(x, y, z); local ability = firstUnit:FindAbilityByName("ability_set_rallypoint"); firstUnit:SetCursorPosition(pos); firstUnit:CastAbilityOnPosition(pos, ability, firstUnit:GetPlayerOwnerID()); --ExecuteOrderFromTable({ UnitIndex = units["0"], OrderType = DOTA_UNIT_ORDER_CAST_POSITION, AbilityIndex = abilityIndex, Position = pos, Queue = false}) EmitSoundOnClient("DOTA_Item.SentryWard.Activate", firstUnit:GetPlayerOwner()); return false; end end end --TODO: change deadent targeted attack order into move order return true; end
client, service, Routine = nil, nil, nil local function boolToStr(bool) return bool and "Yes" or "No" end return function(data, env) if env then setfenv(1, env) end local client = client local service = client.Service local Routine = Routine local player: Player = data.Target local window = client.UI.Make("Window", { Name = "Profile_"..player.UserId; Title = "Profile (@"..player.Name..")"; Icon = client.MatIcons["Account circle"]; Size = {400, 400}; AllowMultiple = false; }) local tabFrame = window:Add("TabFrame", { Size = UDim2.new(1, -10, 1, -10); Position = UDim2.new(0, 5, 0, 5); }) local generaltab = tabFrame:NewTab("General", { Text = "General" }) local friendstab = tabFrame:NewTab("Friends", { Text = "Friends" }) local groupstab = tabFrame:NewTab("Groups", { Text = "Groups" }) local gametab = tabFrame:NewTab("Game", { Text = "Game" }) local isFriends = player:IsFriendsWith(service.Players.LocalPlayer.UserId) if player ~= service.Players.LocalPlayer then window:AddTitleButton({ Text = ""; ToolTip = isFriends and "Unfriend" or "Add friend"; OnClick = isFriends and function() service.StarterGui:SetCore("PromptUnfriend", player) end or function() service.StarterGui:SetCore("PromptSendFriendRequest", player) end }):Add("ImageLabel", { Size = UDim2.new(0, 20, 0, 20); Position = UDim2.new(0, 5, 0, 0); Image = isFriends and client.MatIcons["Person remove"] or client.MatIcons["Person add"]; BackgroundTransparency = 1; }) end window:AddTitleButton({ Text = ""; ToolTip = "View avatar"; OnClick = function() service.GuiService:InspectPlayerFromUserId(player.UserId) end }):Add("ImageLabel", { Size = UDim2.new(0, 18, 0, 18); Position = UDim2.new(0, 6, 0, 1); Image = client.MatIcons["Person search"]; BackgroundTransparency = 1; }) do --// General Tab generaltab:Add("ImageLabel", { Size = UDim2.new(0, 120, 0, 120); Position = UDim2.new(0, 5, 0, 5); Image = service.Players:GetUserThumbnailAsync(player.UserId, Enum.ThumbnailType.AvatarBust, Enum.ThumbnailSize.Size150x150); }) for i, v in ipairs({ {"Display Name", player.DisplayName, "The player's custom display name"}, {"Username", player.Name, "The player's unique Roblox username"}, {"User ID", player.UserId, "The player's unique Roblox user ID"}, {"Acc. Age", player.AccountAge .. " days ("..string.format("%.2f", player.AccountAge/365).." years)", "How long the player has been registered on Roblox"}, }) do generaltab:Add("TextLabel", { Text = " "..v[1]..": "; ToolTip = v[3]; BackgroundTransparency = (i%2 == 0 and 0) or 0.2; Size = UDim2.new(1, -135, 0, 30); Position = UDim2.new(0, 130, 0, (30*(i-1))+5); TextXAlignment = "Left"; }):Add("TextLabel", { Text = v[2]; BackgroundTransparency = 1; Size = UDim2.new(0, 120, 1, 0); Position = UDim2.new(1, -130, 0, 0); TextXAlignment = "Right"; }) end for i, v in ipairs({ {"Membership", player.MembershipType.Name, "The player's Roblox membership type (Premium)"}, {"Can Chat", data.CanChatGet[1] and boolToStr(data.CanChatGet[2]) or "[Error]", "Does the player's account settings allow them to chat?"}, {"Safe Chat Enabled", data.SafeChat, "[Admins Only] Does the player have safe chat applied?"}, }) do generaltab:Add("TextLabel", { Text = " "..v[1]..": "; ToolTip = v[3]; BackgroundTransparency = (i%2 == 0 and 0) or 0.2; Size = UDim2.new(1, -10, 0, 30); Position = UDim2.new(0, 5, 0, (30*(i-1))+130); TextXAlignment = "Left"; }):Add("TextLabel", { Text = v[2]; BackgroundTransparency = 1; Size = UDim2.new(0, 120, 1, 0); Position = UDim2.new(1, -130, 0, 0); TextXAlignment = "Right"; }) end local c = 0 for _, v in ipairs({ {data.IsServerOwner, "Private Server Owner", client.MatIcons.Grade, "User owns the current private server"}, {data.IsDonor, "Adonis Donor", "rbxassetid://6877822142", "User has purchased the Adonis donation pass/shirt"}, {player:GetRankInGroup(886423) == 10, "Adonis Contributor (GitHub)", "rbxassetid://6878433601", "User has contributed to the Adonis admin system (see credit list)"}, {player:GetRankInGroup(886423) >= 12, "Adonis Developer", "rbxassetid://6878433601", "User is an official developer of the Adonis admin system (see credit list)"}, -- haha? {player.UserId == 644946329, "I invented this profile interface! [Expertcoderz]", "rbxthumb://type=AvatarHeadShot&id=644946329&w=48&h=48", "yes"}, {player.UserId == 1237666 or player.UserId == 698712377, "Adonis Creator [Sceleratis/Davey_Bones]", "rbxassetid://6878433601", "You're looking at the creator of the Adonis admin system!"}, {player:IsInGroup(1200769) or player:IsInGroup(2868472), "Roblox Staff", "rbxassetid://6811962259", "User is an official Roblox employee (!)"}, {player:IsInGroup(3514227), "DevForum Member", "rbxassetid://6383940476", "User is a member of the Roblox Developer Forum"}, }) do if v[1] then generaltab:Add("TextLabel", { Size = UDim2.new(1, -10, 0, 30); Position = UDim2.new(0, 5, 0, 32*c + 225); BackgroundTransparency = 0.4; Text = v[2]; ToolTip = v[4]; }):Add("ImageLabel", { Image = v[3]; BackgroundTransparency = 1; Size = UDim2.new(0, 24, 0, 24); Position = UDim2.new(0, 4, 0, 3); }) c += 1 end end generaltab:ResizeCanvas(false, true, false, false, 5, 5) end window:Ready() do --// Friends Tab local function iterPageItems(pages) return coroutine.wrap(function() local pagenum = 1 while true do for _, item in ipairs(pages:GetCurrentPage()) do coroutine.yield(item, pagenum) end if pages.IsFinished then break end pages:AdvanceToNextPageAsync() pagenum += 1 end end) end local friendPages = service.Players:GetFriendsAsync(player.UserId) local sortedFriends = {} local friendInfoRef = {} local friendCount = 0 local onlineCount = 0 Routine(function() for item, pageNo in iterPageItems(friendPages) do table.insert(sortedFriends, item.Username) friendInfoRef[item.Username] = { id = item.Id; displayName = item.DisplayName; isOnline = item.IsOnline; } if item.IsOnline then onlineCount += 1 end friendCount += 1 end table.sort(sortedFriends) local search = friendstab:Add("TextBox", { Size = UDim2.new(1, -10, 0, 25); Position = UDim2.new(0, 5, 0, 5); BackgroundTransparency = 0.5; PlaceholderText = ("Search %d friends (%d online)"):format(friendCount, onlineCount); Text = ""; TextStrokeTransparency = 0.8; }) search:Add("ImageLabel", { Image = client.MatIcons.Search; Position = UDim2.new(1, -21, 0, 3); Size = UDim2.new(0, 18, 0, 18); ImageTransparency = 0.2; BackgroundTransparency = 1; }) local scroller = friendstab:Add("ScrollingFrame",{ List = {}; ScrollBarThickness = 2; BackgroundTransparency = 1; Position = UDim2.new(0, 5, 0, 35); Size = UDim2.new(1, -10, 1, -40); }) local function getList() scroller:ClearAllChildren() local i = 1 for _, friendName in ipairs(sortedFriends) do local friendInfo = friendInfoRef[friendName] if (friendName:sub(1, #search.Text):lower() == search.Text:lower()) or (friendInfo.displayName:sub(1, #search.Text):lower() == search.Text:lower()) then local entryText = "" if friendName == friendInfo.displayName then entryText = friendName else entryText = friendInfo.displayName.." (@"..friendName..")" end local entry = scroller:Add("TextLabel", { Text = " "..entryText; ToolTip = "User ID: "..friendInfo.id; BackgroundTransparency = ((i-1)%2 == 0 and 0) or 0.2; Size = UDim2.new(1, 0, 0, 30); Position = UDim2.new(0, 0, 0, (30*(i-1))); TextXAlignment = "Left"; }) if friendInfo.isOnline then entry:Add("TextLabel", { Text = "Online"; BackgroundTransparency = 1; Size = UDim2.new(0, 120, 1, 0); Position = UDim2.new(1, -130, 0, 0); TextXAlignment = "Right"; }) end Routine(function() entry:Add("ImageLabel", { Image = service.Players:GetUserThumbnailAsync(friendInfo.id, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size48x48); BackgroundTransparency = 1; Size = UDim2.new(0, 30, 0, 30); Position = UDim2.new(0, 0, 0, 0); }) end) i += 1 end end scroller:ResizeCanvas(false, true, false, false, 5, 5) end search:GetPropertyChangedSignal("Text"):Connect(getList) getList() end) end do --// Groups Tab local sortedGroups = {} local groupInfoRef = {} local groupCount = 0 local ownCount = 0 for _, groupInfo in pairs(service.GroupService:GetGroupsAsync(player.UserId) or {}) do Routine(service.ContentProvider.PreloadAsync, service.ContentProvider, { groupInfo.EmblemUrl }) table.insert(sortedGroups, groupInfo.Name) groupInfoRef[groupInfo.Name] = groupInfo groupCount += 1 if groupInfo.Rank == 255 then ownCount += 1 end end table.sort(sortedGroups) local search = groupstab:Add("TextBox", { Size = UDim2.new(1, -10, 0, 25); Position = UDim2.new(0, 5, 0, 5); BackgroundTransparency = 0.5; PlaceholderText = ("Search %d group%s (%d owned)"):format(groupCount, groupCount ~= 1 and "s" or "", ownCount); Text = ""; TextStrokeTransparency = 0.8; }) search:Add("ImageLabel", { Image = client.MatIcons.Search; Position = UDim2.new(1, -21, 0, 3); Size = UDim2.new(0, 18, 0, 18); ImageTransparency = 0.2; BackgroundTransparency = 1; }) local scroller = groupstab:Add("ScrollingFrame",{ List = {}; ScrollBarThickness = 2; BackgroundTransparency = 1; Position = UDim2.new(0, 5, 0, 35); Size = UDim2.new(1, -10, 1, -40); }) local function getList() scroller:ClearAllChildren() local i = 1 for _, groupName in ipairs(sortedGroups) do local groupInfo = groupInfoRef[groupName] if (groupName:sub(1, #search.Text):lower() == search.Text:lower()) or (groupInfo.Role:sub(1, #search.Text):lower() == search.Text:lower()) then local entry = scroller:Add("TextLabel", { Text = ""; ToolTip = string.format("%sID: %d | Rank: %d%s", groupInfo.IsPrimary and "Primary Group | " or "", groupInfo.Id, groupInfo.Rank, groupInfo.Rank == 255 and " (Owner)" or ""); BackgroundTransparency = ((i-1)%2 == 0 and 0) or 0.2; Size = UDim2.new(1, -10, 0, 30); Position = UDim2.new(0, 5, 0, (30*(i-1))); TextXAlignment = "Left"; }) local rankLabel = entry:Add("TextLabel", { Text = groupInfo.Role; BackgroundTransparency = 1; Size = UDim2.new(0, 0, 1, 0); Position = UDim2.new(1, -10, 0, 0); ClipsDescendants = false; TextXAlignment = "Right"; }) local groupLabel = entry:Add("TextLabel", { Text = groupName; BackgroundTransparency = 1; Size = UDim2.new(1, -50-rankLabel.TextBounds.X, 1, 0); Position = UDim2.new(0, 36, 0, 0); TextXAlignment = "Left"; TextTruncate = "AtEnd"; }) if groupInfo.IsPrimary and groupInfo.Rank >= 255 then groupLabel.TextColor3 = Color3.fromRGB(85, 255, 127) elseif groupInfo.IsPrimary then groupLabel.TextColor3 = Color3.fromRGB(170, 255, 255) elseif groupInfo.Rank >= 255 then groupLabel.TextColor3 = Color3.new(1, 1, 0.5) end Routine(function() entry:Add("ImageLabel", { Image = groupInfo.EmblemUrl; BackgroundTransparency = 1; Size = UDim2.new(0, 30, 0, 30); Position = UDim2.new(0, 0, 0, 0); }) end) i += 1 end end scroller:ResizeCanvas(false, true, false, false, 5, 5) end search:GetPropertyChangedSignal("Text"):Connect(getList) getList() end if data.GameData then --// Game Tab local gameplayDataToDisplay = { {"Admin Level", data.GameData.AdminLevel, "The player's Adonis rank"}, {"Muted", boolToStr(data.GameData.IsMuted), "Is the player muted? (IGNORES TRELLO MUTELIST)"}, {"Auto Jump Enabled", boolToStr(player.AutoJumpEnabled), "Does the player have auto jump enabled?"}, {"Camera Max Zoom Distance", player.CameraMaxZoomDistance, "How far in studs the player can zoom out their camera"}, {"Camera Min Zoom Distance", player.CameraMinZoomDistance, "How close in studs the player can zoom in their camera"}, -- NEEDS REFRESHABILITY {"Gameplay Paused", boolToStr(player.GameplayPaused), "Is the player's gameplay paused? (for content streaming)"}, -- NEEDS REFRESHABILITY {"Character Exists", boolToStr(player.Character), "Does the player currently have a character?"}, {"Accelerometer Enabled", boolToStr(data.GameData.AccelerometerEnabled), "Whether the user’s device has an accelerometer"}, {"Gamepad Enabled", boolToStr(data.GameData.GamepadEnabled), "Whether the user's device has an available gamepad"}, {"Gyroscope Enabled", boolToStr(data.GameData.GyroscopeEnabled), "Whether the user’s device has a gyroscope"}, {"Keyboard Enabled", boolToStr(data.GameData.KeyboardEnabled), "Whether the user’s device has a keyboard available"}, {"Mouse Delta Sensitivity", data.GameData.MouseDeltaSensitivity, "The scale of the delta (change) output of the user’s Mouse"}, {"Mouse Enabled", boolToStr(data.GameData.MouseEnabled), "Whether the user’s device has a mouse available"}, -- NEEDS REFRESHABILITY {"OnScreenKeyboardVisible", data.GameData.OnScreenKeyboardVisible, "Whether an on-screen keyboard is currently visible on the user’s screen"}, {"Touch Enabled", boolToStr(data.GameData.TouchEnabled), "Whether the user’s current device has a touch-screen available"}, {"VR Enabled", boolToStr(data.GameData.VREnabled), "Whether the user is using a virtual reality headset"}, {"Source Place ID", data.GameData.SourcePlaceId, "The ID of the place from which the player was teleported to this game, if applicable"}, } local i = 1 for _, v in ipairs(gameplayDataToDisplay) do local entry = gametab:Add("TextLabel", { Text = " "..v[1]..": "; ToolTip = v[3]; BackgroundTransparency = i%2 == 0 and 0 or 0.2; Size = UDim2.new(1, -10, 0, 25); Position = UDim2.new(0, 5, 0, 25*(i-1) + 5); TextXAlignment = "Left"; }):Add("TextLabel", { Text = v[2]; BackgroundTransparency = 1; Size = UDim2.new(0, 120, 1, 0); Position = UDim2.new(1, -130, 0, 0); TextXAlignment = "Right"; }) i += 1 end gametab:Add("TextButton", { Text = "View Tools"; ToolTip = string.format("%sviewtools%s%s", data.CmdPrefix, data.CmdSplitKey, player.Name); BackgroundTransparency = (i%2 == 0 and 0) or 0.2; Size = UDim2.new(1, -10, 0, 30); Position = UDim2.new(0, 5, 0, 25*(i-1) + 10); OnClicked = function(self) if self.Active then self.Active = false self.AutoButtonColor = false client.Remote.Send("ProcessCommand", string.format("%sviewtools%s%s", data.CmdPrefix, data.CmdSplitKey, player.Name)) wait(2) self.AutoButtonColor = true self.Active = true end end }) gametab:ResizeCanvas(false, true, false, false, 5, 5) else gametab:Disable() end end
local Dictionary = { copy = require(script.copy), copyDeep = require(script.copyDeep), count = require(script.count), equals = require(script.equals), equalsDeep = require(script.equalsDeep), every = require(script.every), filter = require(script.filter), flatMap = require(script.flatMap), flatten = require(script.flatten), flip = require(script.flip), get = require(script.get), has = require(script.has), includes = require(script.includes), join = require(script.join), joinDeep = require(script.joinDeep), keys = require(script.keys), map = require(script.map), removeKey = require(script.removeKey), removeValue = require(script.removeValue), set = require(script.set), some = require(script.some), update = require(script.update), values = require(script.values), } return Dictionary
module( "control", package.seeall ) HoldTime = 0.3 LastPress = nil LastKey = nil KeyControls = {} function Check() if gui.IsGameUIVisible() or gui.IsConsoleVisible() then return end for key, tbl in pairs( KeyControls ) do if tbl.Enabled then -- Key hold (repeat press) if tbl.LastPress and tbl.LastPress + HoldTime < RealTime() then tbl.Toggle( true, true ) tbl.LastPress = RealTime() end -- Key release if !input.IsKeyDown( key ) then tbl.Toggle( false ) tbl.Enabled = false end else -- Key press if input.IsKeyDown( key ) then tbl.Toggle( true ) tbl.Enabled = true tbl.LastPress = RealTime() end end end end hook.Add( "Think", "ControlsThink", control.Check ) function Add( key, onToggle ) if !key or !onToggle then return end KeyControls[ key ] = { Enabled = false, LastPress = 0, Toggle = function(...) local msg, err = pcall( onToggle, ... ) if err then print( "ERROR: " .. msg ) end end } end
local MAX_INVENTORY_SLOTS = 14 -- get inventory data and send to UI function SyncInventory(player) log.trace('SyncInventory') local inventory_items = PlayerData[player].inventory -- log.trace("INVENTORY ITEMS (" .. GetPlayerName(player) .. "): " .. dump(inventory_items)) local current_inhand local _send = { inventory_items = {} } -- inventory for index, inventory_item in ipairs(inventory_items) do if ItemConfig[inventory_item.item] then local equipped = IsItemEquipped(player, inventory_item.uuid) local bone = GetItemAttachmentBone(inventory_item.item) table.insert(_send.inventory_items, { ['index'] = index, ['item'] = inventory_item.item, ['uuid'] = inventory_item.uuid, ['quantity'] = inventory_item.quantity, ['equipped'] = equipped, ['used'] = inventory_item.used, ['slot'] = inventory_item.slot, ['hotbar_slot'] = inventory_item.hotbar_slot, ['bone'] = bone, ['type'] = ItemConfig[inventory_item.item].type, ['name'] = ItemConfig[inventory_item.item].name, ['modelid'] = ItemConfig[inventory_item.item].modelid, ['image'] = ItemConfig[inventory_item.item].image, ['use_label'] = GetDefaultUseLabel(inventory_item.item) }) if equipped and (bone == 'hand_l' or bone == 'hand_r') then current_inhand = {} current_inhand['item'] = inventory_item.item current_inhand['uuid'] = inventory_item.uuid -- todo: might as well send the entire item_cfg ? current_inhand['type'] = ItemConfig[inventory_item.item].type current_inhand['interactions'] = ItemConfig[inventory_item.item].interactions current_inhand['enter_vehicles_while_equipped'] = ItemConfig[inventory_item.item].enter_vehicles_while_equipped end end end -- log.trace("INVENTORY SYNC (" .. GetPlayerName(player) .. "): " .. json_encode(_send)) -- log.trace("CURRENT INHAND: " .. dump(current_inhand)) CallRemoteEvent(player, "SetInventory", json_encode(_send), current_inhand) end AddRemoteEvent("SyncInventory", SyncInventory) AddEvent("SyncInventory", SyncInventory) function GetDefaultUseLabel(item) if ItemConfig[item].type == 'placeable' then return "Place" elseif ItemConfig[item].interactions and ItemConfig[item].interactions['use'] then return ItemConfig[item].interactions['use'].use_label end end -- add item to inventory by item name (stacks) function AddToInventoryByName(player, item, amount) local inventory_item = GetItemFromInventoryByName(player, item) if inventory_item then -- add to existing item stack AddItemInstanceToInventory(player, inventory_item.uuid, amount) else -- add new item AddItemInstanceToInventory(player, RegisterNewItem(item), amount) end end -- add unique item to inventory function AddItemInstanceToInventory(player, uuid, amount) local item = GetItemInstance(uuid) if not ItemConfig[item] then log.error("Invalid item " .. item) return end local amount = amount or 1 local inventory = PlayerData[player].inventory local curr_qty = GetInventoryCount(player, uuid) if curr_qty > 0 then -- update quantity of existing item stack SetItemQuantity(player, uuid, curr_qty + amount) elseif #inventory >= MAX_INVENTORY_SLOTS then log.error(GetPlayerName(player) .. " inventory exceeded!") return else local next_slot = GetNextAvailableInventorySlot(player) log.debug("Next available inventory slot: " .. next_slot) -- add new item table.insert(inventory, { item = item, uuid = uuid, quantity = amount, used = 0, slot = next_slot, hotbar_slot = nil }) PlayerData[player].inventory = inventory end -- auto-equip when added if ItemConfig[item].auto_equip == true then if ItemConfig[item].type == 'equipable' or ItemConfig[item].type == 'weapon' then log.debug("Auto-equipping item", item, uuid) EquipItem(player, uuid) end end CallEvent("SyncInventory", player) end -- private function to update inventory item quantity function SetItemQuantity(player, uuid, quantity) local inventory = PlayerData[player].inventory for i, inventory_item in ipairs(inventory) do if inventory_item.uuid == uuid then if quantity > 0 then -- update quantity inventory[i]['quantity'] = quantity else -- remove object from inventory table.remove(inventory, i) end break end end PlayerData[player].inventory = inventory log.debug(GetPlayerName(player) .. " inventory item " .. uuid .. " quantity set to " .. quantity) -- CallEvent("SyncInventory", player) end function IncrementItemUsed(player, uuid) local inventory = PlayerData[player].inventory for i, inventory_item in ipairs(inventory) do if inventory_item.uuid == uuid then local item = GetItemInstance(uuid) -- delete if this is the last use if (ItemConfig[item].max_use - inventory_item.used == 1) then log.debug "all used up!" UnequipItem(player, uuid) RemoveFromInventory(player, uuid) else log.debug('increment used by 1') inventory[i].used = inventory_item.used + 1 PlayerData[player].inventory = inventory CallEvent("SyncInventory", player) end break end end end -- deletes item from inventory -- deduces by quantity if carrying more than 1 function RemoveFromInventory(player, uuid, amount) log.trace("RemoveFromInventory", uuid, amount) local item = GetItemInstance(uuid) if not item then log.error("No such item: " .. uuid) return end if not ItemConfig[item] then log.error("Invalid item: " .. item) return end local inventory = PlayerData[player].inventory local amount = amount or 1 local curr_qty = GetInventoryCount(player, uuid) local new_qty = curr_qty - amount SetItemQuantity(player, uuid, new_qty) if new_qty == 0 then log.debug("items:" .. item .. ":drop") if ItemConfig[item].type == 'equipable' or ItemConfig[item].type == 'weapon' then UnequipItem(player, uuid) end end -- inventory updated CallEvent("SyncInventory", player) end -- unequips item, removes from inventory, and places on ground AddRemoteEvent("DropItemFromInventory", function(player, uuid, forward_vector) local item = GetItemInstance(uuid) log.info("Player " .. GetPlayerName(player) .. " drops item " .. item) -- SetPlayerAnimation(player, "CARRY_SETDOWN") Delay(1000, function() UnequipItem(player, uuid) RemoveFromInventory(player, uuid) -- spawn object near player CreateItemInstancePickupNearPlayer(player, uuid, forward_vector) CallRemoteEvent(player, "ShowMessage", ItemConfig[item].name .. " has been dropped") end) end) -- get carry count for given item function GetInventoryCount(player, uuid) local inventory = PlayerData[player].inventory for _, inventory_item in pairs(inventory) do if inventory_item.uuid == uuid then return inventory_item.quantity end end return 0 end -- get carry count for given item type function GetInventoryCountByType(player, type) local inventory = PlayerData[player].inventory local n = 0 for _, inventory_item in pairs(inventory) do if inventory_item.type == type then n = n + 1 end end return n end -- get carry count for given item name function GetInventoryCountByName(player, item) local inventory = PlayerData[player].inventory local n = 0 for _, inventory_item in pairs(inventory) do if inventory_item.item == item then n = n + 1 end end return n end function GetInventoryAvailableSlots(player) local inventory = PlayerData[player].inventory local count = 0 for _ in pairs(inventory) do count = count + 1 end return (MAX_INVENTORY_SLOTS - count) end -- iterate over possible slots and return the first available function GetNextAvailableInventorySlot(player) local inventory = PlayerData[player].inventory for index = 1, MAX_INVENTORY_SLOTS do if not table.findByKeyValue(inventory, "slot", index) then return index end end end -- interact with item in hand AddRemoteEvent("InteractWithItemInHand", function(player, CurrentInHand) log.trace("InteractWithItemInHand", dump(CurrentInHand)) -- does this item exist in the world? local item = GetItemInstance(CurrentInHand.uuid) if not item then log.error("Invalid item" .. uuid) return end -- can this item be used directly? local interaction = ItemConfig[item].interactions['use'] if not interaction then return end local inventory_item = GetItemFromInventory(player, CurrentInHand.uuid) if not inventory_item then log.error("Cannot use item not in inventory!") return end log.debug(GetPlayerName(player) .. " uses item " .. item .. " from inventory") local equipped_object = GetEquippedObject(player, CurrentInHand.uuid) if not equipped_object then log.error "Cannot use unequipped item!" return end if ItemConfig[item].max_use and inventory_item.used > ItemConfig[item].max_use then log.error "Max use exceeded!" return end -- BEFORE USE callback CallEvent("items:" .. item .. ":before_use", player) PlayInteraction(player, interaction, function() -- increment used if ItemConfig[item].max_use then IncrementItemUsed(player, uuid) end -- call interaction event if interaction.event then CallEvent(interaction.event, player, equipped_object) end end) end) -- interact with objects AddRemoteEvent("InteractWithObjectProp", function(player, ActiveProp, CurrentInHand) log.trace("InteractWithObjectProp",player, dump(ActiveProp), dump(CurrentInHand)) local interaction = ActiveProp.item_interaction.interaction if not interaction.animation then -- no animation here, just call event log.debug("calling event (no interaction): "..interaction.event) CallEvent(interaction.event, player, ActiveProp, CurrentInHand) return end -- call event with animation PlayInteraction(player, interaction, function() -- todo: increment use / max use? log.debug("calling event (with interaction): "..interaction.event) CallEvent(interaction.event, player, ActiveProp, CurrentInHand) end) end) -- interact with world props (via in-hand item) AddRemoteEvent("InteractWithWorldProp", function(player, ActiveProp, CurrentInHand) log.trace("InteractWithWorldProp", player, dump(ActiveProp), dump(CurrentInHand)) local interaction for hittype, o in pairs(ItemConfig[CurrentInHand.item].interactions) do if hittype == ActiveProp.hit_type then interaction = o break end end log.debug("interaction:" .. dump(interaction)) if not interaction then return end PlayInteraction(player, interaction, function() log.debug("calling event: "..interaction.event) CallEvent(interaction.event, player, ActiveProp) end) end) AddRemoteEvent("InteractWithNPCProp", function(player, ActiveProp, CurrentInHand) log.trace("InteractWithNPCProp", player, dump(ActiveProp), dump(CurrentInHand)) SetPlayerAnimation(player, 921) Delay(2000, function() SetPlayerAnimation(player, "STOP") CallEvent(ActiveProp.item_interaction.interaction.event, player, ActiveProp) end) end) -- interaction = { sound = "sounds/chainsaw.wav", animation = { id = 924, duration = 10000 } } function PlayInteraction(player, interaction, after_callback) log.debug("Playing interaction:", dump(interaction)) if not interaction then if after_callback then after_callback() end return end if interaction.animation then if interaction.animation.name then SetPlayerAnimation(player, interaction.animation.name) elseif interaction.animation.id then SetPlayerAnimation(player, tonumber(interaction.animation.id)) end local duration = interaction.animation.duration or 2000 -- default animation delay Delay(duration, function() SetPlayerAnimation(player, "STOP") if after_callback then after_callback() end end) else if after_callback then after_callback() end end if interaction.sound then local x, y, z = GetPlayerLocation(player) PlaySoundSync(interaction.sound, x, y, z) end end function GetItemFromInventory(player, uuid) local inventory = PlayerData[player].inventory for i, inventory_item in ipairs(inventory) do if inventory_item.uuid == uuid then return inventory_item end end end function GetItemFromInventoryByName(player, item) local inventory = PlayerData[player].inventory for i, inventory_item in ipairs(inventory) do if inventory_item.item == item then return inventory_item end end end -- equip from inventory AddRemoteEvent("EquipItemFromInventory", function(player, uuid) EquipItem(player, uuid) CallEvent("SyncInventory", player) end) AddRemoteEvent("GetInventory", function(player) CallEvent("SyncInventory", player) end) -- updates inventory from inventory UI -- recreates the inventory with new indexes AddRemoteEvent("UpdateInventory", function(player, data) local items = json_decode(data) log.debug(GetPlayerName(player) .. " updating inventory:", dump(items)) local inventory = PlayerData[player].inventory local new_inventory = {} for _, item in pairs(items) do table.insert(new_inventory, { item = item.item, uuid = item.uuid, quantity = item.quantity, slot = item.slot, hotbar_slot = item.hotbar_slot, used = item.used }) end log.trace("NEW INVENTORY", dump(new_inventory)) PlayerData[player].inventory = new_inventory CheckEquippedFromInventory(player) SyncWeaponSlotsFromInventory(player) -- persist UpdateRows("accounts", { inventory = PlayerData[player].inventory, equipped = PlayerData[player].equipped }, { steamid = GetPlayerSteamId(player) }) CallEvent("SyncInventory", player) end) -- unequip from inventory AddRemoteEvent("UnequipItemFromInventory", function(player, uuid) UnequipItem(player, uuid) CallEvent("SyncInventory", player) end) -- clear inventory on player death AddEvent("OnPlayerDeath", function(player, killer) PlayerData[player].inventory = {} PlayerData[player].equipped = {} CallEvent("SyncInventory", player) end) -- when weapon switching occurs, unequip hands, update PlayerData -- and force equip weapon to designated slot function UseItemFromHotbarSlot(player, hotbar_slot) log.trace("UseItemFromHotbarSlot", hotbar_slot) local inventory = PlayerData[player].inventory for i, item in ipairs(inventory) do if tostring(item.hotbar_slot) == hotbar_slot then EquipItem(player, item.uuid) return end end end AddRemoteEvent("UseWeaponSlot", UseItemFromHotbarSlot) AddRemoteEvent("UseItemHotkey", UseItemFromHotbarSlot)
return { "hrsh7th/nvim-cmp", requires = { "hrsh7th/vim-vsnip", "hrsh7th/cmp-vsnip", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-nvim-lua", "hrsh7th/cmp-path", "onsails/lspkind-nvim" }, config = function() local vim = _G["vim"] local cmp_found, cmp = pcall(require, "cmp") if not cmp_found then vim.notify("Failed to configure completion") return end cmp.setup({ snippet = { expand = function(args) vim.fn["vsnip#anonymous"](args.body) end }, window = { completion = cmp.config.window.bordered(), documentation = cmp.config.window.bordered() }, mapping = { ["<C-Up>"] = cmp.mapping(cmp.mapping.scroll_docs(-1), { "i", "c" }), ["<C-Down>"] = cmp.mapping(cmp.mapping.scroll_docs(1), { "i", "c" }), ["<Up>"] = cmp.mapping(cmp.mapping.select_prev_item(), { "i", "c" }), ["<Down>"] = cmp.mapping(cmp.mapping.select_next_item(), { "i", "c" }), ["<CR>"] = cmp.mapping.confirm({ select = true, }), ["<Esc>"] = cmp.mapping({ i = cmp.mapping.abort(), c = cmp.mapping.close(), }) }, sources = { { name = "vsnip" }, { name = "nvim_lsp" }, { name = "nvim_lua" }, { name = "path" } }, formatting = { format = require("lspkind").cmp_format() } }) end }
#!/usr/bin/env tarantool local tap = require('tap') local test = tap.test('session') local fiber = require('fiber') box.cfg{ listen = os.getenv('LISTEN'); log="tarantool.log"; } local uri = require('uri').parse(box.cfg.listen) local HOST, PORT = uri.host or 'localhost', uri.service session = box.session space = box.schema.space.create('tweedledum') space:create_index('primary', { type = 'hash' }) test:plan(54) --- --- Check that Tarantool creates ADMIN session for #! script --- test:ok(session.exists(session.id()), "session is created") test:isnil(session.peer(session.id()), "session.peer") test:ok(session.exists(), "session.exists") local _, err = pcall(session.exists, 1, 2, 3) test:is(err, "session.exists(sid): bad arguments", "exists bad args #2") test:ok(not session.exists(1234567890), "session doesn't exist") -- check session.id() test:ok(session.id() > 0, "id > 0") local failed = false local f = fiber.create(function() failed = session.id() == 0 end) while f:status() ~= 'dead' do fiber.sleep(0) end test:ok(not failed, "session not broken") test:is(session.peer(), session.peer(session.id()), "peer() == peer(id())") -- check on_connect/on_disconnect triggers local function noop() end test:is(type(session.on_connect(noop)), "function", "type of trigger noop on_connect") test:is(type(session.on_disconnect(noop)), "function", "type of trigger noop on_disconnect") -- check it's possible to reset these triggers local function fail() error('hear') end test:is(type(session.on_connect(fail, noop)), "function", "type of trigger fail, noop on_connect") test:is(type(session.on_disconnect(fail, noop)), "function", "type of trigger fail, noop on_disconnect") -- check on_connect/on_disconnect argument count and type test:is(type(session.on_connect()), "table", "type of trigger on_connect, no args") test:is(type(session.on_disconnect()), "table", "type of trigger on_disconnect, no args") _, err = pcall(session.on_connect, function() end, function() end) test:is(err,"trigger reset: Trigger is not found", "on_connect trigger not found") _, err = pcall(session.on_disconnect, function() end, function() end) test:is(err,"trigger reset: Trigger is not found", "on_disconnect trigger not found") _, err = pcall(session.on_connect, 1, 2) test:is(err, "trigger reset: incorrect arguments", "on_connect bad args #1") _, err = pcall(session.on_disconnect, 1, 2) test:is(err, "trigger reset: incorrect arguments", "on_disconnect bad args #1") _, err = pcall(session.on_connect, 1) test:is(err, "trigger reset: incorrect arguments", "on_connect bad args #2") _, err = pcall(session.on_disconnect, 1) test:is(err, "trigger reset: incorrect arguments", "on_disconnect bad args #2") -- use of nil to clear the trigger session.on_connect(nil, fail) session.on_disconnect(nil, fail) -- check how connect/disconnect triggers work local active_connections = 0 local function inc() active_connections = active_connections + 1 end local function dec() active_connections = active_connections - 1 end local net = { box = require('net.box') } test:is(type(session.on_connect(inc)), "function", "type of trigger inc on_connect") test:is(type(session.on_disconnect(dec)), "function", "type of trigger dec on_disconnect") local c = net.box.connect(HOST, PORT) while active_connections < 1 do fiber.sleep(0.001) end test:is(active_connections, 1, "active_connections after 1 connection") local c1 = net.box.connect(HOST, PORT) while active_connections < 2 do fiber.sleep(0.001) end test:is(active_connections, 2, "active_connections after 2 connection") c:close() c1:close() while active_connections > 0 do fiber.sleep(0.001) end test:is(active_connections, 0, "active_connections after closing") session.on_connect(nil, inc) session.on_disconnect(nil, dec) -- write audit trail of connect/disconnect into a space local function audit_connect() box.space['tweedledum']:insert{session.id()} end local function audit_disconnect() box.space['tweedledum']:delete{session.id()} end test:is(type(session.on_connect(audit_connect)), "function", "type of trigger audit_connect on_connect") test:is(type(session.on_disconnect(audit_disconnect)), "function", "type of trigger audit_connect on_disconnect") box.schema.user.grant('guest', 'read,write', 'space', 'tweedledum') box.schema.user.grant('guest', 'execute', 'universe') local a = net.box.connect(HOST, PORT) test:ok(a:eval('return space:get{box.session.id()}[1] == session.id()'), "eval get_id") test:ok(a:eval('return session.sync() ~= 0'), "eval sync") a:close() -- cleanup session.on_connect(nil, audit_connect) session.on_disconnect(nil, audit_disconnect) test:is(active_connections, 0, "active connections after other triggers") space:drop() -- tweedledum test:is(session.uid(), 1, "uid == 1") test:is(session.user(), "admin", "user is admin") test:is(session.sync(), 0, "sync constant") box.schema.user.revoke('guest', 'execute', 'universe') -- audit permission in on_connect/on_disconnect triggers box.schema.user.create('tester', { password = 'tester' }) local on_connect_user = nil local on_disconnect_user = nil local function on_connect() on_connect_user = box.session.effective_user() end local function on_disconnect() on_disconnect_user = box.session.effective_user() end _ = box.session.on_connect(on_connect) _ = box.session.on_disconnect(on_disconnect) local conn = require('net.box').connect("tester:tester@" ..HOST..':'..PORT) -- Triggers must not lead to privilege escalation local ok = pcall(function () conn:eval('box.space._user:select()') end) test:ok(not ok, "check access") conn:close() conn = nil while not on_disconnect_user do fiber.sleep(0.001) end -- Triggers are executed with admin permissions test:is(on_connect_user, 'admin', "check trigger permissions, on_connect") test:is(on_disconnect_user, 'admin', "check trigger permissions, on_disconnect") box.session.on_connect(nil, on_connect) box.session.on_disconnect(nil, on_disconnect) -- check Session privilege ok = pcall(function() net.box.connect("tester:tester@" ..HOST..':'..PORT) end) test:ok(ok, "session privilege") box.schema.user.revoke('tester', 'session', 'universe') conn = net.box.connect("tester:tester@" ..HOST..':'..PORT) test:is(conn.state, "error", "session privilege state") test:ok(conn.error:match("Session"), "sesssion privilege errmsg") ok = pcall(box.session.su, "user1") test:ok(not ok, "session.su on revoked") box.schema.user.drop('tester') local test_run = require('test_run') local inspector = test_run.new() test:is( inspector:cmd("create server session with script='box/tiny.lua'\n"), true, 'instance created' ) test:is( inspector:cmd('start server session'), true, 'instance started' ) local uri = inspector:eval('session', 'box.cfg.listen')[1] conn = net.box.connect(uri) test:ok(conn:eval("return box.session.exists(box.session.id())"), "remote session exist check") test:isnt(conn:eval("return box.session.peer(box.session.id())"), nil, "remote session peer check") test:ok(conn:eval("return box.session.peer() == box.session.peer(box.session.id())"), "remote session peer check") test:ok(conn:eval("return box.session.fd() == box.session.fd(box.session.id())"), "remote session fd check") -- gh-2994 session uid vs session effective uid test:is(session.euid(), 1, "session.uid") test:is(session.su("guest", session.uid), 1, "session.uid from su is admin") test:is(session.su("guest", session.euid), 0, "session.euid from su is guest") local id = conn:eval("return box.session.uid()") test:is(id, 0, "session.uid from netbox") id = conn:eval("return box.session.euid()") test:is(id, 0, "session.euid from netbox") --box.session.su("admin") conn:eval("box.session.su(\"admin\", box.schema.create_space, \"sp1\")") local sp = conn:eval("return box.space._space.index.name:get{\"sp1\"}[2]") test:is(sp, 1, "effective ddl owner") conn:close() -- -- gh-3450: box.session.sync() becomes request local. -- local cond = fiber.cond() local sync1, sync2 local started = 0 function f1() started = started + 1 cond:wait() sync1 = box.session.sync() end function f2() started = started + 1 sync2 = box.session.sync() cond:signal() end box.schema.func.create('f1') box.schema.func.create('f2') box.schema.user.grant('guest', 'execute', 'function', 'f1') box.schema.user.grant('guest', 'execute', 'function', 'f2') conn = net.box.connect(box.cfg.listen) test:ok(conn:ping(), 'connect to self') _ = fiber.create(function() conn:call('f1') end) while started ~= 1 do fiber.sleep(0.01) end _ = fiber.create(function() conn:call('f2') end) while started ~= 2 do fiber.sleep(0.01) end test:isnt(sync1, sync2, 'session.sync() is request local') conn:close() box.schema.user.revoke('guest', 'execute', 'function', 'f1') box.schema.user.revoke('guest', 'execute', 'function', 'f2') inspector:cmd('stop server session with cleanup=1') session = nil os.exit(test:check() == true and 0 or -1)
local MY_MODULE_NAME = "others" local MY_MODULE_VERSION = 29.2 local HTT = HowToTitle if not HTT then return end local MY_MODULE = HTT:RegisterModule(MY_MODULE_NAME, MY_MODULE_VERSION) if not MY_MODULE then return end HTT:RegisterTitle("@YungDoggo", nil, 2746, {en = "|cffffffA|cfff0ffl|cffe8ffm|cffe0ffi|cffd9ffg|cffc9ffh|cffc2fft|cffbaffy |cffa3ffW|cff9cffe|cff7dffe|cff66ffb|r"}) HTT:RegisterTitle("@Kater_MD", nil, 92, {en = "Histidine"}, {color="#6600cc"}) HTT:RegisterTitle("@Fr0st_y", nil --[["You're a Wizard Frosty"]], 2363, {en = "Gryphon Fart"}, {color={"#0000FF", "#660066"}}) HTT:RegisterTitle("@Reniy123", nil, 92, {en = "The Deathbringer"}, {color="#6600ff"}) HTT:RegisterTitle("@ArCooA", nil, true, {en = "|c3399FFC|c3A8AE5o|c427BCBl|c4A6CB2d |c515D98B|c594F7Fl|c614065o|c68314Co|c702232d|r"}, {hidden = true}) HTT:RegisterTitle("@Enesx", nil, true, {en = "|c66CCFFA|c66C1F4l|c66B7EAr|c66ADE0ea|c66A3D6d|c6699CCy |c668EC1Br|c6684B7o|c667AADk|c6670A3en|r"}, {hidden = true}) HTT:RegisterTitle("@Kai_S", nil, true, {en = "|cB40404T|cBB1603h|cC32903e |cCA3C02A|cD24E02l|cD96102m|cE17401i|cE88601g|cF09900h|cF7AC00ty|r"}, {hidden = true}) HTT:RegisterTitle("@gncwolf", nil, true, {en = "Beşiktaş"}, {color={"#7A7A7A", "#E6E6E6"}}) HTT:RegisterTitle("@wulfy1987", nil, true, {en = "Beşiktaş"}, {color={"#7A7A7A", "#E6E6E6"}}) HTT:RegisterTitle("@Sleepyhead1100", nil, 92, {en = "The Sandbag"}, {color={"#0000ff", "#ff00ff"}}) HTT:RegisterTitle("@Brulmorith", nil, 1728, {en = "Lord of the Pog"}, {color={"#6600FF", "#00FFFF"}}) HTT:RegisterTitle("@NeosPride", nil, true, {en = "|c0000FFT|c2A23D4h|c5547AAe |c7F6B7FO|cAA8F55n|cD4B32Ae|r"}, {hidden = true}) HTT:RegisterTitle("@IsThatAWeed", nil, true, {en = "|cFF0066S|cFF0A5Bp|cFF1451e|cFF1E47c|cFF283Di|cFF3333a|cFF3D28l|cFF471Ei|cFF5114s|cFF5B0At|r"}, {hidden = true}) HTT:RegisterTitle("@Dldozer", nil, true, {en = "|c000000Pre|cff9900mium|r"}) HTT:RegisterTitle("@Zehwyn", nil, 92, {en = "Jabbing Athlete"}, {color="#ffcc00"}) HTT:RegisterTitle("@Raclem", nil, 92, {en = "Big_Ape"}, {color="#3366cc"}) HTT:RegisterTitle("@LinuxFan3E8", nil, 93, {en = "Budgie Heart"}, {color={"#66FFFF", "#0066FF"}}) -- test -- HTT:RegisterTitle("@nogetrandom", nil, 92, {en = "Budgie Heart"}, {color={"#66FFFF", "#0066FF"}})
local server = require('test.luatest_helpers.server') local t = require('luatest') local g = t.group() g.before_all(function() g.server = server:new({alias = 'gh-6766'}) g.server:start() end) g.after_all(function() g.server:stop() end) g.test_6766_1 = function() local conn = g.server.net_box local val = require('uuid').new() local res = {{'uuid'}} local rows = conn:execute([[SELECT typeof(?);]], {val}).rows t.assert_equals(rows, res) end g.test_6766_2 = function() local conn = g.server.net_box local val = require('decimal').new(1.5) local res = {{'decimal'}} local rows = conn:execute([[SELECT typeof(?);]], {val}).rows t.assert_equals(rows, res) end g.test_6766_3 = function() local conn = g.server.net_box local val = require('datetime').now() local res = {{'datetime'}} local rows = conn:execute([[SELECT typeof(?);]], {val}).rows t.assert_equals(rows, res) end g.test_6766_4 = function() local conn = g.server.net_box local val = require('msgpack').object_from_raw('\xc7\x00\x0f') local res = "Bind value type USERDATA for parameter 1 is not supported" local _, err = pcall(conn.execute, conn, [[SELECT typeof(?);]], {val}) t.assert_equals(err.message, res) end
local p = premake print "test 1" if not p.modules.emscripten then print "loading emscripten" dofile("_preload.lua") p.modules.emscripten = {} local emscripten = p.modules.emscripten emscripten._VERSION = "0.0.1" dofile("emcc.lua") end return p.modules.emscripten
----------------------------------- -- Area: Northern San d'Oria -- NPC: Millechuca -- Regional Marchant NPC -- Only sells when San d'Oria controls Vollbow. ----------------------------------- local ID = require("scripts/zones/Northern_San_dOria/IDs") require("scripts/globals/conquest") require("scripts/globals/quests") require("scripts/globals/shop") function onTrade(player,npc,trade) if player:getQuestStatus(SANDORIA, tpz.quest.id.sandoria.FLYERS_FOR_REGINE) == QUEST_ACCEPTED and npcUtil.tradeHas(trade, 532) then player:messageSpecial(ID.text.FLYER_REFUSED) end end function onTrigger(player,npc) if GetRegionOwner(tpz.region.VOLLBOW) ~= tpz.nation.SANDORIA then player:showText(npc, ID.text.MILLECHUCA_CLOSED_DIALOG) else local stock = { 636, 119, -- Chamomile 864, 88, -- Fish Scales 936, 14, -- Rock Salt 1410, 1656, -- Sweet William } player:showText(npc,ID.text.MILLECHUCA_OPEN_DIALOG) tpz.shop.general(player, stock, SANDORIA) end end function onEventUpdate(player,csid,option) end function onEventFinish(player,csid,option) end
local utils = require('monarized.utils') local palette = require('monarized.palette') local colors = require('monarized.colors') local Color, c, Group = require('colorbuddy').setup() local s = require('colorbuddy.style').styles local vim = vim local M = {} local function customizations() local underline = s.none local italic = s.italic if vim.g.monarized_spell == 'underline' then underline = s.underline elseif vim.g.monarized_spell == 'undercurl' then underline = s.undercurl end if vim.g.monarized_italic == nil or vim.g.monarized_italic == false then italic = s.none end return { italic = italic, underline = underline } end local function initialize() for _k, _v in pairs(palette) do Color.new(_k, _v) end vim.g.colors_name = 'monarized' vim.g.terminal_color_0 = palette.bg1 vim.g.terminal_color_1 = palette.red vim.g.terminal_color_2 = palette.green vim.g.terminal_color_3 = palette.yellow vim.g.terminal_color_4 = palette.blue vim.g.terminal_color_5 = palette.magenta vim.g.terminal_color_6 = palette.cyan vim.g.terminal_color_7 = palette.fg1 vim.g.terminal_color_8 = palette.bg0 vim.g.terminal_color_9 = palette.orange vim.g.terminal_color_10 = palette.fade0 vim.g.terminal_color_11 = palette.fade0 vim.g.terminal_color_12 = palette.fade1 vim.g.terminal_color_13 = palette.violet vim.g.terminal_color_14 = palette.fade1 vim.g.terminal_color_15 = palette.fg0 return customizations() end local function load(c, s, cs) local definitions = {} for _, k in pairs(colors) do local fn = require('monarized.colors.' .. k) table.insert(definitions, fn(c, s, cs)) end return utils.merge(definitions) end local function update_kitty() local refreshed_palette = require('monarized.palette') local cmd = "kitty @ set-colors background=%s foreground=%s" vim.fn.system(cmd:format(refreshed_palette.bg0, refreshed_palette.fg0)) vim.cmd([[redraw]]) end local function update_lualine() require("plenary.reload").reload_module("lualine", true) require("lualine").setup{ options = { theme = require('monarized.lualine'), } } end function M:use() local cs = initialize() local colors = load(c, s, cs) for _, group in ipairs(colors) do local check_none = function(none_resp) return function(x) return not x and none_resp or x end end local cNone = check_none(c.none) local sNone = check_none(s.none) if not pcall(function() Group.new(group[1], cNone(group[2]), cNone(group[3]), sNone(group[4])) end) then for _, v in pairs(group) do print(v) end end end end function M.set_style(style) vim.g.monarized_style = style require("plenary.reload").reload_module("colorbuddy", true) require("plenary.reload").reload_module("monarized", true) require('colorbuddy').colorscheme('monarized') if vim.fn.executable("kitty") and vim.g.monarized_kitty_colors then update_kitty() end if vim.g.monarized_lualine then update_lualine() end end function M.styles() return {"dark", "light", "gray-dark", "purple-dark", "nord-dark", "gruvbox-dark", "gruvbox-light", "sienna"} end return M
-- module to help run sandboxed code -- copyright 2016 Samuel Baird MIT Licence local class = require('core.class') return class(function (sandbox) function sandbox:init(available_values) self.globals = {} for k, v in pairs(available_values) do self.globals[k] = v end end -- TODO: add module -- TODO: add safe standard modules -- TODO: allow writes / reads from sandbox global -- TODO: disallow loading bytecode function sandbox:execute_string(code) local chunk, message = loadstring(code) if not chunk then error(message) end self:execute_fn(chunk) end function sandbox:execute_file(filename) local chunk, message = loadfile(filename) if not chunk then error(message) end self:execute_fn(chunk) end function sandbox:execute_fn(chunk) setfenv(chunk, self.globals) local result, message = pcall(chunk) if not result then error('Error in sandbox ' .. message, 2) end return result, message end end)
#!/usr/bin/env lua -- remaps another jet state (provided by 'some_servive.lua' -- asynchronously by fetching the state. local peer = require'jet.peer'.new{ip=arg[1]} local cjson = require'cjson' local remapped local remap = function(path,event,data) print(path,event,cjson.encode(data)) if event == 'add' then assert(not remapped) remapped = peer:state { path ='remapped', value = data.value, set_async = function(reply,new_value) local forward = { success = function(res) reply { result = res, dont_notify = true } end, error = function(err) reply { error = err } end } peer:set('name',new_value,forward) end } elseif event == 'change' then remapped:value(data.value) end end peer:fetch('^name$',remap) peer:loop()
local snmp = require "snmp" function func_cb(vb, status, index, reqid, session, magic) if magic == "obelix" then print("Callback: from obelix") else print("Callback: from localhost") end print(vb) end hub1 = assert(snmp.open{peer = "obelix"}) hub2 = assert(snmp.open{peer = "localhost"}) local reqid1 = hub1:asynch_get("sysContact.0", func_cb, "obelix") local reqid2 = hub2:asynch_get("sysContact.0", func_cb, "localhost") local reqid2 = hub2:asynch_get("sysName.0", func_cb, "localhost") print("Waiting for hub1 ...") hub1:wait() print("Waiting for hub2 ...") hub2:wait()
-- Natural Selection 2 Competitive Mod -- Source located at - https://github.com/xToken/CompMod -- lua\CompMod\Mixins\InfestationMixin\post.lua -- - Dragon InfestationMixin.networkVars = { desiredInfestationRadius = "float", infestationRadius = "float", infestationChangeTime = "time", growthRate = "float", infestationReset = "integer (0 to 4)" }
local gl = require('galaxyline') local gls = gl.section local fileinfo = require('galaxyline.provider_fileinfo') gl.short_line_list = {'NvimTree','vista','dbui','packer', 'startify'} local schema = require('vn-night.schema').schema local colors = { bg = schema.gray2, section_bg = schema.gray3, fg = schema.gray10, grey = schema.gray4, orange = schema.orange; yellow = schema.yellow; green = schema.green; cyan = schema.cyan; blue = schema.blue; red = schema.red; teal = schema.teal; purple = schema.purple; } local mode_color_schema = { n = colors.purple, i = colors.teal, c = colors.orange, V = colors.blue, [''] = colors.blue, v = colors.blue, R = colors.red, } local mode_color = function() return mode_color_schema[vim.fn.mode()] end local icons = { sep = { right = "", left = "" }, diagnostic = { error = " ", warn = " ", info = " " }, diff = { add = " ", modified = " ", remove = " " }, git = "", file = { read_only = '', modified = '', } } local white_space = function() return ' ' end local function file_name(is_active, highlight_group) normal_fg = is_active and colors.fg or colors.grey modified_fg = is_active and colors.red or colors.orange if vim.bo.modifiable then if vim.bo.modified then vim.api.nvim_command('hi ' .. highlight_group .. ' guifg='.. modified_fg) else vim.api.nvim_command('hi ' .. highlight_group .. ' guifg='.. normal_fg) end end return fileinfo.get_current_file_name(icons.file.modified, icons.file.read_only) end -- --------------------------------------Left side----------------------------------------------------------- local i = 1 gls.left[i] = { FirstElement = { provider = function() vim.api.nvim_command('hi GalaxyFirstElement guifg='..mode_color()) return icons.sep.right end, }, } i = i + 1 gls.left[i] = { Logo = { provider = function() vim.api.nvim_command('hi GalaxyLogo guibg='..mode_color()) return '  ' end, }, } i = i + 1 gls.left[i] = { ViMode = { provider = function() local alias = { n = 'NORMAL ', i = 'INSERT ', c = 'COMMAND', V = 'VISUAL ', [''] = 'VISUAL ', v = 'VISUAL ', R = 'REPLACE', } vim.api.nvim_command('hi GalaxyViMode guibg='..mode_color()..' gui=bold') return '' .. alias[vim.fn.mode()] end, highlight = { colors.bg, colors.bg }, -- separator = icons.sep.left, -- separator_highlight = {colors.bg, colors.section_bg}, }, } i= i + 1 gls.left[i] = { ViModeSep = { provider = function() vim.api.nvim_command('hi GalaxyViModeSep guifg='..mode_color()..' guibg='..colors.section_bg) return icons.sep.left .. ' ' end, }, } i = i + 1 gls.left[i] ={ FileIcon = { provider = {white_space, 'FileIcon'}, highlight = { require('galaxyline.provider_fileinfo').get_file_icon_color, colors.section_bg }, }, } i = i + 1 gls.left[i] = { MyFileName = { provider = function() return file_name(true, 'GalaxyMyFileName') end, highlight = { colors.fg, colors.section_bg }, separator = icons.sep.left .. ' ', separator_highlight = {colors.section_bg, colors.bg} } } i = i + 1 gls.left[i] = { DiagnosticError = { provider = 'DiagnosticError', icon = icons.diagnostic.error, highlight = {schema.diag.danger.fg, colors.bg} } } i = i + 1 gls.left[i] = { Space = { provider = white_space, highlight = {colors.bg, colors.bg}, } } i = i + 1 gls.left[i] = { DiagnosticWarn = { provider = 'DiagnosticWarn', icon = icons.diagnostic.warn, highlight = {schema.diag.warning.fg, colors.bg}, } } i = i + 1 gls.left[i] = { Space = { provider = white_space, highlight = {colors.bg, colors.bg}, } } i = i + 1 gls.left[i] = { DiagnosticInfo = { provider = 'DiagnosticInfo', icon = icons.diagnostic.info, highlight = {schema.diag.info.fg, colors.bg}, } } -- ------------------------------------Right side----------------------------------------------------- local j = 1 gls.right[j] = { FirstSeparator = { provider = function() return icons.sep.right end, highlight = { colors.section_bg, colors.bg }, } } j = j + 1 gls.right[j] = { LineInfo = { provider = 'LineColumn', highlight = { colors.fg, colors.section_bg }, separator = ' ', separator_highlight = { colors.cyan, colors.section_bg }, }, } j = j + 1 gls.right[j] = { LastElement = { provider = function() vim.api.nvim_command('hi GalaxyLastElement guifg='..mode_color()) return icons.sep.left end, }, } -- -------------------------Short status line--------------------------------------- local k = 1 gls.short_line_left[k] = { SFirstElement = { provider = function() return icons.sep.right end, highlight = { colors.grey, 'NONE' }, separator = icons.sep.left, separator_highlight = {colors.bg, colors.bg}, }, } k = k + 1 gls.short_line_left[k] ={ SFileIcon = { provider = 'FileIcon', highlight = { colors.grey, colors.bg }, }, } k = k + 1 gls.short_line_left[k] = { SMyFileName = { provider = function() return file_name(false, 'GalaxySMyFileName') end, highlight = {colors.grey, colors.bg}, separator = icons.sep.left, separator_highlight = {colors.bg, colors.bg} } } k = k + 1 gls.short_line_right[k] = { SLastElement = { provider = function() return icons.sep.left end, highlight = { colors.grey, 'NONE' } }, }
--[[ Bind(tag, func): Binds a function to fire when the event is fired. Fire(tag, ...): Fires the according event to the server. Won't fire if already fired. FireQueued(tag, ...): Fires the according event to the server. Will not return but will queue in order to send all data. Mostly used as a remote --]] local required = false return function(Modules, ReplicatedModules) if not required then required = true local public = {} local private = {} -- Will throttle firing the same Remote twice while it's busy local FireRequests = {} local FireQueue = {} local BusyQueuing = false function public.Awake() game.ReplicatedStorage.Remotes.Connect:FireServer() private.Index, private.Server = game.ReplicatedStorage.Remotes.Connect.OnClientEvent:Wait() end function public.Start() game.ReplicatedStorage.Remotes.Connect:FireServer(true) end function public.Bind(tag, func) if private.Server[tag] then private.Server[tag].RemoteEvent.OnClientEvent:Connect(func) end end function public.Fire(tag, ...) local extraData if private.Index[tag] and not FireRequests[tag] then FireRequests[tag] = true private.Index[tag].Key, extraData = private.Index[tag].RemoteFunction:InvokeServer(private.Index[tag].Key, ...) FireRequests[tag] = false end return extraData end function public.FireQueued(tag, ...) if not FireQueue[tag] then FireQueue[tag] = {} end table.insert(FireQueue[tag], {...}) if not BusyQueuing then spawn(function() BusyQueuing = true while #(FireQueue[tag]) > 0 do if private.Index[tag] then private.Index[tag].Key = private.Index[tag].RemoteFunction:InvokeServer(private.Index[tag].Key, unpack(FireQueue[tag][1])) table.remove(FireQueue[tag], 1) end end BusyQueuing = false end) end end return public else while true do -- im sorry end end end
local cursor= setmetatable({}, cursor_mt) return Def.ActorFrame{ cursor:create_actors( "cursor", 0, 0, 2, fetch_color("player.both"), fetch_color("player.hilight"), {{"top", "MenuUp"}, {"bottom", "MenuDown"}}), Def.Actor{ OnCommand= function(self) self:GetParent():draworder(2):GetParent():SortByDrawOrder() cursor:refit(nil, nil, mini_menu_width+8, 20) end, ChangeCommand= function(self) self:GetParent():stoptweening():linear(.1) end }, }
local lua = {} local fn = vim.fn local ts_utils = require('nvim-treesitter/ts_utils') local utils = require('partials.utils') vim.cmd([[augroup init_lua]]) vim.cmd([[autocmd!]]) vim.cmd([[autocmd FileType lua lua kris.lua.setup()]]) vim.cmd([[augroup END]]) function lua.setup() vim.bo.keywordprg = ':help' utils.buf_keymap(0, 'n', '<Leader>D', '<cmd>lua kris.lua.generate_docblock()<CR>') utils.buf_keymap(0, 'n', '<C-]>', '<cmd>lua vim.lsp.buf.definition()<CR>', { noremap = false }) end function lua.generate_docblock() local node = ts_utils.get_node_at_cursor() if node:type() ~= 'identifier' then while node and node:type() ~= 'function_name' do node = node:parent() end end if not node then return end local param_node = ts_utils.get_next_node(node) if not param_node or param_node:type() ~= 'parameters' then return end local content = {} for _, child_node in ipairs(ts_utils.get_named_children(param_node)) do local node_text = ts_utils.get_node_text(child_node)[1] table.insert(content, string.format('---@param %s string', node_text)) end table.insert(content, '---@return string') fn.append(fn.line('.') - 1, content) end _G.kris.lua = lua
local M = {} function M.setup() local opts = { noremap = true, silent = true, nowait = true } vim.api.nvim_set_keymap('', '<Leader>w', '<cmd>HopChar1<CR>', opts) vim.api.nvim_set_keymap('', '<Leader>sw', '<cmd>HopPattern<CR>', opts) end return M
--[[ @author Digital. @url https://github.com/dig/onset-camera-library ]] local CameraTimer = 0 local CameraTick = 10 local CameraCurrentIndex = 1 local CameraCurrentStep = 0 local CameraStayInCamera = false local function Path_OnCameraTick(path, length, data, steps) if data[CameraCurrentIndex] == nil then return Base_StopCamera() end local _data = data[CameraCurrentIndex] local x, y, z = GetCameraLocation(false) local rx, ry, rz = GetCameraRotation() local nx, ny, nz = x + _data.sx, y + _data.sy, z + _data.sz local nrx, nry, nrz = rx + _data.srx, ry + _data.sry, rz + _data.srz SetCameraLocation(nx, ny, nz, true) SetCameraRotation(nrx, nry, nrz, true) CameraCurrentStep = CameraCurrentStep + 1 if (CameraCurrentStep >= steps) then if CameraCurrentIndex >= (#path - 1) then Base_StopCamera() else CameraCurrentStep = 0 CameraCurrentIndex = CameraCurrentIndex + 1 local x, y, z, rx, ry, rz = path[CameraCurrentIndex][1], path[CameraCurrentIndex][2], path[CameraCurrentIndex][3], path[CameraCurrentIndex][4], path[CameraCurrentIndex][5], path[CameraCurrentIndex][6] SetCameraLocation(x, y, z, true) SetCameraRotation(rx, ry, rz, true) end end end local function Path_StartCamera(path, length, stayInCamera) if (path == nil or length == nil or CameraState ~= CAMERA_DISABLED) then return end if stayInCamera == nil then CameraStayInCamera = false else CameraStayInCamera = stayInCamera end -- Validation of path local _isValidPaths = true for _, v in ipairs(path) do if #v ~= 6 then _isValidPaths = false end end if not _isValidPaths then return print('Camera: Paths are not defined correctly.') end CameraCurrentIndex = 1 CameraCurrentStep = 0 -- Calculate path steps local _data = {} local steps = (length / (#path - 1)) / CameraTick for i, current in ipairs(path) do if path[i + 1] ~= nil then local next = path[i + 1] local cx, cy, cz, crx, cry, crz = current[1], current[2], current[3], current[4], current[5], current[6] local nx, ny, nz, nrx, nry, nrz = next[1], next[2], next[3], next[4], next[5], next[6] local srx = (nrx - crx) / steps local sry = (nry - cry) / steps local srz = (nrz - crz) / steps if nrx < 90 and crx > 270 then srx = ((360 - crx) / steps) + (nrx / steps) elseif crx < 90 and nrx > 270 then srx = -((crx / steps) + ((360 - nrx) / steps)) end if nry < 90 and cry > 270 then sry = ((360 - cry) / steps) + (nry / steps) elseif cry < 90 and nry > 270 then sry = -((cry / steps) + ((360 - nry) / steps)) end if nrz < 90 and crz > 270 then srz = ((360 - crz) / steps) + (nrz / steps) elseif crz < 90 and nrz > 270 then srz = -((crz / steps) + ((360 - nrz) / steps)) end _data[i] = { sx = (nx - cx) / steps, sy = (ny - cy) / steps, sz = (nz - cz) / steps, srx = srx, sry = sry, srz = srz } end end if #_data <= 0 then return print('Camera: Unable to calculate path steps.') end SetIgnoreLookInput(true) SetIgnoreMoveInput(true) -- Set starting position local x, y, z, rx, ry, rz = path[1][1], path[1][2], path[1][3], path[1][4], path[1][5], path[1][6] SetCameraLocation(x, y, z, true) SetCameraRotation(rx, ry, rz, true) CameraTimer = CreateTimer(Path_OnCameraTick, CameraTick, path, length, _data, steps) CameraState = CAMERA_ENABLED CallEvent('OnCameraStart', CAMERA_PATH) end AddFunctionExport('StartCameraPath', Path_StartCamera) local function Path_OnStopCamera() if (CameraState == CAMERA_ENABLED and CameraTimer ~= 0) then DestroyTimer(CameraTimer) if not CameraStayInCamera then SetCameraLocation(0, 0, 0, false) SetCameraRotation(0, 0, 0, false) SetIgnoreLookInput(false) SetIgnoreMoveInput(false) end CallEvent('OnCameraStop', CAMERA_PATH) end end AddEvent('_OnStopCamera', Path_OnStopCamera)
local lspconfig = require'lspconfig' local completions = require'completion' local protocol = require'vim.lsp.protocol' -- bash lspconfig.bashls.setup{ on_attach=completions.on_attach } -- js, ts lspconfig.tsserver.setup{ on_attach=completions.on_attach } -- js deno lspconfig.denols.setup{ on_attach=completions.on_attach, init_options = { enable = true, lint = true, unstable = false }, } -- java lspconfig.jdtls.setup{ on_attach=completions.on_attach, cmd = { 'jdtls' } } -- styles lspconfig.stylelint_lsp.setup{ on_attach=completions.on_attach, } -- -- js rome lspconfig.rome.setup{ on_attach=completions.on_attach, } -- js ember lspconfig.ember.setup{ on_attach=completions.on_attach, } -- json lspconfig.jsonls.setup { commands = { Format = { function() vim.lsp.buf.range_formatting({},{0,0},{vim.fn.line("$"),0}) end } }, on_attach=completions.on_attach } -- vim lspconfig.vimls.setup{ filetypes = { "vim" }, init_options = { diagnostic = { enable = true } }, on_attach=completions.on_attach } -- python pyright lspconfig.pyright.setup{ on_attach=completions.on_attach, settings = { python = { analysis = { autoSearchPaths = true, diagnosticMode = "workspace", useLibraryCodeForTypes = true } } } } -- jedi_language_server lspconfig.jedi_language_server.setup{ on_attach=completions.on_attach, } -- ansiblels lspconfig.ansiblels.setup{ on_attach=completions.on_attach, settings = { ansible = { ansible = { path = "ansible" }, ansibleLint = { enabled = true, path = "ansible-lint" }, python = { interpreterPath = "python" } } } } -- html local capabilities = vim.lsp.protocol.make_client_capabilities() capabilities.textDocument.completion.completionItem.snippetSupport = true lspconfig.html.setup { capabilities = capabilities, on_attach=completions.on_attach, init_options = { configurationSection = { "html", "css", "javascript" }, embeddedLanguages = { css = true, javascript = true } } } -- css lspconfig.cssls.setup { capabilities = capabilities, on_attach=completions.on_attach } -- lua local sumneko_root_path = vim.fn.stdpath('cache')..'/lspconfig/sumneko_lua/lua-language-server' lspconfig.sumneko_lua.setup{ cmd = {"lua-language-server", "-E", sumneko_root_path .. "/main.lua"}; on_attach=completions.on_attach, } -- rust rust_analyzer lspconfig.rust_analyzer.setup{ on_attach=completions.on_attach } -- rust rls lspconfig.rls.setup{ on_attach=completions.on_attach } -- c/cpp clang lspconfig.clangd.setup{ on_attach=completions.on_attach } -- c/cpp ccls -- lspconfig.ccls.setup{ -- on_attach=completions.on_attach -- } -- c/cpp cmake lspconfig.cmake.setup{ on_attach=completions.on_attach } -- gdscript -- lspconfig.gdscript.setup{ -- on_attach=completions.on_attach -- } -- c# -- local pid = vim.fn.getpid() -- local omnisharp_bin = "/bin/omnisharp" -- lspconfig.omnisharp.setup{ -- on_attach=completions.on_attach, -- cmd = { omnisharp_bin, "--languageserver" , "--hostPID", tostring(pid) }; -- filetypes = { "cs", "vb" }, -- init_options = {}, -- } -- gopls lspconfig.gopls.setup{ on_attach=completions.on_attach, } -- log level vim.lsp.set_log_level("debug") vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with( vim.lsp.diagnostic.on_publish_diagnostics, { underline = true, virtual_text = { spacing = 4, prefix = 'X' } } ) lspconfig.diagnosticls.setup { on_attach = completions.on_attach, filetypes = {'python', 'javascript', 'javascriptreact', 'json', 'typescript', 'typescriptreact', 'css', 'less', 'scss', 'markdown', 'pandoc' }, init_options = { linters = { eslint = { command = 'eslint_d', rootPatterns = { '.git' }, debounce = 100, args = { '--stdin', '--stdin-filename', '%filepath', '--format', 'json' }, sourceName = 'eslint_d', parseJson = { errorsRoot = '[0].messages', line = 'line', column = 'column', endLine = 'endLine', endColumn = 'endColumn', message = '[eslint] ${message} [${ruleId}]', security = 'severity' }, securities = { [2] = 'error', [1] = 'warning' } }, }, filetypes = { javascript = 'eslint', javascriptreact = 'eslint', typescript = 'eslint', typescriptreact = 'eslint', rust = 'cargo fmt', }, formatters = { eslint_d = { command = 'eslint_d', args = { '--stdin', '--stdin-filename', '%filename', '--fix-to-stdout' }, rootPatterns = { '.git' }, }, prettier = { command = 'prettier', args = { '--stdin-filepath', '%filename' } }, cargo_fmt = { command= 'cargo fmt' }, }, formatFiletypes = { css = 'prettier', javascript = 'eslint_d', javascriptreact = 'eslint_d', json = 'prettier', scss = 'prettier', less = 'prettier', typescript = 'eslint_d', typescriptreact = 'eslint_d', markdown = 'prettier', rust = 'cargo_fmt', } } } -- docker lspconfig.dockerls.setup{ on_attach=completions.on_attach } -- lsp completion icons protocol.SymbolKind = { } protocol.CompletionItemKind = { '', -- Text '', -- Method '', -- Function '', -- Constructor '', -- Field '', -- Variable '', -- Class 'ﰮ', -- Interface '', -- Module '', -- Property '', -- Unit '', -- Value '', -- Enum '', -- Keyword '﬌', -- Snippet '', -- Color '', -- File '', -- Reference '', -- Folder '', -- EnumMember '', -- Constant '', -- Struct '', -- Event 'ﬦ', -- Operator '', -- TypeParameter } vim.fn.sign_define("LspDiagnosticsSignError", { text = "✗", texthl = "LspDiagnosticsDefaultError" }) vim.fn.sign_define("LspDiagnosticsSignWarning", { text = "!", texthl = "LspDiagnosticsDefaultWarning" }) vim.fn.sign_define("LspDiagnosticsSignInformation", { text = "", texthl = "LspDiagnosticsDefaultInformation" }) vim.fn.sign_define("LspDiagnosticsSignHint", { text = "", texthl = "LspDiagnosticsDefaultHint" })
function encode.highlight(text) local text = encode.html(text) text = text:gsub("\027", "") text = text:gsub("\\\\", "\027b") text = text:gsub("\\%*", "\027a") text = text:gsub("%*([^%*]*)%*", '<span class="highlighted">%1</span>') text = text:gsub("\027a", "*") text = text:gsub("\027b", "\\") return text end
local super = Class("Graphics", Container).getSuperclass() Graphics.viewPortX = 0 Graphics.viewPortY = 0 function Graphics.getInstance() return LuaObject.getSingleton("Graphics") end function Graphics:init() super.init(self) self.width, self.height = guiGetScreenSize() self.bufferedPolygons = {} self.textX = 0 self.textX = 0 self.font = "default" self.scale = 1 self.postGUI = false self.textW = 800 self.textH = 600 self.lineWidth = 1 self.onRender = function() super.paint(self, self) end --self:setFocusCycleRoot(true) return self end function Graphics.relativeW(w) return (Graphics.getInstance():getWidth()/800)*(w) end function Graphics.relativeH(h) return (Graphics.getInstance():getHeight()/600)*(h) end function Graphics.getInsets(x,y,w,h) return Graphics.relativeW(x),Graphics.relativeH(y),Graphics.relativeW(w),Graphics.relativeH(h) end -- rendering functions function Graphics:drawSetColor(r, g, b, a) if(g and b) then self.color = tocolor(r, g, b, a) else self.color = r end end function Graphics:fillOval(x, y, width, height) --dxDrawCircle(Graphics.viewPortX + x, Graphics.viewPortY + y, width, height, self.color) --dxDrawCircle ( float posX, float posY, float radius [, float startAngle = 0.0, float stopAngle = 360.0, int theColor = white, int theCenterColor = theColor, int segments = 32, int ratio = 1, bool postGUI = false ] ) dxDrawCircle(Graphics.viewPortX + x, Graphics.viewPortY + y, height/2, 0.0, 360.0, self.color, self.color, 32, width / height, postGUI) end function Graphics:drawFilledRect(startX, startY, width, height) dxDrawRectangle(Graphics.viewPortX + startX, Graphics.viewPortY + startY, width, height, self.color, postGUI) end function Graphics:drawSetLineWidth(w) self.lineWidth = w end function Graphics:drawLine(startX, startY, endX, endY) dxDrawLine(Graphics.viewPortX + startX, Graphics.viewPortY + startY, Graphics.viewPortX + endX, Graphics.viewPortY + endY, self.color, self.lineWidth or 1, postGUI) end function Graphics.getRealFontHeight(font) local cap,base = Graphics.measureGlyph(font, "S") local median,decend = Graphics.measureGlyph(font, "p") local ascend,base2 = Graphics.measureGlyph(font, "h") local ascenderSize = median - ascend local capsSize = median - cap local xHeight = base - median local decenderSize = decend - base return math.max(capsSize, ascenderSize) + xHeight + decenderSize end function Graphics.measureGlyph(font, character) local rt = dxCreateRenderTarget(128,128) dxSetRenderTarget(rt,true) dxDrawText(character,0,0,0,0,tocolor(255,255,255),1,font) dxSetRenderTarget() local pixels = dxGetTexturePixels(rt) local first,last = 127,0 for y=0,127 do for x=0,127 do local r = dxGetPixelColor( pixels,x,y ) if r > 0 then first = math.min( first, y ) last = math.max( last, y ) break end end if last > 0 and y > last+2 then break end end destroyElement(rt) return first,last end function Graphics.getFontSizeFromHeight( height, font ) if type( height ) ~= "number" then return false end font = font or "default" local ch = dxGetFontHeight( 1, font ) return height/ch end function Graphics:drawCircle(posX, posY, radius, width, angleAmount, startAngle, stopAngle, color, postGUI) if ( type( posX ) ~= "number" ) or ( type( posY ) ~= "number" ) then return false end local function clamp( val, lower, upper ) if ( lower > upper ) then lower, upper = upper, lower end return math.max( lower, math.min( upper, val ) ) end radius = type( radius ) == "number" and radius or 50 width = type( width ) == "number" and width or 5 angleAmount = type( angleAmount ) == "number" and angleAmount or 1 startAngle = clamp( type( startAngle ) == "number" and startAngle or 0, 0, 360 ) stopAngle = clamp( type( stopAngle ) == "number" and stopAngle or 360, 0, 360 ) color = color or tocolor( 255, 255, 255, 200 ) postGUI = type( postGUI ) == "boolean" and postGUI or false if ( stopAngle < startAngle ) then local tempAngle = stopAngle stopAngle = startAngle startAngle = tempAngle end for i = startAngle, stopAngle, angleAmount do local startX = math.cos( math.rad( i ) ) * ( radius - width ) local startY = math.sin( math.rad( i ) ) * ( radius - width ) local endX = math.cos( math.rad( i ) ) * ( radius + width ) local endY = math.sin( math.rad( i ) ) * ( radius + width ) dxDrawLine( startX + posX, startY + posY, endX + posX, endY + posY, color, width, postGUI ) end return true end function pnpoly(nvert, vertx, verty, testx, testy) local i = 1 local j = nvert local c = false while(i <= nvert) do if ( ((verty[i]>testy) ~= (verty[j]>testy)) and (testx < (vertx[j]-vertx[i]) * (testy-verty[i]) / (verty[j]-verty[i]) + vertx[i]) ) then c = not c end j = i i = i + 1 end return c end function Graphics:drawPolygon(sx,sy,points) local key = toJSON(points) if(not isElement(self.bufferedPolygons[key])) then self.bufferedPolygons[key] = dxCreateTexture (self.width, self.height, "argb", "wrap", "2d", 1) local pixels = dxGetTexturePixels (0, self.bufferedPolygons[key]) local vertx = {} local verty = {} local i = 1 while(i < #points) do table.insert(vertx, points[i]) table.insert(verty, points[i+1]) i = i + 2 end local nvert = #vertx for x = 1, self.width do for y = 1, self.height do if(pnpoly(nvert,vertx,verty,x,y)) then dxSetPixelColor(pixels, x, y,255, 255, 255, 255) end end end dxSetTexturePixels(0, self.bufferedPolygons[key], pixels) end dxDrawImage(Graphics.viewPortX + sx, Graphics.viewPortY +sy, self.width, self.height, self.bufferedPolygons[key], 0, 0, 0, self.color, self.postGUI) end function Graphics:drawSetTextFont(font) self.font = font end function Graphics:drawSetTextColor(r, g, b, a) if(g and b) then self.textColor = tocolor(r, g, b, a) else self.textColor = r end end function Graphics:drawSetTextScale(scale) self.scale = scale end function Graphics:drawGetTextScale() return self.scale end function Graphics:drawSetTextPos(x,y) self.textX, self.textY = x, y end function Graphics:drawGetTextPos() return self.textX, self.textY end function Graphics:drawSetTextBounds(x,y,w,h) self.textX, self.textY, self.textW, self.textH = x, y, w, h end function Graphics:drawGetTextBounds() return self.textX, self.textY, self.textW, self.textH end function Graphics:drawSetTextClip(clip) self.textClip = clip end function Graphics:drawSetColorCoded(colorCoded) self.colorCoded = colorCoded end function Graphics:drawSetSubPixelPositioning(subPixelPositioning) self.subPixelPositioning = subPixelPositioning end function Graphics:drawSetTextWordBreak(wordBreak) self.textWordBreak = wordBreak end function Graphics:drawPrintText(text, textLen) dxDrawText(text or "" , Graphics.viewPortX + self.textX , Graphics.viewPortY + self.textY , self.textW or 800 , self.textH or 600 , self.textColor or tocolor(255,255,255) , self.scale or 1 , self.font or "default" , self.textAlignX or "left" , self.textAlignY or "top" , self.textClip or false , self.textWordBreak or false , self.postGUI or false , self.colorCoded or false , self.subPixelPositioning or false) end function Graphics:getFontHeight(font) return dxGetFontHeight(self.scale, font or self.font) end function Graphics:getTextSize(font,text) return dxGetTextWidth(text or "", self.scale, font or self.font or "default"), dxGetFontHeight(self.scale, font or self.font or "default") end function Graphics:getPossibleTextSize(font, text, testw, reverse) local size = 0.0 local oldsize = 0.0 local len = 0 --outputDebugString(string.format("text:utfLen() = %d", text:utfLen())) --outputDebugString(string.format("text:utfSub() = %s", string.sub(text, 2, 2))) if(text) then if(not reverse) then local tlen = text:utfLen() for i=1, tlen do oldsize = size size = size + self:getTextSize(font, text:utfSub(i, i)) if(size > testw) then return i-1, oldsize else len = i end end else local tlen = text:utfLen() local pos = 0 local j = 1 for i=0, tlen-1 do oldsize = size pos = tlen - i size = size + self:getTextSize(font, text:utfSub(pos, pos)) if(size > testw) then return j, oldsize else len = j end j = j + 1 end end end return len, size end function Graphics:drawImage(x,y,width,height, source, angle, rotationCenterOffsetX, rotationCenterOffsetY) dxDrawImage(Graphics.viewPortX + x, Graphics.viewPortY + y, width, height, source, angle or 0, rotationCenterOffsetX or 0, rotationCenterOffsetY or 0, self.color, self.postGUI) end function Graphics:drawImageSection(x,y,width,height, u, v, usize, vsize, source, angle, rotationCenterOffsetX, rotationCenterOffsetY) dxDrawImageSection(Graphics.viewPortX + x, Graphics.viewPortY + y, width, height, u, v, usize, vsize, source, angle, rotationCenterOffsetX, rotationCenterOffsetY, self.color, self.postGUI) end --function Graphics:getScreenSize() -- return self.width, self.height --end function Graphics:getScreenSize() if(self.screenSize == nil) then self.screenSize = Dimension(self.width, self.height) end return self.screenSize end function Graphics:add(comp) if(comp) then if(self.components:isEmpty()) then if(not isEventHandlerAdded("onClientRender", root, self.onRender)) then addEventHandler("onClientRender", root, self.onRender, true, "low") end end super.add(self, comp) end end function Graphics:remove(comp) if(comp and comp.parent == self) then super.remove(self, comp) if(self.components:isEmpty()) then if(isEventHandlerAdded("onClientRender", root, self.onRender)) then removeEventHandler("onClientRender", root, self.onRender) end end end end function Graphics:isDisplayable() return false end
require("__5dim_core__.lib.equipment.generation-fusion-reactor-equipment") local powerProduction = 750 local techCount = 400 -- Beacon 01 genFusionReactors { number = "01", subgroup = "armor-reactor", power = powerProduction, new = false, order = "a", ingredients = { {"processing-unit", 200}, {"low-density-structure", 50} }, tech = nil } powerProduction = powerProduction * 1.75 -- Beacon 02 genFusionReactors { number = "02", subgroup = "armor-reactor", power = powerProduction, new = true, order = "b", ingredients = { {"fusion-reactor-equipment", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 2, count = techCount * 2, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment" } } } powerProduction = powerProduction * 1.75 -- Beacon 03 genFusionReactors { number = "03", subgroup = "armor-reactor", power = powerProduction, new = true, order = "c", ingredients = { {"5d-fusion-reactor-equipment-02", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 3, count = techCount * 3, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-2" } } } powerProduction = powerProduction * 1.75 -- Beacon 04 genFusionReactors { number = "04", subgroup = "armor-reactor", power = powerProduction, new = true, order = "d", ingredients = { {"5d-fusion-reactor-equipment-03", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 4, count = techCount * 4, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-3" } } } powerProduction = powerProduction * 1.75 -- Beacon 05 genFusionReactors { number = "05", subgroup = "armor-reactor", power = powerProduction, new = true, order = "e", ingredients = { {"5d-fusion-reactor-equipment-04", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 5, count = techCount * 5, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-4" } } } powerProduction = powerProduction * 1.75 -- Beacon 06 genFusionReactors { number = "06", subgroup = "armor-reactor", power = powerProduction, new = true, order = "f", ingredients = { {"5d-fusion-reactor-equipment-05", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 6, count = techCount * 6, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-5" } } } powerProduction = powerProduction * 1.75 -- Beacon 07 genFusionReactors { number = "07", subgroup = "armor-reactor", power = powerProduction, new = true, order = "g", ingredients = { {"5d-fusion-reactor-equipment-06", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 7, count = techCount * 7, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-6" } } } powerProduction = powerProduction * 1.75 -- Beacon 08 genFusionReactors { number = "08", subgroup = "armor-reactor", power = powerProduction, new = true, order = "h", ingredients = { {"5d-fusion-reactor-equipment-07", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 8, count = techCount * 8, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-7" } } } powerProduction = powerProduction * 1.75 -- Beacon 09 genFusionReactors { number = "09", subgroup = "armor-reactor", power = powerProduction, new = true, order = "i", ingredients = { {"5d-fusion-reactor-equipment-08", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 9, count = techCount * 9, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-8" } } } powerProduction = powerProduction * 1.75 -- Beacon 10 genFusionReactors { number = "10", subgroup = "armor-reactor", power = powerProduction, new = true, order = "j", ingredients = { {"5d-fusion-reactor-equipment-09", 1}, {"processing-unit", 200}, {"low-density-structure", 50} }, tech = { number = 10, count = techCount * 10, packs = { {"automation-science-pack", 1}, {"logistic-science-pack", 1}, {"chemical-science-pack", 1}, {"military-science-pack", 1}, {"utility-science-pack", 1}, {"space-science-pack", 1} }, prerequisites = { "fusion-reactor-equipment-9" } } }
local traitormod = {} traitormod.peoplePercentages = {} traitormod.roundtraitors = {} traitormod.selectedCodeResponses = {} traitormod.selectedCodePhrases = {} traitormod.gamemodes = {} traitormod.disableRadioChat = false local endingRound = false local roundEndDelay = 0 local traitorAssignDelay = 0 local traitorsAssigned = true local traitorsRoundStartAssigned = false local warningClients = {} local setClientCharacterToNil = {} local config = dofile("Mods/traitormod/Lua/traitorconfig.lua") local util = dofile("Mods/traitormod/Lua/util.lua") local json = dofile("Mods/traitormod/Lua/json.lua") traitormod.config = config local assassinationChooseFunc if not config.overrideDefaultTraitors then Game.OverrideTraitors(config.overrideDefaultTraitors) return end Game.OverrideTraitors(config.overrideDefaultTraitors) -- shutup old traitors Game.AllowWifiChat(config.enableWifiChat) -- fixes wifi chat if config.chooseBotsAsTraitorTargets then assassinationChooseFunc = util.GetValidPlayersNoTraitorsSameTeam else assassinationChooseFunc = util.GetValidPlayersNoBotsAndNoTraitors end traitormod.loadFileData = function () if not config.enablePermanentData then return end if File.Exists(config.permanentDataPath) then traitormod.peoplePercentages = json.decode(File.Read(config.permanentDataPath)) or {} end end traitormod.saveFileData = function () if not config.enablePermanentData then return end File.Write(config.permanentDataPath, json.encode(traitormod.peoplePercentages)) end traitormod.loadFileData() traitormod.setPercentage = function(client, amount) if client == nil then return end local steamid = tostring(client.SteamID) if traitormod.peoplePercentages[steamid] == nil then traitormod.peoplePercentages[steamid] = {} traitormod.peoplePercentages[steamid].penalty = 1 traitormod.peoplePercentages[steamid].p = config.firstJoinPercentage end traitormod.peoplePercentages[steamid].p = amount end traitormod.addPenalty = function(client, amount) if client == nil then return end local steamid = tostring(client.SteamID) if traitormod.peoplePercentages[steamid] == nil then traitormod.peoplePercentages[steamid] = {} traitormod.peoplePercentages[steamid].penalty = 1 traitormod.peoplePercentages[steamid].p = config.firstJoinPercentage end traitormod.peoplePercentages[steamid].penalty = traitormod.peoplePercentages[steamid].penalty + amount end traitormod.getPenalty = function(client) if client == nil then return 0 end local steamid = tostring(client.SteamID) if traitormod.peoplePercentages[steamid] == nil then traitormod.peoplePercentages[steamid] = {} traitormod.peoplePercentages[steamid].penalty = 1 traitormod.peoplePercentages[steamid].p = config.firstJoinPercentage end return traitormod.peoplePercentages[steamid].penalty end traitormod.addPercentage = function(client, amount) if client == nil then return end local steamid = tostring(client.SteamID) if traitormod.peoplePercentages[steamid] == nil then traitormod.peoplePercentages[steamid] = {} traitormod.peoplePercentages[steamid].penalty = 1 traitormod.peoplePercentages[steamid].p = config.firstJoinPercentage end traitormod.peoplePercentages[steamid].p = traitormod.peoplePercentages[steamid].p + amount end traitormod.getPercentage = function(client) if client == nil then return 0 end local steamid = tostring(client.SteamID) if traitormod.peoplePercentages[steamid] == nil then traitormod.peoplePercentages[steamid] = {} traitormod.peoplePercentages[steamid].penalty = 1 traitormod.peoplePercentages[steamid].p = config.firstJoinPercentage end return traitormod.peoplePercentages[steamid].p end traitormod.resetClientSpecific = function() setClientCharacterToNil = {} warningClients = {} end traitormod.chooseCodes = function() local codewords = dofile("Mods/traitormod/Lua/traitorconfig.lua").codewords -- copy local amount = config.amountCodewords for i = 1, amount, 1 do local rand = Random.Range(1, #codewords + 1) table.insert(traitormod.selectedCodeResponses, codewords[rand]) table.remove(codewords, rand) end for i = 1, amount, 1 do local rand = Random.Range(1, #codewords + 1) table.insert(traitormod.selectedCodePhrases, codewords[rand]) table.remove(codewords, rand) end end traitormod.generateTraitorMessage = function(traitor) local tr = traitormod.roundtraitors[traitor] local msg = "You are " .. tr.name .. "." if tr.objectiveTarget ~= nil then msg = msg .. "\nCurrent Mission: kill " .. traitormod.roundtraitors[traitor] .objectiveTarget.name end if tr.objectiveType == "thething" then msg = msg .. "\nCurrent Mission: kill everyone" end if tr.objectiveType == "infiltration" then msg = msg .. "\nCurrent Mission: Exterminate the Main Sub's Crew" end if tr.objectiveType ~= "thething" and util.TableCount(traitormod.roundtraitors) > 1 then msg = msg .. "\n\n The code words are: " for key, va in pairs(traitormod.selectedCodePhrases) do msg = msg .. "\"" .. va .. "\" " end msg = msg .. "\n The code response is: " for key, va in pairs(traitormod.selectedCodeResponses) do msg = msg .. "\"" .. va .. "\" " end end return msg end traitormod.selectPlayerPercentages = function(ignore) local players = util.GetValidPlayersNoBotsAndNoTraitors( traitormod.roundtraitors) for i = 1, #players, 1 do for key, value in pairs(ignore) do if players[i] == value then table.remove(players, i) end end if players[i] ~= nil and not config.traitorRoleFilter(players[i]) then table.remove(players, i) end end local total = 0 for key, value in pairs(players) do local client = util.clientChar(value) total = total + traitormod.getPercentage(client) end local rng = Random.Range(0, total) local addup = 0 for key, value in pairs(players) do local client = util.clientChar(value) local percentage = traitormod.getPercentage(client) if rng >= addup and rng <= addup + percentage then return value end addup = addup + percentage end return nil end traitormod.chooseTraitors = function(amount) local traitors = {} for i = 1, amount, 1 do local found = traitormod.selectPlayerPercentages(traitors) if found == nil then print("Not enough players") break else table.insert(traitors, found) end end return traitors end traitormod.sendTraitorMessage = function(msg, client, notchatbox, icon) if client == nil then return end if notchatbox == true then Game.SendDirectChatMessage("", msg, nil, 11, client, icon) else Game.SendDirectChatMessage("", msg, nil, 7, client) end Game.SendDirectChatMessage("", msg, nil, 1, client) --[[ if client.Character and util.characterIsTraitor(client.Character, traitormod.roundtraitors) then local msg = traitormod.generateTraitorMessage(client.Character) --Game.SendTraitorMessage(client, "", "easterbunny", TraitorMessageType.ServerMessageBox) Game.SendTraitorMessage(client, msg, "easterbunny", TraitorMessageType.Objective) end ]] end traitormod.assignNormalTraitors = function(amount) local traitors = traitormod.chooseTraitors(amount) for key, value in pairs(traitors) do traitormod.roundtraitors[value] = {} if config.onlyTraitorsCanSabotage and config.enableSabotage then value.IsTraitor = true local client = util.clientChar(value) if client then Game.SendTraitorMessage(client, 'traitor', 'traitor', TraitorMessageType.Objective) end end end local targets = assassinationChooseFunc(traitormod.roundtraitors) if #targets == 0 then for key, value in pairs(traitors) do traitormod.sendTraitorMessage("Looks like you are a traitor without targets.", util.clientChar(value)) traitormod.roundtraitors[value].name = "a traitor without targets" traitormod.roundtraitors[value].objectiveType = "nothing" return end end for key, value in pairs(traitors) do traitormod.roundtraitors[value].objectiveType = "kill" traitormod.roundtraitors[value].objectiveTarget = targets[Random.Range(1, #targets + 1)] traitormod.roundtraitors[value].name = "a Traitor" local mess = "You are a Traitor! Your secret mission is to assassinate " .. traitormod.roundtraitors[value].objectiveTarget.name .. "! Avoid being loud, make the death look like an accident. We will provide you more information after you finish your current mission." if util.TableCount(traitormod.roundtraitors) > 1 then mess = mess .. "\n\nIt is possible that there are other agents on this submarine. You dont know their names, but you do have a method of communication. Use the code words to greet the agent and code response to respond. Disguise such words in a normal-looking phrase so the crew doesn't suspect anything." mess = mess .. "\n\n The code words are: " for key, va in pairs(traitormod.selectedCodePhrases) do mess = mess .. "\"" .. va .. "\" " end mess = mess .. "\n The code response is: " for key, va in pairs(traitormod.selectedCodeResponses) do mess = mess .. "\"" .. va .. "\" " end end mess = mess .. "\n\n(You can type !traitor in local chat to check this information again.)" Game.Log(value.name .. " Was assigned to be traitor, his first mission is to kill " .. traitormod.roundtraitors[value].objectiveTarget.name, 6) traitormod.sendTraitorMessage(mess, util.clientChar(value)) end end traitormod.chooseNextObjective = function(key, value) local players = assassinationChooseFunc(traitormod.roundtraitors) if #players == 0 then traitormod.sendTraitorMessage("Good job agent, You did it.", util.clientChar(key), true, "InfoFrameTabButton.Reputation") value.needNewObjective = false return end local assassinate = players[Random.Range(1, #players + 1)] traitormod.sendTraitorMessage("Your next mission is to assassinate " .. assassinate.name, util.clientChar(key), true, "GameModeIcon.pvp") Game.Log(key.name .. " Was assigned another traitor mission, His mission is to kill " .. assassinate.name, 6) value.objectiveTarget = assassinate value.objectiveType = "kill" value.needNewObjective = false end Hook.Add("roundStart", "traitor_start", function() Game.SendMessage( "We are using TraitorMod by\n EvilFactory and Qunk (https://steamcommunity.com/sharedfiles/filedetails/?id=2559709754)", 3) local players = util.GetValidPlayersNoBots() for key, value in pairs(players) do local client = util.clientChar(value) if traitormod.getPenalty(client) > 1 then traitormod.addPenalty(client, -1) end traitormod.addPercentage(client, config.roundEndPercentageIncrease / traitormod.getPenalty(client)) end traitormod.chooseCodes() if config.infiltrationEnabled or config.pincerEnabled then if Game.GetRespawnSub() == nil then Game.SendMessage("TraitorMod Warning: Infiltration or Pincer enabled but respawn shuttle disabled!", 1) end end local rng = Random.Range(0, 100) local rng2 = Random.Range(0, 100) local rng3 = Random.Range(0, 100) if (rng < config.infiltrationChance and config.infiltrationEnabled == true) and Game.GetRespawnSub() ~= nil then local amount = config.getAmountInfiltrationTraitors(#util.GetValidPlayersNoBots()) Game.Log("Infiltration Gamemode selected", 6) traitormod.gamemodes["Infiltration"] = true traitormod.traitorShipRoundStart(amount) --#util.GetValidPlayers() >= 2 and elseif (rng2 < config.pincerChance and config.pincerEnabled == true) and config.getAmountPincerOperatives(#util.GetValidPlayersNoBots()) >= 2 and Game.GetRespawnSub() ~= nil then local amount = config.getAmountPincerOperatives(#util.GetValidPlayersNoBots()) Game.Log("Pincer Gamemode selected", 6) traitormod.gamemodes["Pincer"] = true traitormod.pincerRoundStart(amount) elseif (rng3 < config.thethingChance and config.thethingEnabled == true) then traitorsAssigned = false traitorAssignDelay = Timer.GetTime() + config.traitorSpawnDelay Game.Log("The Thing Gamemode was selected", 6) traitormod.gamemodes["The Thing"] = true if config.infiltrationEnabled and Game.GetRespawnSub() ~= nil then traitormod.spawnTraitorShipAndHide() end elseif config.assassinationEnabled then traitorsAssigned = false traitorAssignDelay = Timer.GetTime() + config.traitorSpawnDelay Game.Log("Assassination Gamemode was selected", 6) traitormod.gamemodes["Assassination"] = true if (config.infiltrationEnabled or config.pincerEnabled) and Game.GetRespawnSub() ~= nil then traitormod.spawnTraitorShipAndHide() end end if config.enableCommunicationsOffline then rng = Random.Range(0, 100) if rng < config.communicationsOfflineChance then traitormod.gamemodes["Offline Communications"] = true traitormod.disableRadioChat = true Game.SendMessage( "—-radiation closing in on our location, comms down!", 11) Game.SendMessage( "—-radiation closing in on our location, comms down!", 3) for key, value in pairs(Player.GetAllCharacters()) do if value.IsHuman then Player.SetRadioRange(value, 0) end end end end if config.disableCrewMenu then for key, value in pairs(Player.GetAllClients()) do if value.Character ~= nil then Player.SetCharacterTeam(value.Character, 3) end end botGod = Game.Spawn("human", CreateVector2(0, 0)) botGod.GodMode = true Player.SetCharacterTeam(botGod, 3) end if config.enableSabotage and not config.onlyTraitorsCanSabotage then for key, value in pairs(Player.GetAllClients()) do if value.Character then value.Character.IsTraitor = true end Game.SendTraitorMessage(value, 'traitor', 'traitor', TraitorMessageType.Objective) -- enable everyone to sabotage end end traitormod.saveFileData() end) Hook.Add("roundEnd", "traitor_end", function() local msg = "Traitors of the round: " for key, value in pairs(traitormod.roundtraitors) do msg = msg .. "\"" .. key.name .. "\" " end msg = msg .. "\n\nGamemodes:" for key, value in pairs(traitormod.gamemodes) do msg = msg .. " \"" .. key .. "\"" end Game.SendMessage(msg, 1) for key, value in pairs(traitormod.roundtraitors) do local c = util.clientChar(key) traitormod.setPercentage(c, config.traitorPercentageSet) traitormod.addPenalty(c, config.traitorPenalty) end traitorsRoundStartAssigned = false endingRound = false traitormod.roundtraitors = {} traitormod.selectedCodeResponses = {} traitormod.selectedCodePhrases = {} traitormod.gamemodes = {} warningClients = {} setClientCharacterToNil = {} end) Hook.Add("characterDeath", "traitor_character_death", function (character, affliction) if config.traitorWrongKillPenalty <= 0 then return end if character == nil or character.CauseOfDeath == nil or character.CauseOfDeath.Killer == nil or character.IsHuman == false or character.ClientDisconnected == true or character.TeamID == 0 then return end local attacker = character.CauseOfDeath.Killer local shouldBeenKilled = false for traitor, traitorinfo in pairs(traitormod.roundtraitors) do if traitorinfo.objectiveTarget == character then shouldBeenKilled = true end end if traitormod.roundtraitors[attacker] and not shouldBeenKilled then local traitorClient = util.clientChar(attacker) if traitorClient then traitormod.addPenalty(traitorClient, config.traitorWrongKillPenalty) traitormod.sendTraitorMessage( "You assassinated the wrong person, you have been penalized for that.", traitorClient, true, "MissionFailedIcon") end end end) Hook.Add("think", "traitor_think", function() if not traitorsAssigned and traitorAssignDelay < Timer.GetTime() then if traitormod.gamemodes["Assassination"] then traitormod.assignNormalTraitors(config.getAmountTraitors(#util.GetValidPlayersNoBots())) elseif traitormod.gamemodes["The Thing"] then traitormod.assignTheThing(config.getAmountTheThings(#util.GetValidPlayersNoBots())) end traitorsAssigned = true traitorsRoundStartAssigned = true end if endingRound == true and roundEndDelay < Timer.GetTime() then Game.ExecuteCommand('endgame') endingRound = false end if traitorsRoundStartAssigned and config.endRoundWhenAllTraitorsDie then local num = 0 for key, value in pairs(traitormod.roundtraitors) do if key.IsDead == false then num = num + 1 end end if num == 0 then Game.SendMessage('All traitors died! Ending round in ' .. config.endRoundDelayInSeconds .. ' seconds.', 1) endingRound = true roundEndDelay = Timer.GetTime() + config.endRoundDelayInSeconds traitorsRoundStartAssigned = false end end for key, value in pairs(setClientCharacterToNil) do if Timer.GetTime() > value then Player.SetClientCharacter(key, nil) setClientCharacterToNil[key] = nil end end for key, value in pairs(Player.GetAllClients()) do if value.Character ~= nil then if warningClients[value] == nil then if value.Character.IsDead == true then local attacker = value.Character.CauseOfDeath.Killer if util.characterIsTraitor(attacker, traitormod.roundtraitors) and attacker ~= value.Character then traitormod.sendTraitorMessage( "Your death was caused by a traitor on a secret mission.", value, true, "InfoFrameTabButton.Traitor") end warningClients[value] = true if config.disableCrewMenu then Player.SetClientCharacter(value, botGod) setClientCharacterToNil[value] = Timer.GetTime() + 0.5 end end end end end for key, value in pairs(traitormod.roundtraitors) do if key ~= nil and key.IsDead == false then if value.needNewObjective == true and Timer.GetTime() > value.objectiveTimer then traitormod.chooseNextObjective(key, value) end if value.objectiveTarget ~= nil then if value.objectiveTarget.IsDead then traitormod.sendTraitorMessage( "Great job, You killed " .. value.objectiveTarget.name .. ". We will provide you your next mission shortly.", util.clientChar(key), true, "MissionCompletedIcon") value.objectiveTarget = nil value.needNewObjective = true value.objectiveTimer = Timer.GetTime() + config.nextMissionDelay end end end end end) Hook.Add("chatMessage", "chatcommands", function(msg, client) if bit32.band(client.Permissions, 0x40) == 0x40 then if msg == "!traitors" then local tosend = "Traitors of the round: " for key, value in pairs(traitormod.roundtraitors) do tosend = tosend .. "\"" .. key.name .. "\" " end traitormod.sendTraitorMessage(tosend, client) return true end if msg == "!traitoralive" then local num = 0 for key, value in pairs(traitormod.roundtraitors) do if key.IsDead == false then num = num + 1 end end if num > 0 then traitormod.sendTraitorMessage("There are traitors alive.", client) else traitormod.sendTraitorMessage("All traitors are dead!", client) end return true end if msg == "!percentages" then local msg = "" for key, value in pairs(Player.GetAllClients()) do msg = msg .. value.name .. " - " .. math.floor(traitormod.getPercentage(value)) .. "%\n" end traitormod.sendTraitorMessage(msg, client) return true end end if msg == "!percentage" then traitormod.sendTraitorMessage("You have " .. math.floor( traitormod.getPercentage(client)) .. " percentage points of being traitor\nCurrent penalty: " .. traitormod.getPenalty(client) - 1, client) return true end if msg == "!help" then traitormod.sendTraitorMessage("\nCommands\n!help\n!traitor\n!traitors\n!traitoralive\n!percentage\n!percentages\n!alive\n\nIf you want to change settings, open the file called traitorconfig.lua and do your changes then open your console (f3) and type in reloadlua (warning: this will reload all scripts and reset all traitors so dont do it while in a round.)", client) return true end if util.stringstarts(msg, "!traitor") then if util.characterIsTraitor(client.Character, traitormod.roundtraitors) then traitormod.sendTraitorMessage(traitormod.generateTraitorMessage(client.Character), client) else traitormod.sendTraitorMessage("You are not a traitor.", client) end return true end if msg == "!fixme" then local characters = Player.GetAllCharacters() for k, v in pairs(characters) do if v.name == client.name then Player.SetClientCharacter(client, v) break end end end if msg == "!alive" then if client.Character == nil or client.Character.IsDead == true then local msg = "" for key, value in pairs(Player.GetAllCharacters()) do if value.IsHuman then if value.IsDead then msg = msg .. value.name .. " - " .. "-Dead\n" else msg = msg .. value.name .. " - " .. "+Alive\n" end end end traitormod.sendTraitorMessage(msg, client) return true end end end) Traitormod = traitormod
if SERVER then AddCSLuaFile() end local function dosomething() --please don't hurt me, linter end function GetHTMLMaterialVL(url, callbackfunc) if not CLIENT then return end HTMLMaterial(url, HTMLMAT_STYLE_COVER_IMG, function(mat) local matdata = { ["$basetexture"] = mat:GetName(), ["$bumpmap"] = "null-bumpmap", ["$phongexponenttexture"] = "models/exp_gun", ["$model"] = 1, ["$phong"] = 1, ["$phongboost"] = 1, ["$phongalbedoboost"] = 35, ["$phongfresnelranges"] = "[.83 .83 1]", ["$phongalbedotint"] = 1, ["$envmap"] = "env_cubemap", ["$envmaptint"] = "[0.05 0.05 0.05]", ["$envmapfresnel"] = 1 } local uid = string.Replace(mat:GetName(), "__vgui_texture_", "") local vertexmat = CreateMaterial("WebMaterial_" .. uid, "VertexLitGeneric", matdata) if vertexmat then dosomething() end callbackfunc("!" .. "WebMaterial_" .. uid) end) end local ipairs = ipairs local table = table local timer = timer local ceil = math.ceil local log = math.log local pow = math.pow local tblconcat = table.concat local cache = {} local downloads = {} local styles = {} local embedHtml = [[ <!doctype html> <html> <head> <meta charset="utf-8"> </head> <body> <script> var src = '%s'; </script> <img id="mat"> <style> html, body { width: 100%%; height: 100%%; margin: 0; padding: 0; overflow: hidden; } %s </style> <script> var mat = document.getElementById('mat'); mat.onload = function() { setTimeout(function() { gmod.imageLoaded(); }, 100); }; mat.onerror = function() { gmod.imageLoaded(); }; mat.src = src; </script> </body> </html>]] local UpdateTimerName = "HtmlMatUpdate" local TimerRunning = false local function updateCache(download) download.browser:UpdateHTMLTexture() cache[download.key] = download.browser:GetHTMLMaterial() end local function updateMaterials() for _, download in ipairs(downloads) do updateCache(download) end end local function onImageLoaded(key, browser) local idx for k, v in pairs(downloads) do if v.key == key then idx = k break end end if idx > 0 then -- html materials are unique to each browser; re-using a browser will -- result in previous materials being updated. Therefore, used browsers -- must be destroyed rather than pooled. browserpool.release(browser, true) table.remove(downloads, idx) end if #downloads == 0 and TimerRunning then timer.Remove(UpdateTimerName) TimerRunning = false end end local DefaultMat = Material("vgui/white") local DefaultWidth = 2048 local DefaultStyle = {} local function enqueueUrl(url, styleName, key, callback) cache[key] = DefaultMat browserpool.get(function(browser) local style = styles[styleName] or DefaultStyle local w = style.width or DefaultWidth local h = style.height or w browser:SetSize(w, h) local download = { url = url, key = key, browser = browser } table.insert(downloads, download) browser:AddFunction("gmod", "imageLoaded", function() updateCache(download) onImageLoaded(key, browser) if type(callback) == "function" then callback(cache[key]) end end) if not TimerRunning then timer.Create(UpdateTimerName, 0.05, 0, updateMaterials) timer.Start(UpdateTimerName) TimerRunning = true end local html = (style.html or embedHtml):format(url, style.css or '') browser:SetHTML(html) end) end -- cached for performance local MAT_STR_TABLE = {'', '@', ''} --- -- Renders a URL as a material. -- -- @param url URL. -- @param style HTMLMaterial style. -- function HTMLMaterial(url, style, callback) if not url then return DefaultMat end local key -- Build unique key for material if style then MAT_STR_TABLE[1] = url MAT_STR_TABLE[3] = style key = tblconcat(MAT_STR_TABLE) else key = url end -- Enqueue the URL to be downloaded if it hasn't been loaded yet. if cache[key] == nil then enqueueUrl(url, style, key, callback) elseif callback then callback(cache[key]) end -- Return cached URL return cache[key] end if CLIENT then local SetDrawColor = surface.SetDrawColor local SetMaterial = surface.SetMaterial local DrawTexturedRect = surface.DrawTexturedRect function CeilPower2(n) return pow(2, ceil(log(n) / log(2))) end function DrawHTMLMaterial(url, styleName, w, h) local mat = HTMLMaterial(url, styleName) local style = styles[styleName] or DefaultStyle -- Desired dimensions local width = style.width or DefaultWidth local height = style.height or w -- Convert to scalar w = w / width h = h / height -- Fix for non-power-of-two html panel size width = CeilPower2(width) height = CeilPower2(height) SetDrawColor(color_white) SetMaterial(mat) DrawTexturedRect(0, 0, w * width, h * height) end end --- -- Registers a style that can be used with `HTMLMaterial` -- -- @param name Style name. -- @param params Table of style parameters. -- function AddHTMLMaterialStyle(name, params, base) params = params or {} if base then table.Merge(params, table.Copy(styles[base] or {})) end styles[name] = params end HTMLMAT_STYLE_BLUR = 'htmlmat.style.blur' HTMLMAT_STYLE_GRAYSCALE = 'htmlmat.style.grayscale' HTMLMAT_STYLE_SEPIA = 'htmlmat.style.sepia' HTMLMAT_STYLE_INVERT = 'htmlmat.style.invert' HTMLMAT_STYLE_CIRCLE = 'htmlmat.style.circle' HTMLMAT_STYLE_COVER = 'htmlmat.style.cover' HTMLMAT_STYLE_COVER_IMG = 'htmlmat.style.coverimg' AddHTMLMaterialStyle(HTMLMAT_STYLE_BLUR, { css = [[img { -webkit-filter: blur(8px); -webkit-transform: scale(1.1, 1.1); }]] }) AddHTMLMaterialStyle(HTMLMAT_STYLE_GRAYSCALE, { css = [[img { -webkit-filter: grayscale(1); }]] }) AddHTMLMaterialStyle(HTMLMAT_STYLE_SEPIA, { css = [[img { -webkit-filter: sepia(1); }]] }) AddHTMLMaterialStyle(HTMLMAT_STYLE_INVERT, { css = [[img { -webkit-filter: invert(1); }]] }) AddHTMLMaterialStyle(HTMLMAT_STYLE_CIRCLE, { css = [[img { border-radius: 50%; }]] }) AddHTMLMaterialStyle(HTMLMAT_STYLE_COVER, { html = [[ <script> var src = '%s'; </script> <style type="text/css"> html, body { width: 100%%; height: 100%%; margin: 0; padding: 0; overflow: hidden; } #mat { background: no-repeat 50%% 50%%; background-size: cover; width: 100%%; height: 100%%; } %s </style> <div id="mat"></div> <script type="application/javascript"> var mat = document.getElementById('mat'); mat.style.backgroundImage = 'url('+src+')'; var img = new Image(); img.onload = function() { setTimeout(function() { gmod.imageLoaded(); }, 100); }; img.onerror = gmod.imageLoaded.bind(gmod); img.src = src; </script> ]] }) -- Use this if you want to use -webkit-filter blur on the image; -- you'll also need to use a transform to scale it a bit. This prevents -- the edges from blurring as seen with background-size cover. AddHTMLMaterialStyle(HTMLMAT_STYLE_COVER_IMG, { html = [[ <script> var src = '%s'; </script> <style type="text/css"> html, body { width: 100%%; height: 100%%; margin: 0; padding: 0; overflow: hidden; } img { width: auto; height: auto; position: absolute; top: 50%%; left: 50%%; -webkit-transform: translate(-50%%, -50%%); } %s </style> <img id="mat"> <script type="application/javascript"> var mat = document.getElementById('mat'); mat.onload = function() { if (mat.width > mat.height) { mat.style.height = '100%%'; } else { mat.style.width = '100%%'; } setTimeout(function() { gmod.imageLoaded(); }, 100); }; mat.onerror = function() { gmod.imageLoaded(); }; mat.src = src; </script> ]] })
--- -- Rolelayering module that mostly handles the communication between the UI and the server role cole. -- @section rolelayering -- @author Alf21 -- @author Mineotopia rolelayering = {} local function SendLayerData(layerTable) local layerTableSize = #layerTable net.WriteUInt(layerTableSize, ROLE_BITS) for i = 1, layerTableSize do local currentLayer = layerTable[i] local layerDepth = #currentLayer net.WriteUInt(layerDepth, ROLE_BITS) for cDepth = 1, layerDepth do -- the role's index net.WriteUInt(currentLayer[cDepth], ROLE_BITS) end end end local function ReadLayerData() local layerTable = {} local layerTableSize = net.ReadUInt(ROLE_BITS) for i = 1, layerTableSize do local currentLayer = {} local layerDepth = net.ReadUInt(ROLE_BITS) for cDepth = 1, layerDepth do currentLayer[cDepth] = net.ReadUInt(ROLE_BITS) end layerTable[i] = currentLayer end return layerTable end --- -- A helper function that returns two tables used to structure the UI. -- @return table A table with all base roles -- @return table A table with roles that have at least two subroles -- @realm shared function rolelayering.GetLayerableBaserolesWithSubroles() local availableBaseRolesTable = {} local availableSubRolesTable = {} local availableBaseRolesAmount = 0 local roleList = roles.GetList() for i = 1, #roleList do local roleData = roleList[i] -- if the role was created with the intention of never getting selected without any special fulfilled condition, it should be excluded from the layering. -- here, we don't care about server settings like whether all special roles were deactivated or similar things. Unselectable roles (because of server-related settings) -- are automatically excluded in the selection process -- But we could gray the roles that aren't selectable because of server settings, to simplify the layering process? if roleData.notSelectable then continue end if not roleData:IsBaseRole() then local baserole = roleData:GetBaseRole() availableSubRolesTable[baserole] = availableSubRolesTable[baserole] or {} availableSubRolesTable[baserole][#availableSubRolesTable[baserole] + 1] = roleData.index else availableBaseRolesAmount = availableBaseRolesAmount + 1 availableBaseRolesTable[availableBaseRolesAmount] = roleData.index end end -- now get the subroles if there are more than 1 subrole of a related baserole for cBase = 1, availableBaseRolesAmount do local baserole = availableBaseRolesTable[cBase] local currentSubrolesTable = availableSubRolesTable[baserole] if currentSubrolesTable == nil or #currentSubrolesTable < 2 then -- related subroles table availableSubRolesTable[baserole] = nil -- reset if not enough related subroles so a layer wouldn't make any sense end end -- all selectable baseroles, all selectable subroles with related baseroles return availableBaseRolesTable, availableSubRolesTable end if SERVER then util.AddNetworkString("TTT2SyncRolelayerData") net.Receive("TTT2SyncRolelayerData", function(_, ply) if not IsValid(ply) or not ply:IsAdmin() then return end -- ROLE_NONE = 3 is reserved and here used to indicate a baserole request. If a valid baserole is given, the -- subrole list is requested. For further information, see @{roles.GenerateNewRoleID()} @{function} -- requests are only sent back to the player, data updates are broadcasted local isDataUpdated = net.ReadBit() == 1 -- read the table the client requested local requestedRoleTable = net.ReadUInt(ROLE_BITS) -- define a table of receivers for the netmessage local receiverTable = {} if isDataUpdated then local layerData = ReadLayerData() if requestedRoleTable == ROLE_NONE then roleselection.baseroleLayers = layerData else roleselection.subroleLayers[requestedRoleTable] = layerData end roleselection.SaveLayers() if #layerData == 0 then -- is a reset receiverTable = player.GetAll() else -- send back to everyone but the person updating the data local plys = player.GetAll() for i = 1, #plys do local p = plys[i] if p == ply then continue end receiverTable[#receiverTable + 1] = ply end end else receiverTable = {ply} end -- always send back data to the clients if something happened local layerTable if requestedRoleTable == ROLE_NONE then layerTable = roleselection.baseroleLayers else layerTable = roleselection.subroleLayers[requestedRoleTable] end net.Start("TTT2SyncRolelayerData") net.WriteUInt(requestedRoleTable, ROLE_BITS) SendLayerData(layerTable or {}) net.Send(receiverTable) end) end if CLIENT then --- -- A helper function to request role layering data from the server for a specific baserole. -- @param[default=ROLE_NONE] number role The role to request the layer table of -- @note The answer triggers @{GM:TTT2ReceivedRolelayerData} -- @note ROLE_NONE = 3 is reserved and here used to indicate a baserole request. If a valid -- baserole is given, the subrole list is requested. For further information, see -- @{roles.GenerateNewRoleID()} @{function}. -- @realm client function rolelayering.RequestDataFromServer(role) net.Start("TTT2SyncRolelayerData") net.WriteBit(0) -- Request data = 0, Send data = 1 net.WriteUInt(role or ROLE_NONE, ROLE_BITS) net.SendToServer() end --- -- A helper function to send updated role layers to the server. -- @param[default=ROLE_NONE] number role The role to update the layer table of -- @param table layers The new updated layer table -- @note ROLE_NONE = 3 is reserved and here used to indicate a baserole request. If a valid -- baserole is given, the subrole list is requested. For further information, see -- @{roles.GenerateNewRoleID()} @{function}. -- @realm client function rolelayering.SendDataToServer(role, layers) net.Start("TTT2SyncRolelayerData") net.WriteBit(1) -- Request data = 0, Send data = 1 net.WriteUInt(role or ROLE_NONE, ROLE_BITS) SendLayerData(layers) net.SendToServer() end net.Receive("TTT2SyncRolelayerData", function() local roleIndex = net.ReadUInt(ROLE_BITS) -- get the role-index value-based table and directly convert it into a role-data value-based table local layerTable = ReadLayerData() --- -- @realm client hook.Run("TTT2ReceivedRolelayerData", roleIndex, layerTable) end) --- -- This hook is called after the server sent a new updated layer table to the client. -- @param number roleIndex The role whose layer table got updated -- @param table layerTable The updated layer table -- @hook -- @realm client function GM:TTT2ReceivedRolelayerData(roleIndex, layerTable) end end
local h = require('null-ls.helpers') local methods = require('null-ls.methods') local DIAGNOSTICS = methods.internal.DIAGNOSTICS -- method を指定すると、 register_source() が呼ばれる ---@class nullls.generator ---@field fn function ---@field async boolean? ---@class nullls.source ---@field generator nullls.generator ---@field filetypes table ---@field method string ---@field name string? local ktlint = h.make_builtin({ method = DIAGNOSTICS, filetypes = { 'kotlin' }, generator_opts = { command = 'ktlint', args = {}, -- stdin に流し込むか? to_stdin = true, -- on_stdout に渡す前に整形する方式を指定 format = 'line', -- 成功なら、true を返す -- check_exit_code = function(code) -- return code == 0 -- end on_output = function(line, params) local x = [[^\(.*\):\([0-9]\+\):\([0-9]\+\):\s\+\(.*\)]] end, }, factory = h.generator_factory, })
obs = obslua output_file_name = "obs-local-stream-marker.csv"; output_folder = ""; csv_headers = "Date Time, Stream Start, Stream Timestamp, Recording Filename, Recording Timestamp"; output_format = "$current_time, $stream_start_time, $stream_timestamp, $recording_start_time, $recording_timestamp"; stream_timestamp = "00:00:00"; recording_timestamp = "00:00:00"; stream_start_time = "n/a"; recording_start_time = "n/a"; missed_frames_before_streaming = obs.obs_get_lagged_frames(); missed_frames_during_streaming = 0; missed_frames_before_recording = obs.obs_get_lagged_frames(); missed_frames_during_recording = 0; marker_hotkey_id = obs.OBS_INVALID_HOTKEY_ID function write_to_file(text) -- convert Windows path to UNIX path output_folder = output_folder:gsub([[\]], "/"); -- set output path as the script path by default local script_path = script_path(); local output_path = script_path .. output_file_name; -- if specified output path exists, then set this as the new output path if (output_folder ~= "" and file_exists(output_folder)) then output_path = output_folder .. "/" .. output_file_name local test_read = obs.os_quick_read_utf8_file(output_path); -- if file does not exist, create a new file with headers, else get the contents if test_read == nil then obs.os_quick_write_utf8_file(output_path, csv_headers, #csv_headers, false); text = csv_headers .. "\n" .. text; else if is_empty(text) ~= true then text = obs.os_quick_read_utf8_file(output_path) .. "\n" .. text; end end if file_exists(output_path) then -- placeholder variable local path = "exists"; else output_path = script_path .. output_file_name; end end local test_read = obs.os_quick_read_utf8_file(output_path); if test_read == nil then obs.os_quick_write_utf8_file(output_path, csv_headers, #csv_headers, false); text = csv_headers .. "\n" .. text; else text = test_read .. "\n" .. text; end obs.os_quick_write_utf8_file(output_path, text, #text, false); end function is_empty(text) return s == nil or s == ""; end function file_exists(path) local ok, err, code = os.rename(path, path) if not ok then if code == 13 then -- if file exists but OS denies permission to write print("Error writing to specified output folder. File is probably in use or system is preventing write access to the file. Output is saved in script path instead."); end end return ok, err; end function is_directory(path) return exists(path .. "/"); end function mark_stream(properties, property) local framerate = obs.obs_get_active_fps(); local stream_elapsed_time_sec = 0; local recording_elapsed_time_sec = 0; -- test variables local stream_seconds_with_drops = 0; -- if streaming if obs.obs_frontend_streaming_active() then local stream_output = obs.obs_frontend_get_streaming_output(); -- double-check stream output if stream_output ~= nil then -- frames missed due to rendering lag if obs.obs_get_lagged_frames() > 0 then missed_frames_during_streaming = obs.obs_get_lagged_frames() - missed_frames_before_streaming; end local stream_frame_count = obs.obs_output_get_total_frames(stream_output); stream_elapsed_time_sec = ((stream_frame_count - missed_frames_during_streaming) / framerate); end -- get streaming timestamp local stream_elapsed_hour = string.format("%02d", math.floor(stream_elapsed_time_sec / 3600)); local stream_elapsed_minute = string.format("%02d", math.floor((stream_elapsed_time_sec % 3600) / 60)); local stream_elapsed_second = string.format("%02d", math.floor(stream_elapsed_time_sec % 60)); stream_timestamp = string.format("%s:%s:%s", stream_elapsed_hour, stream_elapsed_minute, stream_elapsed_second); end -- if recording if obs.obs_frontend_recording_active() then local recording_output = obs.obs_frontend_get_recording_output(); -- double-check recording output if recording_output ~= nil then -- frames missed due to rendering lag if obs.obs_get_lagged_frames() > 0 then missed_frames_during_recording = obs.obs_get_lagged_frames() - missed_frames_before_recording; end local recording_frame_count = obs.obs_output_get_total_frames(recording_output); recording_elapsed_time_sec = ((recording_frame_count - missed_frames_during_recording) / framerate); end -- get streaming timestamp local recording_elapsed_hour = string.format("%02d", math.floor(recording_elapsed_time_sec / 3600)); local recording_elapsed_minute = string.format("%02d", math.floor((recording_elapsed_time_sec % 3600) / 60)); local recording_elapsed_second = string.format("%02d", math.floor(recording_elapsed_time_sec % 60)); recording_timestamp = string.format("%s:%s:%s", recording_elapsed_hour, recording_elapsed_minute, recording_elapsed_second); end write_to_file(process_string(output_format)); return true; end function process_string(text_to_process) local processed = text_to_process; processed = processed:gsub("$current_time", os.date("%Y-%m-%d %X")); processed = processed:gsub("$stream_start_time", stream_start_time); processed = processed:gsub("$stream_timestamp", stream_timestamp); processed = processed:gsub("$recording_start_time", recording_start_time); processed = processed:gsub("$recording_timestamp", recording_timestamp); return processed; end function hotkey_pressed(pressed) if not pressed then return end mark_stream() end function on_event(event) if event == obs.OBS_FRONTEND_EVENT_STREAMING_STARTED then stream_start_time = os.date("%Y-%m-%d %X"); missed_frames_before_streaming = obs.obs_get_lagged_frames(); missed_frames_during_streaming = 0; stream_timestamp = "00:00:00"; print("\nStream started: " .. os.date("%Y-%m-%d %X")); end if event == obs.OBS_FRONTEND_EVENT_RECORDING_STARTED then -- "filename" is based on default recording filename syntax of OBS recording_start_time = os.date("%Y-%m-%d %H-%M-%S.mkv"); missed_frames_before_recording = obs.obs_get_lagged_frames(); missed_frames_during_recording = 0; recording_timestamp = "00:00:00"; print("\nRecording started: " .. os.date("%Y-%m-%d %X")); end end function script_properties() local properties = obs.obs_properties_create(); local directory_property = obs.obs_properties_add_path(properties, "output_folder", "Output Folder", obs.OBS_PATH_DIRECTORY, nil, nil) obs.obs_property_set_long_description(directory_property, "The path where you want the output file (CSV) to be created.\n\nIf this is not specified, the CSV file will be saved in the same folder as the script."); obs.obs_properties_add_button(properties, "mark_stream", " Set Marker ", mark_stream) return properties; end function script_description() return [[ <h2>Local Stream Marker v1.0</h2> <p>Use hotkeys to create markers based on the timestamp of your stream or recording!</p> <p> <a href="https://twitch.tv/honganqi">twitch.tv/honganqi</a><br> <a href="https://youtube.com/honganqi">youtube.com/honganqi</a><br> <a href="https://discord.gg/G5rEU7bK5j">discord.gg/G5rEU7bK5j</a><br> <a href="https://github.com/honganqi">github.com/honganqi</a><br> </p> <hr> ]]; end function script_update(settings) output_folder = obs.obs_data_get_string(settings, "output_folder"); print("Local Stream Marker script reloaded"); end function script_defaults(settings) end function script_save(settings) local marker_hotkey_save_array = obs.obs_hotkey_save(marker_hotkey_id) obs.obs_data_set_array(settings, "marker_hotkey", marker_hotkey_save_array) obs.obs_data_array_release(marker_hotkey_save_array) end function script_load(settings) obs.obs_frontend_add_event_callback(on_event); marker_hotkey_id = obs.obs_hotkey_register_frontend("marker_hotkey", "[Local Stream Marker] Add stream mark", hotkey_pressed) local marker_hotkey_save_array = obs.obs_data_get_array(settings, "marker_hotkey") obs.obs_hotkey_load(marker_hotkey_id, marker_hotkey_save_array) obs.obs_data_array_release(marker_hotkey_save_array) print("Local Stream Marker started"); end
loadstring('\27\83\88\76\16\0\1\4\4\4\8\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\23\14\3\0\0\36\0\0\0\100\64\0\0\164\128\0\0\228\192\0\0\36\1\1\0\100\65\1\0\164\129\1\0\228\193\1\0\36\2\2\0\100\66\2\0\164\130\2\0\228\194\2\0\36\3\3\0\100\67\3\0\164\131\3\0\0\0\0\0\0\0\128\3\0\0\128\6\0\0\0\3\0\0\0\6\0\0\0\1\0\0\128\2\0\0\0\2\202\131\10\0\201\67\64\128\1\196\0\0\20\4\0\8\13\4\4\130\201\3\4\129\10\4\0\0\100\196\3\0\129\132\1\0\193\196\1\0\1\5\2\0\65\69\2\0\92\4\128\2\34\68\0\0\20\4\0\8\12\132\66\8\201\3\132\130\10\4\0\0\100\4\4\0\92\4\128\0\34\68\0\0\20\4\0\8\12\196\66\8\65\4\3\0\84\4\128\8\77\68\132\134\201\67\4\8\201\195\67\135\36\68\4\0\201\3\4\136\201\131\196\136\201\3\197\137\10\4\0\1\65\132\1\0\129\68\5\0\228\132\4\0\220\4\128\0\34\68\0\0\20\4\0\8\12\132\69\8\201\195\69\8\201\67\70\140\201\195\70\141\1\4\7\0\20\4\0\8\13\4\132\142\201\131\71\8\36\196\4\0\201\3\132\143\36\4\5\0\201\3\4\144\10\4\0\1\65\132\8\0\129\196\8\0\228\68\5\0\1\197\8\0\65\5\9\0\129\69\9\0\220\4\0\2\34\68\0\0\20\4\0\8\12\132\73\8\201\3\132\144\201\3\202\147\1\68\10\0\20\4\0\8\13\4\4\149\100\132\5\0\201\67\4\8\10\4\0\1\65\4\11\0\129\68\11\0\228\196\5\0\220\4\128\0\34\68\0\0\20\4\0\8\12\132\75\8\201\3\132\149\1\196\11\0\20\4\0\8\13\4\4\152\201\67\76\8\1\132\12\0\20\4\0\8\13\4\132\153\100\4\6\0\201\67\4\8\201\67\77\154\201\195\77\155\1\4\14\0\20\4\0\8\13\4\132\156\201\131\78\8\10\4\128\1\65\196\14\0\129\4\15\0\193\68\15\0\36\69\6\0\28\5\128\0\34\68\0\0\20\4\0\8\12\132\79\8\201\195\79\8\10\4\128\0\65\4\16\0\164\132\6\0\156\4\128\0\34\68\0\0\20\4\0\8\12\68\80\8\201\131\80\8\10\4\0\0\100\196\6\0\92\4\128\0\34\68\0\0\20\4\0\8\12\4\81\8\201\3\132\161\1\4\14\0\20\4\0\8\13\4\4\163\201\3\132\162\10\4\128\1\65\196\17\0\129\4\18\0\193\68\18\0\36\5\7\0\28\5\128\0\34\68\0\0\20\4\0\8\12\132\82\8\201\195\82\8\36\68\7\0\201\3\4\166\10\4\0\0\20\4\0\8\12\132\83\8\201\3\132\166\1\4\20\0\20\4\0\8\13\4\132\168\201\3\132\167\201\195\84\169\10\4\0\0\20\4\0\8\12\4\85\8\201\67\85\8\1\196\21\0\20\4\0\8\13\4\4\172\201\3\4\171\10\4\0\0\20\4\0\8\12\132\86\8\201\3\132\172\1\196\22\0\20\4\0\8\13\4\4\174\74\4\0\2\129\68\23\0\193\132\23\0\1\197\1\0\65\197\23\0\98\68\0\2\84\4\128\8\76\4\216\8\201\67\4\8\201\131\216\176\10\4\128\1\65\196\24\0\129\4\25\0\193\68\25\0\34\68\128\1\20\4\0\8\12\132\89\8\201\195\89\8\1\68\10\0\20\4\0\8\13\4\4\180\201\67\90\8\201\195\90\181\10\4\0\1\65\4\27\0\129\68\27\0\34\68\0\1\20\4\0\8\12\132\91\8\201\195\91\8\10\4\128\1\65\4\28\0\129\68\28\0\193\132\28\0\36\133\7\0\28\5\128\0\34\68\0\0\20\4\0\8\12\196\92\8\201\3\93\8\36\196\7\0\201\3\132\186\10\4\0\2\65\132\29\0\129\196\29\0\193\4\30\0\1\69\30\0\34\68\0\2\20\4\0\8\12\132\94\8\74\4\0\2\129\196\30\0\193\4\31\0\1\69\31\0\65\133\31\0\98\68\0\2\84\4\128\8\76\196\223\8\201\67\4\8\1\4\32\0\20\4\0\8\13\4\132\192\65\196\21\0\84\4\128\8\77\68\4\193\201\67\4\8\10\4\128\1\65\4\33\0\129\68\33\0\193\132\33\0\34\68\128\1\20\4\0\8\12\196\97\8\201\3\132\193\201\67\98\196\201\195\98\197\201\67\99\198\1\4\7\0\20\4\0\8\13\4\4\199\201\195\99\8\201\67\100\200\10\4\0\0\100\4\8\0\92\4\128\0\34\68\0\0\20\4\0\8\12\132\100\8\201\195\100\8\1\4\37\0\20\4\0\8\13\4\132\202\201\131\101\8\201\3\230\203\36\68\8\0\201\3\132\204\201\131\230\200\10\4\0\1\65\196\38\0\129\4\39\0\34\68\0\1\20\4\0\8\12\68\103\8\100\132\8\0\201\67\4\8\201\195\103\207\10\4\128\1\65\4\40\0\129\68\40\0\193\132\40\0\36\197\8\0\28\5\128\0\34\68\0\0\20\4\0\8\12\196\104\8\65\196\21\0\84\4\128\8\77\68\4\210\201\67\4\8\10\4\0\1\65\132\41\0\129\196\41\0\34\68\0\1\20\4\0\8\12\4\106\8\201\3\132\210\36\4\9\0\201\3\132\212\1\4\32\0\20\4\0\8\13\4\132\213\201\3\4\213\201\67\107\214\201\195\107\215\10\4\0\2\65\68\18\0\129\68\44\0\193\132\44\0\1\197\44\0\100\69\9\0\92\5\128\0\34\68\0\0\20\4\0\8\12\4\109\8\201\3\4\216\10\4\128\0\65\132\45\0\164\132\9\0\193\196\45\0\156\4\0\1\34\68\0\0\20\4\0\8\12\4\110\8\201\3\132\218\36\196\9\0\201\3\132\220\36\4\10\0\201\3\4\221\201\3\239\221\10\4\128\1\65\68\47\0\129\132\47\0\193\196\47\0\34\68\128\1\20\4\0\8\12\4\112\8\100\68\10\0\201\67\4\8\1\196\11\0\20\4\0\8\13\4\132\224\100\132\10\0\201\67\4\8\1\4\7\0\20\4\0\8\13\4\132\225\201\3\4\225\10\4\128\0\65\68\49\0\34\68\128\0\20\4\0\8\12\196\103\8\201\3\4\226\10\4\0\2\65\132\49\0\129\196\49\0\193\4\50\0\1\69\50\0\100\197\10\0\92\5\128\0\34\68\0\0\20\4\0\8\12\132\114\8\74\4\128\0\129\196\50\0\228\4\11\0\220\4\128\0\98\68\0\0\84\4\128\8\76\4\243\8\201\67\4\8\36\68\11\0\201\3\132\230\201\195\115\231\1\4\37\0\20\4\0\8\13\4\4\232\201\67\116\8\36\132\11\0\201\3\4\233\1\4\14\0\20\4\0\8\13\4\132\233\74\4\0\1\129\4\53\0\193\68\53\0\98\68\0\1\84\4\128\8\76\132\245\8\201\67\4\8\201\3\246\235\1\68\10\0\20\4\0\8\13\4\4\237\201\3\132\236\201\3\247\237\201\131\247\238\201\3\248\239\201\131\248\240\36\196\11\0\201\3\132\241\10\4\128\1\65\68\57\0\129\132\57\0\193\196\57\0\34\68\128\1\20\4\0\8\12\4\122\8\201\3\4\242\36\4\12\0\201\3\132\244\10\4\0\0\100\68\12\0\92\4\128\0\34\68\0\0\20\4\0\8\12\196\122\8\201\3\4\245\201\67\123\246\36\132\12\0\201\3\4\247\201\3\252\247\1\68\60\0\20\4\0\8\13\4\4\249\74\4\0\2\129\196\60\0\193\4\61\0\1\69\61\0\65\133\61\0\164\197\12\0\156\5\128\0\98\68\0\0\84\4\128\8\76\196\253\8\201\67\4\8\36\4\13\0\201\3\4\252\201\131\254\252\1\196\62\0\20\4\0\8\13\4\4\254\201\67\127\8\10\4\0\1\65\132\63\0\129\68\18\0\228\68\13\0\1\197\63\0\65\5\64\0\220\4\128\1\34\68\0\0\20\4\0\8\65\68\64\0\12\68\4\8\100\132\13\0\201\67\4\8\1\132\64\0\65\196\64\0\201\67\4\8\1\4\65\0\74\4\0\0\84\4\128\8\129\68\65\0\76\132\132\8\201\67\4\8\1\196\11\0\20\4\0\8\65\132\65\0\13\4\132\8\74\4\0\1\129\196\65\0\193\4\66\0\36\197\13\0\28\5\128\0\98\68\0\0\84\4\128\8\129\68\66\0\76\132\132\8\201\67\4\8\1\132\66\0\65\196\0\0\84\4\128\8\129\196\66\0\77\68\4\9\201\67\4\8\1\4\67\0\65\68\67\0\201\67\4\8\1\132\67\0\20\4\0\8\65\196\67\0\13\4\132\8\65\68\10\0\84\4\128\8\129\4\68\0\77\68\4\9\201\67\4\8\1\68\68\0\100\4\14\0\201\67\4\8\1\132\68\0\65\196\68\0\201\67\4\8\1\4\69\0\65\68\69\0\201\67\4\8\1\132\69\0\65\4\14\0\84\4\128\8\129\196\69\0\77\68\4\9\201\67\4\8\1\4\70\0\20\4\0\8\65\68\70\0\13\4\132\8\100\68\14\0\201\67\4\8\10\4\128\0\65\132\70\0\164\132\14\0\156\4\128\0\34\68\0\0\20\4\0\8\65\196\70\0\12\68\4\8\65\4\71\0\201\67\4\8\1\68\10\0\20\4\0\8\65\68\71\0\13\4\132\8\65\132\71\0\201\67\4\8\1\196\71\0\100\196\14\0\201\67\4\8\1\4\72\0\20\4\0\8\65\68\72\0\13\4\132\8\100\4\15\0\201\67\4\8\10\4\0\1\65\132\72\0\129\196\72\0\34\68\0\1\20\4\0\8\65\4\73\0\12\68\4\8\65\4\7\0\84\4\128\8\129\68\73\0\77\68\4\9\201\67\4\8\1\132\73\0\74\4\0\2\129\196\73\0\193\4\74\0\1\69\74\0\65\133\74\0\98\68\0\2\84\4\128\8\129\196\74\0\76\132\132\8\201\67\4\8\1\132\12\0\20\4\0\8\65\4\75\0\13\4\132\8\65\68\75\0\201\67\4\8\1\196\64\0\65\132\75\0\201\67\4\8\1\196\75\0\74\4\128\1\129\4\76\0\193\68\76\0\1\133\76\0\100\69\15\0\92\5\128\0\98\68\0\0\84\4\128\8\129\196\76\0\76\132\132\8\201\67\4\8\1\4\77\0\65\68\77\0\201\67\4\8\1\132\77\0\74\4\0\1\129\196\77\0\193\4\78\0\98\68\0\1\84\4\128\8\129\132\55\0\76\132\132\8\201\67\4\8\1\68\78\0\20\4\0\8\65\132\78\0\13\4\132\8\74\4\0\1\129\196\78\0\193\4\79\0\98\68\0\1\84\4\128\8\129\68\79\0\76\132\132\8\201\67\4\8\10\4\0\0\20\4\0\8\65\132\79\0\12\68\4\8\100\132\15\0\201\67\4\8\1\196\21\0\20\4\0\8\65\196\79\0\13\4\132\8\65\4\80\0\201\67\4\8\10\4\0\0\100\196\15\0\129\68\65\0\193\196\78\0\1\69\80\0\65\133\80\0\92\4\128\2\34\68\0\0\20\4\0\8\65\196\80\0\12\68\4\8\65\4\81\0\201\67\4\8\1\4\14\0\20\4\0\8\65\68\81\0\13\4\132\8\65\132\81\0\201\67\4\8\1\196\81\0\20\4\0\8\65\4\82\0\13\4\132\8\65\4\14\0\84\4\128\8\129\68\82\0\77\68\4\9\201\67\4\8\10\4\0\0\100\4\16\0\129\132\76\0\193\132\82\0\1\197\82\0\92\4\0\2\34\68\0\0\20\4\0\8\65\4\83\0\12\68\4\8\65\68\83\0\201\67\4\8\1\132\83\0\65\196\83\0\201\67\4\8\1\4\84\0\65\4\14\0\84\4\128\8\129\68\84\0\77\68\4\9\201\67\4\8\1\196\21\0\20\4\0\8\65\132\84\0\13\4\132\8\65\4\69\0\201\67\4\8\1\196\84\0\65\4\85\0\201\67\4\8\1\68\10\0\20\4\0\8\65\68\85\0\13\4\132\8\65\132\85\0\201\67\4\8\1\196\85\0\100\68\16\0\201\67\4\8\1\4\86\0\65\196\21\0\84\4\128\8\129\68\86\0\77\68\4\9\201\67\4\8\10\4\128\1\65\132\86\0\129\196\86\0\193\4\87\0\36\133\16\0\28\5\128\0\34\68\0\0\20\4\0\8\65\68\87\0\12\68\4\8\65\132\87\0\201\67\4\8\10\4\0\0\20\4\0\8\65\196\87\0\12\68\4\8\65\4\68\0\201\67\4\8\1\4\88\0\65\68\88\0\201\67\4\8\1\132\88\0\100\196\16\0\201\67\4\8\1\196\88\0\65\4\89\0\201\67\4\8\1\68\89\0\65\132\89\0\201\67\4\8\10\4\0\1\65\196\89\0\129\4\90\0\34\68\0\1\20\4\0\8\65\68\90\0\12\68\4\8\65\196\81\0\84\4\128\8\129\132\90\0\77\68\4\9\201\67\4\8\1\4\3\0\20\4\0\8\65\196\90\0\13\4\132\8\65\4\91\0\201\67\4\8\1\68\91\0\100\4\17\0\201\67\4\8\10\4\0\0\20\4\0\8\65\132\91\0\12\68\4\8\65\196\91\0\201\67\4\8\10\4\128\0\65\4\92\0\34\68\128\0\20\4\0\8\65\68\92\0\12\68\4\8\65\132\92\0\201\67\4\8\1\196\92\0\65\4\93\0\201\67\4\8\1\68\93\0\65\132\93\0\201\67\4\8\37\4\0\0\157\3\0\0\158\3\0\0\30\0\128\0\119\1\0\0\4\9\0\0\0\117\119\99\54\53\85\114\83\0\3\0\0\0\188\202\146\200\65\4\7\0\0\0\90\66\73\112\50\104\0\4\186\0\0\0\76\117\114\97\112\104\58\32\80\114\111\98\97\98\108\121\32\99\111\110\115\105\100\101\114\101\100\32\116\104\101\32\119\111\114\115\116\32\111\117\116\32\111\102\32\116\104\101\32\116\104\114\101\101\44\32\76\117\114\97\112\104\32\105\115\32\97\110\111\116\104\101\114\32\76\117\97\32\79\98\102\117\115\99\97\116\111\114\46\32\73\116\32\105\115\110\116\32\114\101\109\111\116\101\108\121\32\97\115\32\115\101\99\117\114\101\32\97\115\32\73\114\111\110\98\114\101\119\32\111\114\32\83\121\110\97\112\115\101\32\88\101\110\44\32\97\110\100\32\105\116\32\105\115\110\39\116\32\97\115\32\102\97\115\116\32\97\115\32\73\114\111\110\98\114\101\119\32\101\105\116\104\101\114\46\0\3\0\0\0\0\0\65\180\64\3\0\0\0\186\100\3\190\65\3\0\0\0\0\0\128\77\64\3\0\0\0\0\0\240\115\64\3\0\0\0\0\0\16\134\64\3\0\0\0\0\0\0\99\64\3\0\0\0\238\102\117\177\65\3\0\0\0\248\133\11\188\65\4\33\0\0\0\39\112\115\117\32\62\32\108\117\114\97\112\104\39\32\45\32\109\101\109\99\111\114\114\117\112\116\32\50\48\50\48\0\3\0\0\0\38\252\117\170\65\4\7\0\0\0\72\99\116\49\109\122\0\3\0\0\0\61\4\203\185\65\3\0\0\0\112\8\174\133\65\4\11\0\0\0\117\54\66\82\86\54\53\99\90\52\0\3\0\0\0\0\4\8\26\65\3\0\0\0\117\229\3\183\65\3\0\0\0\124\95\41\186\65\3\0\0\0\0\0\64\113\64\3\0\0\128\245\100\228\197\65\3\0\0\0\245\181\235\183\65\3\0\0\0\101\140\96\204\65\3\0\0\128\3\16\114\204\65\3\0\0\0\82\224\236\162\65\3\0\0\0\130\95\182\176\65\4\83\0\0\0\119\104\111\32\116\104\101\32\102\117\99\107\32\108\111\111\107\101\100\32\97\116\32\115\121\110\97\112\115\101\32\120\101\110\32\97\110\100\32\115\97\105\100\32\39\121\101\97\104\32\116\104\105\115\32\105\115\32\103\111\111\100\32\101\110\111\117\103\104\32\102\111\114\32\114\101\108\101\97\115\101\39\0\3\0\0\0\42\164\200\170\65\4\2\0\0\0\105\0\4\11\0\0\0\102\52\52\50\67\110\105\109\84\51\0\4\8\0\0\0\97\54\48\52\119\118\83\0\3\0\0\0\108\54\160\174\65\3\0\0\0\0\0\192\117\64\3\0\0\0\0\0\176\124\64\3\0\0\0\0\0\88\138\64\3\0\0\0\0\0\160\138\64\3\0\0\0\70\55\51\167\65\3\0\0\0\232\221\105\165\65\3\0\0\0\92\159\224\170\65\4\68\0\0\0\115\111\108\116\101\114\58\32\110\97\104\32\116\114\117\115\116\32\109\101\32\100\117\115\116\32\104\97\115\32\111\110\101\32\111\102\32\116\104\101\32\98\101\115\116\32\97\110\116\105\32\99\104\101\97\116\115\32\111\110\32\114\111\98\108\111\120\0\3\0\0\0\28\244\251\185\65\4\9\0\0\0\89\111\68\88\70\115\100\87\0\3\0\0\0\0\0\48\123\64\3\0\0\0\0\0\176\115\64\3\0\0\128\20\186\201\193\65\4\60\0\0\0\76\117\114\97\112\104\68\101\111\98\102\117\115\99\97\116\111\114\46\122\105\112\32\40\111\104\32\103\111\100\32\68\77\67\65\32\105\110\99\111\109\105\110\103\32\101\118\101\114\121\111\110\101\32\104\105\100\101\41\0\3\0\0\0\212\189\53\189\65\3\0\0\0\0\0\192\111\64\4\120\0\0\0\121\111\117\32\100\117\109\112\101\100\32\99\111\110\115\116\97\110\116\115\32\98\121\32\112\114\105\110\116\105\110\103\32\116\104\101\32\100\101\115\101\114\105\97\108\105\122\101\114\63\63\63\32\108\97\100\105\101\115\32\97\110\100\32\103\101\110\116\108\101\109\101\110\32\115\116\97\110\100\32\99\108\101\97\114\32\119\101\32\104\97\118\101\32\97\32\103\101\110\105\117\115\32\105\110\32\116\104\101\32\98\117\105\108\100\105\110\103\46\0\3\0\0\128\75\216\14\194\65\4\10\0\0\0\109\105\77\108\86\84\72\65\70\0\3\0\0\0\131\45\150\205\65\4\8\0\0\0\119\121\109\50\110\102\104\0\4\2\0\0\0\121\0\4\20\0\0\0\68\117\115\116\32\114\101\99\111\105\108\32\103\111\32\98\114\114\114\0\3\0\0\128\64\209\16\199\65\3\0\0\0\114\34\214\180\65\3\0\0\0\0\0\64\124\64\3\0\0\0\0\0\160\140\64\3\0\0\0\0\0\128\98\64\3\0\0\0\87\101\127\176\65\4\2\0\0\0\111\0\3\0\0\0\0\0\80\133\64\3\0\0\0\170\181\94\190\65\3\0\0\128\66\83\182\202\65\4\10\0\0\0\66\87\87\68\107\90\86\100\74\0\3\0\0\0\199\17\58\197\65\3\0\0\0\97\34\107\178\65\3\0\0\0\109\101\127\176\65\3\0\0\0\0\0\96\136\64\3\0\0\0\0\0\192\86\64\3\0\0\0\0\0\152\131\64\3\0\0\0\192\110\91\83\65\4\2\0\0\0\98\0\4\9\0\0\0\86\118\53\80\120\89\105\57\0\3\0\0\0\221\153\60\205\65\3\0\0\0\194\86\23\163\65\3\0\0\0\200\206\223\151\65\4\53\0\0\0\119\104\121\32\100\111\101\115\32\112\115\117\46\100\101\118\32\97\116\116\114\97\99\116\32\115\111\32\109\97\110\121\32\100\100\111\115\105\110\103\32\114\101\116\97\114\100\115\32\119\116\102\0\3\0\0\0\0\0\128\76\64\4\10\0\0\0\110\56\113\89\51\83\79\86\69\0\3\0\0\0\0\0\0\28\64\3\0\0\0\209\104\253\185\65\3\0\0\0\0\14\143\37\65\3\0\0\0\0\86\123\181\65\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\0\39\108\117\193\65\3\0\0\0\156\15\124\181\65\3\0\0\0\0\0\0\112\64\4\72\0\0\0\119\104\121\32\116\104\101\32\102\117\99\107\32\119\111\117\108\100\32\119\101\32\115\101\108\108\32\97\32\100\101\111\98\102\117\115\99\97\116\111\114\32\102\111\114\32\97\32\112\114\111\100\117\99\116\32\119\101\32\99\114\101\97\116\101\100\46\46\46\46\46\0\3\0\0\0\54\119\30\161\65\3\0\0\0\0\0\64\118\64\3\0\0\0\0\0\96\137\64\3\0\0\0\0\0\32\115\64\3\0\0\0\4\205\120\184\65\3\0\0\0\63\20\120\203\65\3\0\0\0\0\230\56\38\65\3\0\0\0\0\0\208\114\64\3\0\0\0\0\0\48\117\64\3\0\0\0\0\0\64\90\64\3\0\0\0\152\114\15\176\65\4\2\0\0\0\99\0\3\0\0\0\191\95\41\186\65\4\2\0\0\0\109\0\3\0\0\128\16\24\151\192\65\3\0\0\128\74\84\34\200\65\3\0\0\0\0\0\224\126\64\3\0\0\0\0\0\32\114\64\3\0\0\128\22\186\201\193\65\4\2\0\0\0\50\0\3\0\0\0\0\0\160\133\64\3\0\0\0\0\0\224\130\64\3\0\0\0\0\0\224\108\64\3\0\0\0\32\111\244\159\65\3\0\0\0\16\72\136\177\65\3\0\0\0\6\90\125\192\65\3\0\0\0\0\0\168\135\64\3\0\0\0\0\0\160\111\64\3\0\0\0\0\0\224\134\64\3\0\0\0\0\0\160\103\64\3\0\0\0\80\75\74\204\65\3\0\0\0\0\0\144\116\64\3\0\0\0\0\0\184\142\64\3\0\0\0\0\0\80\116\64\3\0\0\0\0\0\56\134\64\3\0\0\0\0\0\236\159\64\4\94\0\0\0\76\117\114\97\112\104\32\118\49\50\46\54\32\104\97\115\32\98\101\101\110\32\114\101\108\101\97\115\101\100\33\58\32\99\104\97\110\103\101\100\32\97\98\115\111\108\117\116\101\108\121\32\102\117\99\107\105\110\103\32\110\111\116\104\105\110\103\32\98\117\116\32\100\111\110\97\116\101\32\116\111\32\109\121\32\112\97\116\114\101\111\110\33\0\3\0\0\128\240\184\176\202\65\3\0\0\0\12\35\188\180\65\3\0\0\0\99\223\130\187\65\3\0\0\0\0\0\240\131\64\3\0\0\0\0\0\128\117\64\3\0\0\0\0\0\248\131\64\3\0\0\0\128\163\200\170\65\4\9\0\0\0\79\106\98\109\67\103\56\120\0\4\2\0\0\0\119\0\3\0\0\0\162\197\143\203\65\3\0\0\128\141\89\149\195\65\3\0\0\0\96\224\255\192\65\3\0\0\0\0\0\0\111\64\3\0\0\0\70\103\117\177\65\4\2\0\0\0\107\0\4\10\0\0\0\120\74\86\70\88\105\82\120\51\0\3\0\0\0\73\56\255\199\65\3\0\0\0\184\61\161\163\65\3\0\0\0\155\114\15\176\65\4\41\0\0\0\115\116\105\108\108\32\119\97\105\116\105\110\103\32\102\111\114\32\108\117\99\105\32\116\111\32\102\105\120\32\116\104\101\32\65\80\73\32\58\124\0\3\0\0\0\28\114\85\145\65\3\0\0\0\201\188\67\196\65\3\0\0\128\130\60\63\198\65\3\0\0\0\89\164\166\190\65\4\9\0\0\0\100\109\102\54\119\51\52\48\0\4\2\0\0\0\116\0\3\0\0\0\0\0\136\137\64\3\0\0\0\0\0\0\72\64\3\0\0\128\141\255\195\195\65\4\9\0\0\0\121\70\122\98\72\117\69\100\0\3\0\0\0\0\0\0\8\64\3\0\0\0\0\0\192\132\64\3\0\0\0\0\0\128\114\64\3\0\0\0\0\0\0\102\64\3\0\0\0\102\177\175\181\65\3\0\0\128\220\251\179\195\65\3\0\0\0\250\164\244\181\65\3\0\0\0\0\0\224\102\64\3\0\0\0\0\0\144\130\64\3\0\0\0\184\189\241\181\65\3\0\0\0\245\185\84\205\65\3\0\0\0\63\177\31\184\65\3\0\0\0\0\0\192\93\64\3\0\0\0\113\183\216\190\65\3\0\0\0\57\218\185\196\65\3\0\0\0\229\182\245\198\65\3\0\0\0\0\0\0\64\64\3\0\0\0\201\225\57\197\65\3\0\0\0\0\0\160\135\64\3\0\0\0\0\0\0\97\64\3\0\0\0\0\0\32\136\64\3\0\0\0\0\48\6\41\65\4\11\0\0\0\70\103\52\114\120\89\77\67\56\107\0\3\0\0\0\0\0\40\130\64\3\0\0\0\0\0\32\120\64\3\0\0\0\0\112\91\83\65\4\11\0\0\0\105\89\56\84\110\117\56\67\54\121\0\4\7\0\0\0\69\50\79\87\97\99\0\3\0\0\0\134\127\136\191\65\3\0\0\0\0\0\0\63\64\3\0\0\0\0\0\80\137\64\3\0\0\0\0\0\168\129\64\3\0\0\0\0\0\64\119\64\3\0\0\0\120\214\15\163\65\3\0\0\0\240\93\237\127\65\3\0\0\0\52\92\4\202\65\3\0\0\0\0\184\178\22\65\4\7\0\0\0\104\54\48\52\73\72\0\3\0\0\0\0\0\232\135\64\3\0\0\0\0\0\112\119\64\3\0\0\0\0\0\40\134\64\3\0\0\0\0\0\112\115\64\3\0\0\0\0\0\160\125\64\3\0\0\0\160\216\106\142\65\3\0\0\0\0\0\192\100\64\3\0\0\0\70\183\250\198\65\3\0\0\0\179\123\200\178\65\3\0\0\0\230\251\117\170\65\4\2\0\0\0\117\0\3\0\0\0\129\164\166\190\65\4\2\0\0\0\51\0\3\0\0\128\171\178\102\201\65\3\0\0\0\16\91\32\113\65\3\0\0\0\0\0\8\139\64\3\0\0\0\0\0\96\109\64\3\0\0\0\0\0\0\46\64\3\0\0\0\180\10\65\205\65\3\0\0\0\228\13\154\169\65\3\0\0\0\236\14\159\158\65\3\0\0\0\0\0\8\145\64\4\11\0\0\0\77\56\49\67\69\69\66\120\74\66\0\4\2\0\0\0\101\0\4\11\0\0\0\110\71\84\106\100\101\110\73\105\111\0\3\0\0\0\0\0\0\24\64\3\0\0\128\192\246\151\192\65\3\0\0\0\0\0\0\53\64\4\11\0\0\0\71\83\113\106\55\73\88\110\84\114\0\4\2\0\0\0\102\0\3\0\0\128\167\159\240\193\65\3\0\0\128\64\112\252\192\65\3\0\0\0\0\0\192\128\64\3\0\0\0\0\0\16\123\64\3\0\0\0\0\0\184\137\64\3\0\0\0\0\0\64\100\64\4\6\0\0\0\105\79\121\49\122\0\3\0\0\0\174\123\223\204\65\3\0\0\0\68\118\179\165\65\4\7\0\0\0\80\52\54\53\116\80\0\3\0\0\0\0\0\0\240\63\3\0\0\128\237\197\153\203\65\3\0\0\0\26\128\48\170\65\3\0\0\0\0\0\0\0\64\4\123\0\0\0\111\104\32\77\114\46\32\80\111\111\108\115\44\32\116\104\97\116\115\32\97\32\108\105\116\116\108\101\32\99\108\111\115\101\32\112\108\101\97\115\101\32\100\111\110\116\32\116\111\117\99\104\32\109\101\32\116\104\101\114\101\46\46\46\32\112\108\101\97\115\101\32\77\114\46\32\80\111\111\108\115\32\73\32\97\109\32\111\110\108\121\32\101\105\103\104\116\32\121\101\97\114\115\32\111\108\100\32\112\108\101\97\115\101\32\115\116\111\112\46\46\46\0\3\0\0\0\166\39\17\175\65\3\0\0\0\0\0\232\131\64\3\0\0\0\0\0\224\138\64\3\0\0\0\0\0\64\126\64\3\0\0\0\0\0\32\132\64\3\0\0\0\75\222\218\202\65\3\0\0\128\59\230\37\205\65\4\6\0\0\0\99\118\87\115\89\0\3\0\0\0\84\100\36\154\65\4\62\0\0\0\103\117\121\115\32\115\111\109\101\111\110\101\32\112\108\97\121\32\65\109\111\110\103\32\85\115\32\119\105\116\104\32\109\101\109\99\111\114\114\117\112\116\32\104\101\32\105\115\32\115\111\32\108\111\110\101\108\121\32\58\40\0\3\0\0\0\8\181\202\146\65\3\0\0\0\0\0\0\240\64\3\0\0\0\0\0\0\129\64\3\0\0\0\0\0\144\124\64\3\0\0\0\0\0\0\130\64\3\0\0\0\160\205\206\131\65\4\8\0\0\0\116\48\115\106\97\86\90\0\3\0\0\0\32\141\169\99\65\4\6\0\0\0\76\113\83\117\56\0\3\0\0\0\0\0\0\66\64\3\0\0\0\73\151\102\204\65\3\0\0\0\0\0\72\142\64\3\0\0\0\0\0\160\117\64\3\0\0\0\235\39\130\178\65\3\0\0\128\111\128\150\204\65\3\0\0\0\0\0\160\105\64\3\0\0\0\18\25\253\166\65\3\0\0\0\171\223\10\181\65\4\41\0\0\0\105\114\111\110\98\114\101\119\32\100\101\111\98\102\117\115\99\97\116\111\114\32\103\111\32\98\114\114\114\114\114\114\114\114\114\114\114\114\114\114\0\3\0\0\0\63\186\191\201\65\3\0\0\0\0\0\128\86\64\4\9\0\0\0\120\106\88\53\82\80\82\70\0\4\11\0\0\0\115\73\79\66\72\57\77\86\70\86\0\4\2\0\0\0\100\0\3\0\0\0\67\203\244\188\65\4\2\0\0\0\114\0\3\0\0\128\27\14\4\205\65\3\0\0\0\33\20\52\191\65\4\61\0\0\0\112\115\117\32\112\114\101\109\105\117\109\32\99\104\97\100\115\32\119\105\110\110\105\110\103\32\40\111\110\108\121\32\108\111\115\101\114\115\32\117\115\101\32\116\104\101\32\102\114\101\101\32\118\101\114\115\105\111\110\41\0\3\0\0\0\219\4\151\188\65\3\0\0\0\0\0\128\73\64\3\0\0\0\6\205\120\184\65\4\2\0\0\0\104\0\3\0\0\0\72\87\23\163\65\4\2\0\0\0\35\0\3\0\0\0\152\255\86\190\65\4\96\0\0\0\117\104\32\111\104\32\101\118\101\114\121\111\110\101\32\119\97\116\99\104\32\111\117\116\32\112\97\105\110\32\101\120\105\115\116\32\99\111\109\105\110\103\32\105\110\32\119\105\116\104\32\116\104\101\32\98\97\99\107\115\112\97\99\101\32\109\101\116\104\111\100\32\111\110\101\32\100\111\116\32\116\119\111\32\100\111\116\32\109\97\110\32\100\111\116\0\3\0\0\0\169\243\218\200\65\3\0\0\0\0\0\128\128\64\3\0\0\0\0\0\216\137\64\3\0\0\0\173\205\184\204\65\3\0\0\128\37\233\209\192\65\3\0\0\0\65\244\47\204\65\3\0\0\0\0\0\176\120\64\3\0\0\0\0\0\192\126\64\3\0\0\0\0\0\160\109\64\3\0\0\0\0\0\120\130\64\3\0\0\0\68\89\106\190\65\3\0\0\0\203\102\6\204\65\3\0\0\0\184\106\165\155\65\4\2\0\0\0\103\0\3\0\0\128\65\65\190\205\65\3\0\0\0\0\0\104\138\64\3\0\0\0\0\0\192\137\64\3\0\0\0\0\0\0\103\64\3\0\0\0\92\4\152\176\65\4\11\0\0\0\105\67\105\77\119\79\69\48\79\51\0\3\0\0\0\0\0\0\0\0\4\8\0\0\0\117\105\107\48\102\82\104\0\3\0\0\0\0\0\56\131\64\3\0\0\0\0\0\80\123\64\4\80\0\0\0\65\114\101\32\121\111\117\32\117\115\105\110\103\32\65\122\116\117\112\66\114\101\119\44\32\99\108\118\98\114\101\119\44\32\111\114\32\73\66\50\63\32\67\111\110\103\114\97\116\117\108\97\116\105\111\110\115\33\32\89\111\117\39\114\101\32\100\101\111\98\102\117\115\99\97\116\101\100\33\0\3\0\0\128\146\112\158\196\65\3\0\0\0\0\0\192\92\64\3\0\0\0\0\0\224\139\64\3\0\0\0\149\212\128\200\65\3\0\0\0\233\141\77\195\65\3\0\0\128\208\188\67\196\65\4\2\0\0\0\110\0\3\0\0\0\0\0\160\141\64\3\0\0\0\0\0\56\130\64\3\0\0\0\233\1\94\196\65\3\0\0\0\42\162\199\204\65\3\0\0\0\37\74\139\182\65\3\0\0\128\194\247\122\202\65\4\28\0\0\0\108\105\116\103\97\110\103\32\111\110\32\116\111\112\32\58\115\117\110\103\108\97\115\115\101\115\58\0\3\0\0\0\218\150\25\169\65\3\0\0\0\211\154\79\191\65\3\0\0\0\0\0\136\134\64\3\0\0\0\0\0\224\110\64\3\0\0\0\210\251\179\195\65\4\2\0\0\0\120\0\3\0\0\0\24\50\177\150\65\3\0\0\128\239\220\101\205\65\4\11\0\0\0\67\73\121\120\99\65\85\85\112\82\0\3\0\0\0\215\195\146\197\65\3\0\0\128\132\81\238\202\65\3\0\0\0\152\213\66\161\65\3\0\0\128\173\51\106\205\65\3\0\0\0\112\149\249\130\65\3\0\0\0\0\0\0\70\64\3\0\0\0\121\4\116\203\65\4\9\0\0\0\82\76\81\120\104\86\86\116\0\3\0\0\0\0\92\251\37\65\3\0\0\0\0\0\64\112\64\3\0\0\0\0\0\200\130\64\3\0\0\0\0\0\216\131\64\3\0\0\0\80\159\224\170\65\4\2\0\0\0\97\0\3\0\0\0\16\229\167\117\65\4\10\0\0\0\77\121\85\57\111\48\85\56\122\0\4\2\0\0\0\108\0\4\11\0\0\0\66\74\86\72\82\116\67\110\76\117\0\4\9\0\0\0\109\79\115\87\80\90\69\102\0\3\0\0\0\75\74\241\190\65\3\0\0\0\76\135\22\179\65\3\0\0\0\57\103\216\199\65\3\0\0\0\0\0\192\101\64\3\0\0\0\0\0\0\55\64\3\0\0\0\149\212\14\179\65\3\0\0\0\185\17\183\183\65\3\0\0\0\64\237\90\175\65\3\0\0\0\0\0\0\112\65\4\11\0\0\0\89\103\74\84\81\117\89\89\65\98\0\3\0\0\0\76\118\179\165\65\4\2\0\0\0\115\0\3\0\0\0\0\0\224\115\64\3\0\0\128\123\110\16\192\65\3\0\0\0\136\124\179\168\65\3\0\0\0\64\253\156\177\65\3\0\0\0\0\0\0\74\64\4\7\0\0\0\81\87\67\48\118\73\0\3\0\0\0\0\220\214\35\65\69\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\1\2\3\5\0\0\0\64\0\0\0\165\0\0\0\93\0\0\0\94\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\89\64\0\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\145\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\89\0\128\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\141\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\144\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\142\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\23\64\0\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\4\5\0\0\0\128\0\0\0\192\0\128\0\149\192\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\4\0\0\0\2\0\0\0\110\0\0\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\143\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\88\64\0\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\88\0\128\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\3\0\0\0\140\64\0\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\2\0\3\6\0\0\0\87\64\0\0\22\0\0\128\130\64\0\0\130\0\128\0\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\0\0\0\0\5\0\0\0\2\0\0\0\101\0\0\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\8\1\2\90\39\2\0\0\65\0\0\0\134\64\64\0\198\128\64\0\1\193\0\0\20\1\0\2\13\1\1\130\6\1\1\0\74\1\0\1\129\65\1\0\193\129\1\0\98\65\0\1\84\1\128\2\76\193\193\2\70\65\1\0\138\1\128\0\193\1\2\0\36\2\0\0\28\2\128\0\162\65\0\0\148\1\0\3\140\65\66\3\134\129\1\0\198\129\66\0\6\194\66\0\65\2\3\0\84\2\128\4\77\66\130\134\70\66\2\0\138\2\0\0\148\2\0\5\140\130\67\5\134\130\2\0\198\194\67\0\6\3\68\0\70\67\68\0\134\131\68\0\202\3\128\1\1\196\4\0\65\4\5\0\129\68\5\0\228\68\0\0\220\4\128\0\226\67\0\0\212\3\128\7\204\131\197\7\198\195\3\0\1\196\0\0\20\4\0\8\13\4\132\139\6\4\4\0\70\4\70\0\129\68\6\0\148\4\0\9\141\132\4\141\134\132\4\0\198\196\70\0\1\5\7\0\20\5\0\10\13\5\133\142\6\5\5\0\70\133\71\0\134\197\71\0\198\5\72\0\6\70\72\0\70\134\72\0\134\198\72\0\193\6\9\0\212\6\128\13\205\198\134\146\198\198\6\0\6\135\73\0\70\199\73\0\134\7\74\0\234\71\10\0\218\71\0\0\22\0\0\128\228\135\0\0\10\8\0\0\65\136\10\0\128\8\128\15\192\8\128\5\156\136\0\1\193\136\10\0\6\201\1\0\65\201\10\0\134\9\3\0\198\137\2\0\1\10\11\0\213\8\138\17\198\200\8\17\218\72\0\0\214\1\0\128\193\72\11\0\6\137\4\0\65\137\11\0\213\72\137\17\198\200\8\17\218\72\0\0\22\0\0\128\202\8\0\0\218\8\0\0\214\1\0\128\1\73\11\0\70\137\1\0\134\201\5\0\193\201\11\0\21\201\9\18\6\9\137\17\26\73\0\0\214\0\0\128\36\201\0\0\0\0\128\5\0\0\128\6\0\0\128\12\81\73\133\12\141\201\130\18\195\9\128\20\129\138\10\0\198\10\2\0\1\11\12\0\70\11\4\0\134\75\2\0\149\138\11\21\134\138\138\16\193\74\12\0\6\139\5\0\65\75\11\0\213\74\139\21\198\202\138\16\1\139\10\0\70\203\1\0\129\139\12\0\198\11\3\0\1\204\12\0\21\11\12\22\6\11\139\16\65\139\10\0\134\203\0\0\193\75\12\0\6\140\5\0\65\76\11\0\85\75\140\22\70\75\139\16\129\139\10\0\198\139\5\0\6\76\4\0\65\12\13\0\134\12\2\0\193\76\13\0\149\203\12\23\134\139\11\17\154\75\0\0\150\3\0\128\129\139\10\0\198\11\3\0\1\140\13\0\70\204\1\0\134\204\77\0\198\12\78\0\149\203\12\23\134\139\11\17\193\139\10\0\6\140\5\0\70\76\4\0\129\76\14\0\198\140\0\0\213\203\140\23\134\203\11\23\193\203\11\0\6\12\4\0\70\140\78\0\134\204\4\0\193\204\12\0\6\13\3\0\213\11\141\23\198\203\11\17\1\204\14\0\70\12\4\0\129\140\11\0\198\12\1\0\21\204\12\24\6\12\12\17\65\12\15\0\134\12\78\0\193\76\15\0\85\204\140\24\6\76\12\24\26\76\0\0\86\0\0\128\36\12\1\0\0\0\128\12\65\140\15\0\134\12\2\0\193\140\11\0\85\204\140\24\70\76\12\17\134\204\79\17\193\12\16\0\6\13\4\0\65\141\11\0\134\13\4\0\193\77\11\0\6\206\77\0\70\14\78\0\213\76\142\25\198\204\12\17\1\141\11\0\70\77\80\0\129\141\16\0\198\13\78\0\21\205\13\26\6\13\13\17\65\141\10\0\134\13\3\0\193\205\16\0\6\78\4\0\70\142\5\0\134\206\3\0\193\14\17\0\6\79\2\0\85\13\143\26\70\77\13\17\129\77\17\0\198\13\3\0\6\14\1\0\149\13\14\27\134\141\13\17\193\141\10\0\6\142\81\0\70\206\77\0\134\206\5\0\193\206\16\0\6\79\2\0\213\13\143\27\134\205\13\27\193\77\11\0\6\78\4\0\70\206\5\0\129\142\11\0\213\141\142\27\198\205\141\17\218\77\0\0\86\0\0\128\228\77\1\0\0\0\0\19\6\206\209\17\26\78\0\0\150\0\0\128\36\142\1\0\0\0\0\19\0\0\128\20\65\14\18\0\134\14\1\0\193\78\18\0\6\15\3\0\85\14\143\28\70\78\142\17\219\73\128\28\22\1\0\128\228\201\1\0\0\0\128\6\0\0\0\20\0\0\128\12\0\0\128\10\65\142\18\0\134\206\82\0\85\142\142\28\70\78\142\17\91\74\128\28\150\0\0\128\100\10\2\0\0\0\0\18\0\0\128\12\65\142\10\0\134\78\2\0\198\206\4\0\6\15\1\0\65\15\19\0\85\78\143\28\70\78\142\17\27\74\128\28\86\1\0\128\36\74\2\0\0\0\128\6\0\0\128\19\0\0\0\27\0\0\128\12\0\0\128\10\65\142\10\0\134\206\1\0\198\142\4\0\1\143\11\0\70\143\2\0\129\15\11\0\85\142\143\28\70\78\14\17\90\78\0\0\22\8\0\128\70\78\83\17\90\78\0\0\86\7\0\128\65\142\10\0\134\206\1\0\198\14\4\0\1\143\19\0\85\14\143\28\201\72\138\28\65\142\10\0\134\206\1\0\198\142\1\0\1\207\19\0\85\14\143\28\201\8\137\28\65\78\11\0\134\206\5\0\193\206\11\0\85\206\142\28\201\8\142\28\65\14\20\0\134\206\5\0\198\14\3\0\85\206\142\28\201\200\141\28\201\200\137\168\65\142\20\0\134\14\1\0\198\142\4\0\6\143\81\0\65\143\11\0\85\78\143\28\201\8\138\28\65\142\10\0\134\14\3\0\193\206\20\0\85\206\142\28\70\78\14\17\129\14\21\0\198\14\78\0\1\79\21\0\70\15\78\0\149\78\15\29\70\142\142\28\90\78\0\0\150\0\0\128\100\142\2\0\0\0\0\23\0\0\128\6\129\142\11\0\198\14\4\0\6\207\1\0\65\143\21\0\149\78\15\29\134\142\14\17\193\206\21\0\6\15\3\0\213\14\143\29\134\206\14\29\193\142\10\0\6\15\3\0\65\15\22\0\134\207\77\0\198\15\78\0\213\206\143\29\198\206\14\17\1\143\10\0\70\143\4\0\134\79\4\0\198\207\4\0\1\208\12\0\70\80\2\0\134\16\3\0\21\143\16\30\198\14\143\29\1\143\11\0\70\15\4\0\134\207\1\0\193\143\21\0\21\207\15\30\6\15\15\17\65\79\22\0\134\207\3\0\198\207\5\0\1\144\22\0\70\16\78\0\85\79\144\30\6\79\15\30\65\143\10\0\134\207\1\0\193\207\22\0\6\144\2\0\70\16\6\0\85\79\144\30\137\200\136\30\64\15\128\13\148\15\128\0\140\15\5\31\202\15\0\0\10\16\0\0\64\16\128\6\141\208\2\31\193\16\23\0\96\80\1\128\64\17\0\21\128\17\0\34\92\145\0\1\201\79\17\34\9\80\17\34\9\16\145\34\95\16\254\127\100\208\2\0\0\0\0\22\0\0\128\5\0\0\128\14\0\0\0\15\0\0\128\30\0\0\0\14\0\0\0\31\0\0\128\6\0\0\128\21\0\0\128\2\0\0\128\26\0\0\0\13\0\0\0\32\0\0\128\31\0\0\0\29\129\80\23\0\92\144\0\1\148\16\128\0\141\144\3\33\228\16\3\0\0\0\0\18\36\81\3\0\0\0\0\18\70\81\68\0\138\17\128\1\193\145\23\0\1\210\23\0\65\18\24\0\164\146\3\0\156\18\128\0\162\81\0\0\148\17\0\35\140\81\88\35\134\145\17\0\202\17\0\2\1\146\24\0\65\210\24\0\129\18\25\0\193\82\25\0\226\81\0\2\212\17\128\35\204\145\217\35\198\209\17\0\6\210\67\0\74\18\128\0\129\210\25\0\228\210\3\0\1\19\26\0\65\83\26\0\129\147\26\0\193\211\26\0\220\18\128\2\98\82\0\0\84\18\128\36\76\18\219\36\70\82\18\0\134\210\73\0\198\82\91\0\6\147\91\0\70\211\91\0\164\19\4\0\0\0\128\36\0\0\0\36\0\0\128\34\228\83\4\0\0\0\0\18\0\0\0\22\0\0\128\32\0\0\0\33\0\0\128\30\0\0\128\37\0\0\0\36\36\148\4\0\0\0\0\22\0\0\128\32\0\0\0\33\0\0\0\37\0\0\0\18\0\0\128\30\0\0\128\37\0\0\128\38\0\0\0\35\0\0\0\38\100\212\4\0\0\0\0\22\0\0\128\32\0\0\0\33\0\0\128\36\0\0\0\18\0\0\128\30\0\0\128\37\129\148\10\0\198\212\17\0\149\212\20\41\228\20\5\0\0\0\128\24\0\0\0\41\36\85\5\0\0\0\0\0\4\0\0\0\0\0\0\40\0\0\128\30\0\0\128\39\4\0\128\0\0\0\0\39\4\0\0\1\4\0\128\1\0\0\0\24\4\0\0\2\4\0\128\2\0\0\128\21\0\0\128\32\0\0\0\33\0\0\0\18\0\0\0\22\4\0\0\3\0\0\0\32\4\0\128\3\0\0\0\25\0\0\128\40\100\149\5\0\0\0\128\24\0\0\0\41\0\0\128\33\0\0\0\18\0\0\0\16\0\0\0\0\0\0\128\28\0\0\0\23\0\0\128\42\128\21\128\42\192\21\0\42\220\149\128\0\10\22\0\0\64\22\128\15\92\22\128\0\156\149\0\0\229\21\0\0\157\21\0\0\158\21\0\0\30\0\128\0\112\0\0\0\4\92\0\0\0\84\104\105\115\32\102\105\108\101\32\119\97\115\32\111\98\102\117\115\99\97\116\101\100\32\117\115\105\110\103\32\80\83\85\32\79\98\102\117\115\99\97\116\111\114\32\52\46\48\46\65\32\124\32\104\116\116\112\115\58\47\47\119\119\119\46\112\115\117\46\100\101\118\47\32\38\32\100\105\115\99\111\114\100\46\103\103\47\112\115\117\0\3\0\0\0\186\100\3\190\65\4\8\0\0\0\116\48\115\106\97\86\90\0\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\0\198\118\30\161\65\3\0\0\0\0\0\128\66\64\3\0\0\0\0\0\160\111\64\3\0\0\0\192\206\223\151\65\3\0\0\0\0\0\0\100\64\3\0\0\0\104\177\175\181\65\4\11\0\0\0\70\103\52\114\120\89\77\67\56\107\0\3\0\0\0\184\61\161\163\65\4\68\0\0\0\64\101\118\101\114\121\111\110\101\32\100\101\115\105\103\110\115\32\97\114\101\32\100\111\110\101\46\32\108\117\114\97\112\104\32\119\101\98\115\105\116\101\32\99\111\109\105\110\103\46\46\46\46\32\101\116\97\32\74\85\76\89\32\50\48\50\48\0\3\0\0\128\158\81\238\202\65\3\0\0\128\130\60\63\198\65\4\7\0\0\0\80\52\54\53\116\80\0\4\10\0\0\0\120\74\86\70\88\105\82\120\51\0\4\11\0\0\0\105\67\105\77\119\79\69\48\79\51\0\3\0\0\0\16\229\167\117\65\3\0\0\0\0\0\160\121\64\3\0\0\0\0\0\88\133\64\3\0\0\0\0\0\192\114\64\3\0\0\0\111\229\3\183\65\3\0\0\0\6\222\105\165\65\3\0\0\0\124\113\85\145\65\4\68\0\0\0\105\32\97\109\32\110\111\116\32\119\97\108\108\121\32\115\116\111\112\32\97\115\107\105\110\103\32\109\101\32\102\111\114\32\119\97\108\108\121\32\104\117\98\32\115\117\112\112\111\114\116\32\112\108\101\97\115\101\32\102\117\99\107\32\111\102\102\0\3\0\0\0\166\223\130\187\65\3\0\0\0\174\123\223\204\65\4\83\0\0\0\119\104\111\32\116\104\101\32\102\117\99\107\32\108\111\111\107\101\100\32\97\116\32\115\121\110\97\112\115\101\32\120\101\110\32\97\110\100\32\115\97\105\100\32\39\121\101\97\104\32\116\104\105\115\32\105\115\32\103\111\111\100\32\101\110\111\117\103\104\32\102\111\114\32\114\101\108\101\97\115\101\39\0\3\0\0\128\105\112\252\192\65\3\0\0\0\229\182\245\198\65\3\0\0\0\250\133\11\188\65\3\0\0\0\97\34\107\178\65\4\9\0\0\0\89\111\68\88\70\115\100\87\0\3\0\0\0\26\128\48\170\65\4\6\0\0\0\76\113\83\117\56\0\4\43\0\0\0\116\104\105\115\32\105\115\110\39\116\32\107\114\110\108\32\115\117\112\112\111\114\116\32\121\111\117\32\98\111\110\101\104\101\97\100\32\109\111\114\111\110\0\3\0\0\0\195\189\53\189\65\3\0\0\0\224\89\32\113\65\4\9\0\0\0\121\70\122\98\72\117\69\100\0\3\0\0\0\96\224\255\192\65\4\8\0\0\0\103\101\116\102\101\110\118\0\4\1\0\0\0\0\4\2\0\0\0\105\0\4\2\0\0\0\50\0\4\2\0\0\0\98\0\4\2\0\0\0\116\0\4\2\0\0\0\114\0\4\2\0\0\0\104\0\4\2\0\0\0\115\0\4\2\0\0\0\121\0\4\2\0\0\0\101\0\4\3\0\0\0\112\97\0\4\2\0\0\0\107\0\4\2\0\0\0\97\0\4\10\0\0\0\77\121\85\57\111\48\85\56\122\0\4\11\0\0\0\77\56\49\67\69\69\66\120\74\66\0\4\4\0\0\0\112\97\99\0\4\9\0\0\0\79\106\98\109\67\103\56\120\0\4\2\0\0\0\109\0\4\3\0\0\0\108\100\0\4\3\0\0\0\120\112\0\4\5\0\0\0\115\101\108\101\0\4\6\0\0\0\112\97\105\114\115\0\4\7\0\0\0\115\101\116\109\101\116\0\4\8\0\0\0\119\121\109\50\110\102\104\0\4\2\0\0\0\112\0\4\2\0\0\0\111\0\4\3\0\0\0\98\101\0\4\3\0\0\0\109\97\0\4\11\0\0\0\71\83\113\106\55\73\88\110\84\114\0\4\4\0\0\0\98\111\114\0\4\3\0\0\0\108\115\0\4\3\0\0\0\105\102\0\4\4\0\0\0\98\97\110\0\4\11\0\0\0\115\73\79\66\72\57\77\86\70\86\0\4\4\0\0\0\105\102\116\0\4\4\0\0\0\98\105\116\0\4\3\0\0\0\110\100\0\4\3\0\0\0\111\114\0\4\3\0\0\0\98\110\0\4\7\0\0\0\108\115\104\105\102\116\0\4\3\0\0\0\114\115\0\4\5\0\0\0\97\98\108\101\0\4\3\0\0\0\99\114\0\4\3\0\0\0\97\116\0\4\3\0\0\0\108\101\0\4\6\0\0\0\99\111\110\99\97\0\4\3\0\0\0\97\98\0\4\3\0\0\0\114\101\0\4\2\0\0\0\118\0\4\3\0\0\0\105\116\0\3\0\0\0\0\0\0\240\63\4\203\106\2\0\80\83\85\124\50\54\115\49\66\49\49\49\48\50\49\56\50\49\51\49\66\49\48\49\48\50\55\49\50\54\75\50\53\122\50\52\49\50\53\48\50\53\81\50\50\119\50\51\50\49\89\50\50\57\50\49\119\50\49\99\50\49\66\49\51\50\55\66\50\53\89\50\53\100\50\54\103\50\53\118\50\49\53\49\53\50\55\98\50\53\119\50\53\57\50\51\84\50\51\104\50\55\48\50\50\53\50\55\87\50\55\98\49\48\50\54\82\50\51\50\50\51\57\50\54\75\50\49\52\49\88\49\100\50\55\98\50\51\52\50\55\50\50\54\54\50\53\105\50\51\98\50\52\103\49\78\50\54\66\50\49\51\49\115\50\53\79\50\49\86\50\53\69\50\54\110\50\49\74\49\114\50\55\66\50\51\49\50\49\70\50\51\68\50\54\121\50\50\107\50\53\65\50\51\83\50\50\49\50\51\120\49\116\49\120\50\53\82\50\54\85\49\109\50\51\117\50\50\49\50\50\54\50\52\52\50\52\120\50\49\111\50\53\75\50\53\83\50\52\81\50\52\55\50\50\98\49\111\50\49\116\50\54\118\50\55\57\50\55\98\50\49\75\50\51\48\50\52\56\50\52\72\50\52\100\50\49\67\50\54\50\50\50\71\49\81\49\109\49\73\50\51\52\50\49\80\49\72\50\55\98\50\51\107\50\51\108\50\53\52\50\51\69\50\50\108\50\51\78\50\53\53\50\54\116\50\53\114\50\49\97\50\54\103\50\55\48\50\53\52\50\51\82\49\55\50\51\117\50\52\89\50\51\83\50\55\112\50\55\66\50\54\80\50\50\57\50\51\79\49\56\50\65\51\50\55\98\50\53\113\50\53\97\50\49\121\49\105\50\54\107\50\49\57\50\50\54\50\51\86\50\51\53\50\54\51\50\51\56\50\50\118\50\53\82\50\50\68\50\54\77\50\50\99\50\53\50\49\122\50\49\49\49\57\50\55\66\50\50\73\50\49\77\50\51\48\50\49\97\50\53\52\50\53\120\49\76\50\54\98\50\53\54\50\49\98\50\97\79\49\48\50\52\90\50\50\85\50\51\77\50\51\70\50\49\55\49\55\50\55\98\50\51\71\50\56\57\49\103\50\50\98\50\51\86\50\54\49\50\50\105\50\56\100\50\55\98\49\53\50\55\50\49\80\49\72\49\76\49\90\50\50\98\50\50\53\49\108\50\52\106\50\50\56\50\52\87\50\53\120\50\51\56\50\98\88\50\55\66\50\55\48\50\49\112\50\51\99\50\51\54\50\51\51\50\50\55\50\54\112\50\49\73\50\49\48\49\56\50\55\66\50\49\81\50\52\112\50\49\86\50\49\101\50\52\53\50\50\87\50\49\106\50\53\100\50\53\68\50\99\110\49\48\50\50\114\50\49\83\50\53\49\50\53\79\50\52\107\50\52\107\50\50\54\50\49\75\50\100\57\50\52\100\50\53\57\50\51\55\50\50\49\50\54\120\50\55\50\50\53\53\50\51\83\50\99\88\50\55\66\50\51\56\49\114\49\83\49\55\49\54\49\82\49\55\49\57\50\50\51\50\97\85\49\48\50\49\111\50\53\55\50\49\53\50\53\78\50\52\53\50\49\74\49\51\50\49\119\49\110\50\49\49\50\52\54\50\51\82\50\53\50\49\108\49\113\50\49\49\49\119\50\49\102\50\66\101\50\55\98\49\55\50\52\77\50\55\49\50\50\48\50\51\78\50\51\57\50\53\105\50\54\90\50\49\120\50\53\50\50\68\83\49\48\49\80\50\50\90\49\74\50\54\55\50\54\79\50\52\109\50\54\98\49\49\50\49\50\50\100\57\50\54\52\50\49\106\50\51\119\50\50\51\49\77\50\54\121\50\53\81\49\121\50\57\112\49\48\50\54\52\50\49\69\50\49\86\50\52\97\50\50\121\50\50\116\50\49\100\50\54\50\50\50\48\50\50\85\50\54\57\50\49\67\50\49\81\49\73\50\55\66\50\49\73\50\49\82\49\101\49\80\50\52\73\49\74\50\49\50\50\53\69\49\50\50\49\122\50\52\76\50\51\79\50\57\77\50\54\85\50\51\101\50\50\86\50\52\72\49\103\50\68\57\50\49\117\50\53\120\49\52\50\52\101\49\90\50\54\56\50\53\90\50\49\72\49\121\49\69\50\55\98\50\50\106\50\52\71\50\52\48\50\51\111\49\114\50\53\79\50\54\121\50\53\49\50\54\112\50\50\100\50\49\55\49\66\49\84\50\50\116\50\52\78\50\69\51\50\54\101\50\53\75\50\51\112\50\50\65\49\90\50\49\71\50\50\90\50\50\72\50\52\53\50\52\50\50\55\48\50\51\53\49\52\50\50\112\50\53\102\50\50\117\50\49\52\50\52\50\50\101\90\50\51\57\50\49\109\50\54\77\50\51\48\50\52\80\49\81\50\50\77\50\49\87\50\51\73\49\113\50\56\54\50\105\51\50\49\56\50\56\53\49\48\50\53\102\50\50\75\50\52\121\50\49\99\50\51\49\50\50\75\50\49\77\49\77\50\55\98\50\52\48\50\52\70\49\77\50\50\107\50\50\74\50\54\113\49\49\50\49\110\50\53\107\50\49\99\50\51\102\50\51\67\50\49\89\50\54\90\50\51\56\50\53\50\50\50\50\50\51\100\50\49\68\50\49\99\50\50\115\50\52\88\50\52\57\50\101\51\50\51\116\50\52\79\50\54\49\50\53\52\50\54\103\49\57\50\51\80\50\51\103\50\49\104\50\52\120\50\51\53\50\54\101\49\67\50\49\114\50\51\49\50\53\83\50\52\51\50\51\101\50\49\52\49\52\50\55\66\50\52\110\50\49\118\50\52\103\50\53\80\50\52\108\49\119\49\67\50\55\98\50\53\51\50\50\81\50\51\82\50\52\49\50\54\68\49\104\50\50\112\50\49\57\50\51\107\50\51\48\50\52\83\50\50\50\50\50\108\50\68\57\50\54\116\50\52\98\50\52\53\50\50\120\50\50\86\49\101\50\50\85\50\52\88\50\74\118\50\55\98\50\49\53\50\54\97\50\50\113\50\52\48\50\49\108\50\55\50\50\50\55\50\49\117\50\49\57\50\49\65\50\50\52\50\53\48\50\49\48\50\105\54\50\53\109\50\49\49\50\51\84\50\49\70\50\52\53\50\54\107\50\49\50\49\97\50\55\98\50\51\48\49\71\50\49\90\50\51\98\50\54\69\49\51\50\52\105\50\50\105\50\53\54\50\49\70\50\54\115\50\101\90\50\50\76\50\54\106\50\54\83\50\54\54\50\51\48\50\50\119\50\49\120\50\50\80\50\52\48\50\106\78\50\55\66\50\50\89\50\50\56\49\70\50\53\75\50\54\70\50\105\50\50\56\54\50\49\83\50\54\55\50\54\55\50\51\48\50\73\54\50\53\113\50\52\55\50\52\76\50\50\65\49\106\50\52\49\50\69\122\50\53\57\49\105\50\50\81\50\49\66\50\49\56\50\49\56\50\51\115\50\49\120\49\51\50\66\114\50\49\81\50\49\115\50\50\119\50\49\77\50\68\57\50\51\77\50\52\101\50\54\52\50\52\74\50\51\105\50\49\52\50\52\89\50\52\82\50\103\82\50\55\98\49\108\50\50\57\50\49\50\50\54\50\50\49\65\50\52\78\50\53\48\49\51\50\50\56\50\50\74\50\50\110\50\51\74\50\51\78\50\50\52\50\50\54\50\102\106\49\84\50\49\103\50\50\51\50\55\51\50\51\88\50\54\67\49\50\50\52\113\50\53\107\50\50\106\50\49\57\50\53\113\50\76\54\50\55\98\49\78\50\49\51\50\50\103\50\53\107\50\52\71\49\80\50\53\106\49\57\50\49\98\50\50\122\50\53\98\50\49\54\49\54\50\55\98\50\52\53\50\51\88\50\49\51\50\52\88\50\49\48\50\51\108\50\49\79\49\77\50\49\57\50\73\54\49\56\50\50\50\50\49\54\50\53\108\50\49\104\50\53\52\50\78\50\49\48\50\50\48\50\49\51\49\116\49\114\49\74\49\108\49\49\49\81\49\76\49\100\49\88\50\49\107\49\112\49\111\50\50\71\50\105\54\50\50\108\49\77\49\116\50\56\104\50\50\105\50\69\51\50\54\68\49\52\50\51\50\50\51\53\50\51\105\50\50\55\50\50\116\50\49\110\50\51\82\50\50\55\50\51\53\50\53\69\50\52\114\50\50\54\50\53\107\50\52\50\50\51\103\49\53\50\67\55\49\48\50\50\49\50\49\55\50\55\50\50\53\67\50\49\90\50\54\69\50\54\83\50\53\98\50\51\75\50\51\71\50\51\119\50\49\50\50\52\70\50\50\66\50\108\117\49\48\49\83\50\50\57\50\51\52\50\53\51\50\52\109\50\68\57\50\51\51\50\51\53\50\54\52\50\49\105\49\76\50\50\66\50\52\103\50\49\81\49\122\49\102\50\55\66\50\50\49\50\49\48\49\116\49\50\49\84\49\80\49\118\50\57\90\49\49\50\49\73\50\49\78\49\102\49\65\49\57\50\50\49\50\105\54\50\54\108\50\52\87\49\56\50\49\84\50\54\73\50\53\85\50\69\90\50\50\65\50\49\106\49\74\49\80\49\51\49\81\49\106\49\78\50\50\109\50\100\57\50\52\118\50\49\70\50\52\115\49\50\50\53\104\50\51\120\50\52\83\50\54\89\50\107\107\49\48\50\51\119\50\53\54\50\49\55\50\53\117\50\49\73\50\50\70\50\53\69\50\55\49\50\52\101\50\51\90\49\109\50\54\122\50\49\116\50\101\51\50\51\50\50\54\78\50\53\86\50\54\103\50\50\69\50\54\55\50\49\65\50\50\73\50\53\55\50\51\116\49\70\50\52\68\50\54\50\50\51\52\50\50\68\50\49\88\50\49\82\50\50\54\50\69\78\49\48\50\50\50\50\52\84\50\54\109\50\49\84\50\55\67\50\53\55\50\52\51\50\52\89\49\51\50\81\69\50\49\54\50\49\115\50\49\89\49\108\49\108\50\101\51\50\49\85\50\51\122\50\49\52\50\49\121\50\54\104\50\51\101\50\50\51\50\50\106\50\49\54\50\50\102\50\53\72\50\53\68\49\68\50\52\107\50\49\70\50\50\48\50\53\98\49\111\50\69\51\50\53\69\50\50\119\50\53\97\50\50\108\50\51\83\50\49\82\50\51\89\50\55\50\49\56\50\53\108\49\107\49\48\50\52\111\49\50\50\52\49\50\51\80\50\49\117\50\51\118\50\101\51\50\51\115\50\50\65\50\49\102\50\54\51\49\50\50\54\76\50\50\84\50\52\82\50\53\50\50\51\115\50\51\79\50\52\83\50\49\79\50\53\113\50\52\53\50\52\75\50\54\117\49\83\50\69\51\49\55\50\50\75\50\52\67\50\53\52\50\52\120\50\52\106\50\52\115\50\51\81\50\49\53\50\53\121\50\51\51\50\52\57\50\51\71\50\50\53\49\116\50\52\104\50\50\90\50\51\79\50\116\48\50\54\54\50\51\53\50\51\79\49\97\49\83\49\107\50\50\99\50\54\87\50\54\54\50\51\98\50\69\90\50\51\106\50\53\109\50\53\88\50\50\51\50\50\76\50\49\82\50\54\65\50\53\56\50\49\110\50\73\54\50\49\56\50\54\56\50\54\90\50\52\104\49\116\50\72\56\50\97\52\49\48\50\49\84\50\54\80\50\49\54\50\49\79\50\51\115\50\54\119\49\53\49\84\50\53\89\50\49\66\50\52\52\50\53\56\50\50\113\50\51\88\50\54\57\50\49\75\49\74\49\109\50\69\51\50\52\109\50\54\114\50\54\53\50\51\54\49\107\50\51\114\50\53\80\50\54\53\49\75\50\50\75\49\76\50\53\117\50\49\120\50\53\121\50\49\73\50\49\80\50\50\67\50\119\87\50\119\68\50\51\121\50\52\86\50\52\51\50\49\68\50\49\53\50\50\114\50\53\52\50\51\117\50\49\90\50\52\83\49\103\50\54\48\50\50\90\50\51\102\50\54\105\50\53\107\50\54\117\50\49\99\50\101\122\50\51\102\49\117\50\49\99\50\53\54\50\49\52\50\50\51\50\53\84\50\51\77\50\54\82\50\81\117\50\55\66\50\53\75\50\52\79\50\53\70\50\51\56\50\49\122\50\52\52\50\49\77\50\54\80\49\77\50\50\48\50\52\65\50\53\107\50\50\97\50\51\73\50\54\112\50\49\101\50\98\114\50\50\89\49\114\50\49\84\49\83\50\111\57\50\55\98\50\51\54\49\106\50\114\56\49\66\49\50\50\49\84\50\73\54\50\50\101\50\49\74\49\100\49\112\49\71\50\50\49\50\101\51\50\49\102\49\104\50\53\89\50\51\112\50\50\99\50\54\111\50\53\107\49\52\50\52\99\50\50\51\50\54\51\50\49\110\50\54\65\50\52\100\50\115\65\50\54\49\50\52\66\50\84\48\50\52\110\50\50\115\49\105\50\49\121\50\51\49\50\53\79\50\53\52\50\52\98\50\53\111\50\54\84\50\69\122\50\51\117\50\54\104\50\51\116\50\51\103\50\53\90\49\85\50\54\55\50\53\54\49\77\50\73\54\50\51\115\49\102\49\109\49\81\50\51\102\50\54\52\50\121\119\49\48\49\70\50\50\81\50\54\69\50\49\52\50\54\83\50\52\55\50\54\75\50\69\51\50\53\49\50\49\48\50\49\87\50\53\110\50\52\83\50\55\50\50\51\113\50\53\49\50\54\81\50\49\54\49\57\50\54\53\50\51\50\50\55\50\50\54\85\50\52\114\50\52\100\49\102\51\49\48\76\50\53\70\50\54\98\49\68\50\49\105\50\53\106\50\50\50\50\53\54\50\49\114\49\106\50\55\66\50\53\83\49\117\50\53\112\50\54\118\50\54\103\50\49\55\50\55\48\49\54\50\52\50\50\98\76\50\51\77\50\53\67\50\54\65\49\74\50\54\50\50\50\99\49\110\50\51\109\50\53\50\50\113\101\50\50\115\50\49\101\50\50\78\50\54\49\50\55\48\50\102\74\50\49\90\50\50\50\50\54\120\50\53\83\50\51\70\50\50\122\50\50\115\50\49\81\50\54\81\50\51\100\49\101\50\53\74\50\113\69\50\53\48\49\115\50\50\48\50\54\55\49\74\50\49\57\50\55\54\49\48\50\53\116\50\55\49\50\79\115\50\51\57\50\51\103\49\121\50\54\122\50\49\104\50\50\104\50\53\74\50\54\71\50\53\56\49\56\50\54\87\49\73\50\51\50\50\49\50\50\52\112\50\69\51\50\49\106\50\50\48\50\51\106\49\70\50\52\111\50\49\109\50\53\107\50\51\51\50\53\85\49\73\50\49\57\49\54\50\51\82\50\49\104\50\50\79\50\51\90\50\53\51\49\78\50\98\114\50\51\49\49\117\50\54\56\50\53\98\51\49\49\108\50\65\112\50\52\67\50\50\48\50\53\111\49\51\50\52\89\50\51\74\50\51\87\50\50\55\50\53\48\50\54\87\49\113\50\49\97\50\51\73\50\53\73\50\53\55\50\50\98\50\51\120\50\49\48\50\113\88\50\99\89\50\116\49\50\49\80\50\51\81\50\54\106\49\88\50\50\114\50\54\108\50\50\56\50\53\108\50\79\83\50\51\50\50\52\74\50\54\57\50\52\52\50\53\90\50\49\106\50\50\79\50\52\81\50\54\76\50\52\90\50\52\119\50\50\84\50\54\52\50\54\115\49\116\50\70\74\50\52\103\50\49\77\50\49\81\50\49\112\50\55\48\50\51\67\50\49\55\50\51\55\50\53\103\50\50\53\50\49\77\50\54\50\51\49\48\76\49\113\50\53\54\50\50\51\50\51\67\49\114\50\51\83\50\49\56\50\116\48\50\49\77\50\52\57\49\70\50\49\78\50\54\85\49\82\50\51\98\50\54\104\49\105\50\54\50\50\105\54\50\50\81\50\49\73\50\49\77\50\49\76\49\53\50\51\105\50\112\121\49\84\50\50\50\49\71\50\54\98\50\51\52\50\51\50\50\53\52\50\53\112\50\50\105\50\49\51\50\51\66\50\49\66\50\54\120\50\49\114\51\49\48\85\50\50\53\50\52\71\50\52\82\50\53\67\50\54\53\50\53\50\49\57\50\49\102\50\50\49\50\50\88\49\52\50\53\82\49\103\50\51\109\50\49\48\49\85\49\68\50\66\114\50\107\116\49\79\50\84\112\50\79\65\49\48\50\53\55\49\114\50\53\69\49\51\50\52\56\50\49\50\50\54\114\50\69\51\50\49\49\50\49\121\50\52\88\50\50\68\50\52\76\50\50\68\50\50\84\50\54\107\50\50\53\50\52\75\50\52\72\50\51\109\49\68\50\50\50\50\54\86\50\54\114\50\53\85\50\51\116\50\69\51\50\51\118\50\52\74\50\51\76\49\51\50\53\51\50\52\86\50\54\52\50\54\84\49\69\50\54\122\50\53\48\50\49\76\50\54\83\50\52\76\50\52\49\49\114\50\50\82\50\51\98\50\80\89\49\55\50\50\48\49\98\49\55\50\53\115\49\69\50\52\90\50\52\48\50\51\106\50\50\118\50\51\100\50\52\99\50\53\100\50\52\117\50\113\101\50\53\57\50\51\51\50\52\56\50\51\65\49\103\50\101\51\49\76\50\49\83\50\52\106\50\54\90\50\52\75\49\103\49\99\50\49\84\50\52\115\50\52\105\50\49\48\49\80\50\51\50\50\50\108\50\49\49\50\53\107\50\51\120\50\53\52\51\49\48\76\49\119\50\54\82\50\53\74\50\51\80\50\51\101\50\54\116\50\49\101\51\49\48\76\50\54\76\50\49\50\50\51\78\50\50\115\50\52\103\50\52\57\50\49\76\50\68\57\50\51\120\50\50\90\49\49\50\51\114\50\50\75\50\54\83\50\49\103\50\53\115\50\116\48\50\50\111\50\50\106\50\51\106\49\57\50\52\52\49\50\49\89\50\49\83\50\49\56\50\53\53\50\84\48\50\54\67\49\53\50\52\51\50\50\48\49\89\50\50\79\50\49\112\50\50\87\50\52\81\50\52\82\51\49\48\108\50\51\70\50\49\48\50\53\86\50\52\54\50\54\68\50\50\54\50\52\100\50\69\51\50\49\55\50\49\86\50\54\109\50\52\48\50\51\116\50\50\51\50\53\49\50\49\56\50\53\80\50\50\101\50\52\111\50\49\53\50\52\55\50\54\108\50\53\77\50\53\79\50\49\72\50\49\101\50\112\121\50\113\120\50\81\122\50\114\49\50\114\51\49\109\49\49\50\49\53\50\51\71\49\55\50\69\74\50\98\102\49\48\49\51\50\52\48\50\53\89\50\49\110\50\49\117\50\50\78\50\54\106\50\50\53\50\52\87\50\50\72\50\110\87\49\48\50\50\56\50\49\105\49\86\50\54\87\49\121\50\52\51\50\53\80\50\50\117\50\52\55\50\50\50\50\50\121\51\49\48\76\50\52\97\50\54\48\50\52\49\49\112\50\54\86\50\54\118\50\54\101\50\101\90\50\52\111\50\53\108\50\72\50\50\54\111\50\54\122\50\50\109\50\54\66\50\50\110\51\49\54\67\50\52\55\49\101\50\51\105\50\54\52\50\51\57\50\80\121\50\85\76\49\70\49\57\49\50\49\49\50\49\70\50\49\69\49\52\49\104\49\86\49\49\49\116\50\50\110\50\102\106\50\116\52\50\53\99\50\54\111\49\68\50\49\51\50\51\68\50\53\76\50\49\114\50\53\50\50\49\54\50\51\117\50\68\57\50\50\65\50\53\83\50\50\65\50\49\114\50\51\86\50\53\55\50\54\87\49\98\50\81\69\50\50\109\50\51\80\50\53\48\50\50\49\49\97\50\112\121\50\50\103\50\50\50\50\53\97\50\51\52\51\49\69\86\50\51\105\49\97\49\108\50\50\53\50\49\103\50\53\76\50\53\83\49\53\50\100\57\50\49\114\50\51\54\50\51\79\50\53\56\49\79\50\51\78\50\53\88\49\78\51\49\48\76\49\50\50\53\84\50\50\50\50\52\104\50\54\122\50\49\97\50\53\100\51\49\48\108\50\54\103\50\53\105\50\49\57\50\102\70\50\49\112\50\55\50\50\68\57\50\51\55\50\49\66\50\51\55\50\54\98\50\54\109\50\53\87\49\113\50\53\67\50\70\106\50\54\82\50\54\114\50\51\48\50\53\54\50\49\80\51\49\57\70\50\54\88\50\54\68\50\51\109\50\50\108\50\49\53\51\49\67\79\49\98\50\50\56\50\54\67\50\51\48\50\54\84\50\52\55\49\79\50\49\51\50\49\72\50\52\101\49\57\50\69\122\50\53\56\50\49\114\50\54\120\50\51\112\50\53\104\50\52\72\50\53\100\50\50\80\51\49\102\102\51\49\55\75\50\51\90\50\50\84\49\66\50\50\103\50\54\65\50\49\88\50\49\69\50\113\101\50\53\73\50\54\109\49\68\50\53\56\50\53\49\50\66\82\50\51\55\50\52\79\50\54\109\49\112\50\111\83\49\67\50\53\56\50\49\56\50\52\105\50\53\87\50\50\112\50\54\52\50\52\56\50\49\83\50\52\49\50\86\55\50\49\70\50\52\101\50\51\88\50\109\55\50\54\89\50\50\70\50\51\117\50\54\81\50\49\106\51\49\67\79\50\52\85\50\53\65\49\77\50\51\75\50\50\49\50\51\108\50\50\71\50\53\101\50\52\55\50\50\109\50\120\107\50\55\88\49\48\50\53\83\49\75\50\50\110\50\52\97\50\54\116\50\54\48\51\49\67\79\50\51\100\50\49\76\50\54\122\50\53\114\50\53\109\50\54\66\50\52\71\50\51\101\50\116\51\50\54\103\50\101\51\50\54\102\50\52\122\50\49\81\50\52\55\50\54\87\49\82\50\54\51\50\54\74\50\54\76\49\65\50\53\121\49\112\50\52\54\50\52\73\50\49\72\50\51\67\50\54\56\50\52\122\50\100\57\50\53\107\50\49\83\50\50\103\50\52\50\50\49\51\50\52\52\50\51\54\50\52\86\50\101\51\50\50\100\50\52\50\50\52\83\50\54\48\50\49\104\50\53\103\50\51\104\50\54\53\50\52\78\50\54\55\50\54\50\50\52\122\50\50\120\50\51\49\50\53\99\50\53\107\50\51\85\50\50\104\50\116\48\50\49\48\50\49\48\50\51\85\50\52\48\50\55\50\49\66\50\52\75\50\54\114\50\104\110\50\77\49\50\56\54\50\54\79\50\53\114\49\74\50\69\90\50\49\122\50\53\56\50\49\52\49\48\50\53\85\49\67\50\53\122\50\82\105\50\69\90\50\51\76\49\116\49\67\50\50\119\49\121\49\111\50\53\112\50\52\56\50\53\55\50\49\111\49\103\50\55\98\49\57\49\98\50\52\66\50\51\119\50\49\102\50\50\118\50\49\57\49\57\50\53\87\50\49\50\50\49\84\50\49\122\49\112\50\51\51\49\117\50\52\104\50\51\56\51\49\48\76\50\50\120\49\55\49\84\49\77\49\78\49\54\50\50\103\50\69\122\50\50\49\50\50\80\50\53\78\50\54\108\50\53\99\49\53\50\53\48\50\49\51\50\51\56\50\101\51\49\106\50\50\48\50\50\67\50\51\107\50\52\121\50\50\68\50\54\57\50\50\56\50\51\74\50\53\48\50\52\115\50\50\84\50\52\102\49\80\49\77\50\84\105\50\52\81\50\115\50\49\49\50\50\104\50\50\98\50\54\110\49\55\50\54\81\50\52\97\50\53\51\49\101\50\53\53\49\84\50\50\108\50\54\102\50\84\48\49\65\51\49\49\69\50\52\119\50\54\102\50\49\97\50\52\68\50\49\50\50\50\108\50\52\57\50\81\69\50\52\67\50\49\122\50\51\70\50\53\89\50\50\105\50\68\57\50\51\85\50\53\57\50\51\72\50\51\66\50\52\80\50\51\108\50\50\122\50\50\97\50\101\51\50\53\87\50\50\79\50\50\90\50\49\53\50\50\97\50\52\69\49\66\50\50\120\50\52\97\50\51\105\50\52\113\50\53\78\50\50\85\50\54\86\50\54\106\50\51\69\50\50\72\50\52\111\51\49\48\108\50\52\70\50\50\87\49\56\50\54\53\49\115\50\52\77\50\53\48\50\73\54\50\51\56\49\108\49\51\49\101\50\82\65\50\79\83\50\54\107\50\53\84\50\52\66\50\49\48\49\105\50\50\106\50\51\89\50\52\89\49\85\50\51\116\50\49\84\49\120\50\53\109\50\49\84\50\52\78\50\83\50\50\50\69\50\49\102\51\49\108\90\49\84\49\65\49\50\50\112\51\50\80\53\50\80\55\50\111\115\50\50\54\51\49\71\48\49\86\50\50\55\50\50\54\50\52\65\50\54\52\50\53\105\49\57\50\49\49\50\54\107\50\51\56\50\50\49\50\49\110\51\49\76\65\50\81\87\50\113\89\50\82\48\50\114\50\50\82\52\50\49\71\50\49\108\49\81\49\55\49\82\49\51\50\49\83\50\100\57\50\53\97\50\54\69\50\50\108\50\51\97\50\50\107\49\56\50\51\83\50\51\110\50\70\120\50\55\98\50\49\118\50\49\105\49\54\51\49\113\56\49\50\50\49\56\50\49\101\49\48\49\105\49\107\50\80\54\50\49\50\50\114\55\50\82\57\50\50\49\50\79\115\50\52\105\50\51\101\50\52\122\50\51\117\50\54\49\50\54\84\50\54\56\50\52\112\50\54\53\50\52\116\50\53\74\50\51\68\50\50\85\50\49\106\50\49\74\50\79\83\50\49\49\50\51\87\50\51\101\50\51\72\50\51\90\50\52\121\50\51\51\50\54\52\50\50\107\50\50\107\50\52\84\50\49\98\50\51\104\50\49\50\50\53\88\50\68\57\50\51\69\50\50\56\50\53\67\50\50\57\50\49\78\50\53\49\50\51\83\50\52\49\51\49\67\79\50\54\82\50\53\78\50\49\73\50\51\55\50\50\113\50\53\55\49\117\49\104\50\51\52\50\54\57\50\120\102\50\55\98\50\51\99\50\51\116\50\52\53\50\55\50\49\106\50\49\56\50\52\117\50\53\108\50\53\50\50\50\74\50\53\74\50\51\52\50\51\109\50\52\67\50\51\116\50\54\57\50\54\104\50\49\55\50\83\50\50\53\101\50\51\104\50\51\79\50\52\89\50\50\54\50\52\76\50\50\53\50\51\84\50\52\108\50\50\122\50\50\77\50\53\101\50\54\48\50\113\101\50\53\107\50\52\90\49\88\50\52\87\50\53\105\50\112\121\50\53\77\50\50\98\49\84\50\54\115\50\53\74\50\49\82\50\49\117\50\54\65\50\50\98\50\53\111\50\51\54\50\52\56\50\53\69\50\52\122\50\66\82\50\50\75\49\48\50\49\52\50\80\56\51\49\105\73\50\51\102\50\51\48\49\79\50\50\90\50\50\86\50\49\66\50\115\50\50\53\122\50\54\82\50\52\119\50\53\83\50\54\102\50\50\83\50\53\82\50\53\81\50\52\121\50\53\121\50\49\100\50\51\105\50\53\100\50\101\122\50\50\57\50\54\50\50\55\49\50\49\55\50\54\56\50\51\51\50\51\74\50\50\85\50\54\70\51\49\112\90\49\48\50\54\49\50\54\81\50\54\70\50\54\109\50\50\89\50\54\117\49\113\50\49\75\50\53\104\50\54\113\50\51\82\50\53\51\50\54\66\50\53\50\50\49\81\50\49\90\50\52\66\50\73\54\49\65\50\51\87\50\52\113\50\50\69\50\52\49\50\53\106\50\101\51\49\53\50\50\102\50\52\75\50\49\85\50\53\83\50\49\75\50\53\89\50\49\56\50\51\67\50\52\71\50\50\113\50\52\73\49\89\50\51\49\50\54\107\50\51\66\50\51\86\50\53\80\50\72\57\50\82\118\50\49\122\50\49\104\50\54\54\49\118\50\49\74\50\49\56\50\50\121\50\54\108\50\54\85\50\53\111\49\97\50\51\51\50\53\78\50\53\86\50\49\80\50\81\69\49\54\50\54\70\50\49\48\49\55\50\54\109\51\49\52\53\50\79\116\50\54\103\50\52\55\50\54\67\49\115\49\104\50\51\108\50\49\75\50\52\109\50\54\86\50\51\114\50\55\49\50\52\51\49\89\50\50\88\50\49\105\50\52\109\50\53\51\49\102\50\52\48\50\122\116\50\53\119\50\51\90\50\54\65\50\52\85\50\54\74\50\50\71\50\50\120\50\52\87\50\54\85\50\69\51\50\50\82\50\51\102\50\50\56\49\118\50\51\114\50\52\70\50\51\117\50\49\85\49\101\50\54\109\50\49\107\49\102\50\50\57\49\86\50\49\67\49\53\50\49\112\50\49\109\50\69\51\50\50\76\50\53\121\50\51\115\49\69\50\50\55\50\52\54\50\51\73\50\49\121\50\50\65\50\51\84\50\111\56\50\54\83\50\54\78\50\50\102\50\51\56\49\117\50\52\111\50\68\57\50\53\78\50\53\80\50\50\52\50\52\66\49\49\50\51\89\50\53\114\50\53\57\50\49\65\49\50\50\55\66\49\122\50\51\54\50\51\72\50\102\106\49\97\50\49\54\50\49\84\50\50\79\50\50\88\50\54\51\50\54\66\50\53\115\51\49\107\111\49\81\50\51\116\51\49\50\119\50\55\66\50\54\79\50\54\52\50\49\108\49\108\50\55\66\50\82\75\49\54\49\99\49\54\49\53\50\49\113\50\49\74\51\49\90\83\49\80\50\114\81\49\66\50\49\57\50\49\112\49\52\49\56\50\49\52\49\121\49\66\50\50\48\50\71\105\50\50\110\50\53\54\50\51\116\49\51\50\54\110\50\54\68\49\98\50\101\51\50\53\78\49\49\50\50\90\49\76\50\51\110\51\49\71\121\50\49\104\50\50\84\50\54\66\50\52\78\50\50\56\49\57\50\52\103\50\51\56\50\52\101\50\52\77\50\54\50\50\69\51\49\104\50\50\113\50\49\53\50\50\116\49\65\50\54\83\50\53\67\50\50\77\50\49\89\50\50\110\49\50\49\103\50\49\86\50\50\87\50\50\69\50\51\99\50\49\51\50\50\73\51\49\99\79\50\53\80\50\50\86\50\54\52\50\54\52\50\53\52\50\53\56\50\52\72\50\52\97\50\54\74\50\51\50\50\49\111\50\73\54\50\50\55\50\108\98\49\50\50\54\48\50\51\84\50\68\57\50\52\114\51\49\54\119\50\54\66\50\53\77\50\50\112\50\52\84\50\52\75\51\49\48\108\49\112\50\53\55\50\53\109\50\97\68\50\49\105\50\50\48\50\101\51\50\52\89\50\53\55\50\51\109\50\49\82\49\116\49\76\50\51\74\50\52\48\50\52\103\49\79\50\51\75\50\52\56\50\50\111\50\50\78\49\49\49\51\50\51\48\50\51\121\51\49\118\49\50\54\52\50\53\90\50\51\51\50\53\49\50\53\81\50\54\113\50\54\55\49\104\50\49\114\49\109\50\77\120\50\50\55\50\51\54\50\52\98\50\51\55\50\49\65\51\49\86\49\50\49\80\50\53\119\50\49\67\50\49\84\50\50\112\49\51\50\51\77\50\49\104\50\52\52\50\49\80\50\50\86\50\55\51\50\53\67\50\51\88\51\50\50\48\50\53\98\50\49\100\49\84\51\49\113\48\51\49\67\51\51\49\81\51\51\49\99\54\49\119\50\49\55\49\113\49\78\51\49\111\115\50\49\51\49\122\51\49\49\77\49\78\49\57\50\49\82\50\49\78\51\49\113\56\49\74\49\73\49\82\50\49\117\50\105\54\49\66\50\52\116\50\53\116\50\54\51\50\49\56\50\52\83\50\84\48\50\53\84\50\51\50\50\54\119\50\50\71\50\50\55\50\50\85\50\53\84\50\52\116\50\52\108\50\53\70\51\50\50\49\49\104\50\49\111\50\50\85\50\49\115\50\49\51\50\52\74\49\56\51\49\48\108\50\50\122\50\50\85\50\51\106\50\49\105\49\55\50\54\53\50\52\89\51\49\48\108\50\51\103\49\105\50\50\80\50\49\121\49\113\50\54\54\50\52\104\51\49\67\111\50\49\122\49\89\49\104\50\49\51\50\49\73\49\78\49\52\49\118\49\97\49\54\50\50\49\51\50\53\105\50\50\78\50\54\103\50\54\71\50\50\48\50\51\101\50\49\112\50\105\54\50\52\98\50\52\50\50\52\55\50\49\102\49\69\50\51\122\50\100\57\50\51\82\50\50\57\50\52\117\50\54\110\50\51\51\49\50\50\54\97\50\49\103\50\101\51\50\54\87\49\55\50\51\48\50\52\76\50\49\98\50\54\86\50\51\50\50\50\84\50\70\49\50\54\53\50\52\101\49\51\49\90\50\53\121\50\53\116\50\49\55\50\54\115\50\73\54\50\49\72\50\49\49\50\52\90\50\49\99\50\52\49\50\49\97\50\112\121\50\49\113\50\50\52\50\49\74\50\54\53\50\53\66\50\51\56\50\52\74\50\53\71\50\50\55\49\54\50\54\110\49\77\49\82\51\49\116\105\50\56\101\49\48\50\50\100\50\53\72\49\50\49\119\50\54\111\49\55\50\49\56\50\53\51\50\50\87\50\54\113\50\53\81\50\50\76\50\49\98\50\53\87\50\101\90\50\54\72\50\49\68\50\53\89\50\49\83\50\49\117\50\52\97\50\50\106\50\51\107\50\50\112\51\49\90\111\51\50\51\122\51\49\81\50\51\49\99\53\49\49\50\49\103\50\49\49\49\79\49\116\49\122\51\50\52\69\50\111\88\51\50\52\72\50\49\117\50\69\51\49\51\50\49\117\49\105\50\54\84\50\54\51\49\81\50\50\48\50\49\81\50\50\81\50\50\55\50\53\110\50\51\75\50\50\104\50\51\121\50\53\67\50\51\108\50\49\82\50\54\81\50\116\48\50\53\68\50\53\78\50\51\52\50\54\69\51\49\72\53\49\89\49\50\50\51\76\50\49\85\51\49\84\50\50\52\117\50\53\118\50\51\53\50\54\108\50\54\70\50\50\53\50\53\110\50\51\117\50\49\111\50\49\76\50\49\109\50\54\51\50\69\51\50\52\69\50\51\102\50\52\84\50\53\98\50\51\50\50\50\90\51\50\48\49\50\52\109\50\51\85\50\54\75\50\54\103\50\53\52\50\50\51\50\53\114\50\51\99\50\49\81\50\52\81\50\70\106\50\52\51\50\49\52\50\52\52\50\54\118\50\50\77\50\53\119\50\52\84\50\51\65\50\53\49\50\49\71\50\49\48\49\48\50\70\106\50\53\74\49\109\50\50\56\50\55\50\49\50\50\54\121\50\54\56\50\49\115\50\49\71\50\50\117\50\50\97\49\66\50\84\48\50\51\86\50\55\51\50\52\116\50\53\48\50\51\81\50\52\65\50\51\97\50\51\102\49\114\50\101\50\50\119\68\50\54\78\50\50\69\50\52\103\50\54\103\50\49\117\50\49\83\50\52\120\49\68\50\51\80\50\51\98\50\51\106\49\87\50\49\108\50\49\103\50\54\57\50\52\108\49\78\50\52\48\50\115\50\50\50\53\51\49\89\51\49\48\49\77\49\57\49\87\49\90\51\49\67\100\49\54\49\110\50\50\71\50\70\74\49\53\50\51\79\50\53\104\50\52\77\50\51\101\49\117\50\51\74\49\83\50\51\49\50\50\108\50\51\71\50\51\112\50\73\54\50\49\119\49\57\50\54\49\49\102\50\50\118\50\53\83\50\66\82\50\54\54\50\51\71\50\49\52\50\52\109\50\81\69\50\50\118\51\49\90\83\49\56\50\50\49\51\49\99\79\50\51\107\50\51\105\50\50\68\50\50\73\50\49\105\50\49\56\50\53\103\50\49\54\50\50\57\50\53\98\50\53\106\50\73\54\50\49\76\50\53\108\50\52\88\50\54\85\50\50\86\50\55\48\50\81\101\49\103\50\49\50\50\54\51\50\50\78\50\52\101\51\49\90\56\50\51\101\49\48\50\50\115\50\54\53\50\50\83\50\54\57\50\86\120\50\52\69\50\54\110\50\52\75\50\121\57\49\48\50\51\50\50\49\53\50\53\81\50\52\66\50\49\54\50\53\110\50\52\56\50\53\65\50\51\72\50\51\107\50\52\111\50\49\89\49\121\50\54\89\50\52\82\50\74\51\50\87\100\50\54\88\50\49\55\50\53\79\50\53\76\50\51\49\49\86\50\54\105\49\106\50\50\66\50\53\65\50\49\50\50\51\113\50\52\115\50\51\120\50\49\108\50\52\116\50\51\116\49\49\50\81\101\50\54\69\50\54\97\50\55\50\50\50\85\50\52\87\50\101\51\50\51\75\50\51\56\49\71\50\51\118\50\109\102\50\49\66\50\50\53\50\49\54\50\54\85\50\52\66\50\51\71\50\49\73\50\53\67\50\52\73\50\54\81\50\53\57\50\52\85\51\49\48\76\50\50\82\49\67\49\49\49\68\49\50\49\76\51\49\117\53\50\55\66\50\49\70\50\54\54\50\54\55\50\49\71\50\54\52\51\49\88\82\50\119\100\50\51\122\50\53\74\50\51\121\49\49\50\50\55\50\51\103\50\49\111\50\54\79\50\49\115\50\51\112\50\55\50\50\54\88\49\55\50\49\107\50\53\105\50\51\52\50\50\79\51\49\54\88\50\87\100\49\100\49\106\50\54\51\49\111\50\55\49\50\115\121\50\54\57\50\53\114\49\77\50\51\74\50\54\48\50\49\83\50\54\111\50\49\65\50\53\112\50\51\54\50\53\102\50\113\101\50\52\68\50\49\89\50\50\86\51\49\115\48\51\49\48\76\50\55\51\50\54\75\50\54\56\50\51\76\50\53\88\50\53\105\50\50\53\50\116\48\50\50\54\50\51\57\50\49\87\50\50\89\50\54\111\50\50\53\50\54\81\50\53\54\50\52\115\50\50\111\50\98\114\50\53\52\50\50\121\50\52\98\50\50\116\50\98\114\49\56\50\52\48\50\52\106\49\78\50\101\90\50\51\49\50\54\55\50\52\54\50\52\107\50\55\48\50\50\116\49\86\50\53\73\50\54\107\50\70\74\50\49\79\50\53\48\49\72\50\52\52\50\50\79\50\53\83\51\49\51\50\50\52\55\50\53\85\50\50\97\50\51\122\50\101\122\50\49\118\51\50\51\88\49\115\49\48\49\104\49\100\51\49\55\73\50\68\57\49\115\50\49\68\50\51\69\50\50\55\50\53\55\50\49\48\50\50\73\50\54\112\50\56\85\51\50\56\75\51\49\99\52\50\114\52\50\49\49\50\49\66\49\113\49\84\50\49\48\50\49\56\49\108\49\72\49\110\49\82\49\56\49\68\50\49\113\51\49\81\90\50\114\97\50\113\101\50\51\49\49\67\49\76\49\83\50\49\87\50\68\57\50\54\80\50\49\89\50\51\110\50\53\55\50\53\51\50\51\66\50\54\68\50\118\65\51\49\105\73\50\54\120\50\52\72\50\54\56\50\51\57\50\53\48\50\50\68\50\113\101\50\52\121\49\105\50\52\67\50\120\52\51\50\101\98\50\51\113\50\49\78\50\52\73\50\54\118\50\49\78\50\51\68\50\51\55\50\52\74\50\53\90\50\51\52\50\51\54\50\49\57\50\49\100\50\52\68\49\115\49\85\50\115\50\50\54\109\49\99\49\78\50\52\121\49\115\50\51\99\50\50\81\50\54\87\50\50\48\50\50\78\50\49\104\50\54\97\50\50\100\51\49\67\79\50\50\48\50\49\53\50\114\56\50\49\51\49\121\50\81\86\49\49\49\49\50\49\117\51\50\69\66\51\50\70\111\50\51\52\49\75\50\53\56\49\51\50\52\50\50\51\115\50\54\101\50\52\106\50\49\48\50\49\71\50\54\50\50\51\97\50\54\98\50\52\53\50\70\74\50\51\81\50\52\82\49\103\50\54\56\50\55\50\50\49\118\50\53\56\49\81\50\54\116\50\51\48\50\52\84\50\54\54\50\49\71\49\79\51\49\90\108\50\50\121\50\54\109\50\53\48\50\55\48\51\50\55\80\50\51\119\49\52\50\49\111\50\51\106\50\52\66\50\54\86\50\52\80\50\51\77\49\114\50\53\112\50\55\49\49\51\50\52\74\50\52\121\50\52\53\50\54\102\50\54\51\50\49\105\50\54\75\50\55\81\49\51\50\50\51\50\53\103\50\51\120\51\49\50\88\51\49\81\85\50\49\121\50\54\117\50\52\105\50\55\98\49\56\49\56\49\120\51\49\52\106\50\52\57\51\50\78\82\51\50\78\114\49\49\50\51\76\50\51\75\51\49\99\68\49\51\49\57\51\49\68\114\50\50\119\50\52\105\50\53\107\50\55\98\49\97\49\97\49\73\50\50\99\49\88\50\50\118\50\55\98\49\98\50\55\53\49\81\50\56\118\51\50\79\56\51\50\79\65\50\49\89\50\97\89\51\50\111\102\49\66\50\90\87\50\50\67\51\50\108\116\49\48\49\99\49\99\51\50\110\116\49\71\50\50\55\51\50\79\85\51\50\79\117\51\50\111\98\50\53\86\50\52\53\50\55\66\49\100\49\68\49\49\50\51\51\50\51\50\49\48\49\50\49\50\49\101\49\69\51\49\100\90\51\50\74\51\51\50\112\100\51\50\79\117\49\49\50\51\48\50\50\112\49\67\51\50\112\98\51\50\80\105\51\50\111\73\50\56\54\51\50\111\103\49\50\50\50\119\50\52\74\50\53\76\50\55\66\51\50\80\48\50\50\99\49\113\51\49\117\50\49\48\51\50\112\53\50\112\48\51\50\111\74\51\50\111\84\51\50\71\50\49\119\50\49\57\49\67\51\50\79\57\51\50\111\57\49\49\50\49\84\50\49\83\49\48\51\50\79\57\51\50\78\114\51\50\110\104\50\53\69\50\51\118\51\50\78\108\50\122\87\51\50\110\111\50\55\98\49\52\49\52\51\50\110\116\50\52\116\50\54\81\51\50\81\112\51\50\113\112\51\50\110\89\51\50\79\48\49\51\49\51\49\53\49\53\51\50\112\115\50\52\103\50\53\77\50\55\98\49\54\49\54\51\50\79\66\50\51\82\50\53\68\50\69\79\49\55\51\50\113\51\50\56\54\51\50\114\54\51\50\81\67\51\50\81\101\51\50\82\54\51\50\113\80\50\122\119\50\53\57\50\54\104\51\50\81\111\51\50\113\81\49\104\50\54\66\50\53\86\51\50\81\85\49\52\51\50\112\83\50\52\104\50\53\78\51\50\114\53\51\50\82\55\50\50\67\50\52\73\50\54\67\51\50\114\98\51\50\82\68\51\50\82\88\51\50\80\70\49\48\51\50\82\73\51\50\81\81\50\51\105\49\121\50\51\72\51\50\82\83\51\50\78\116\50\54\86\50\52\111\51\50\115\99\50\51\73\50\50\90\50\49\103\51\50\114\115\50\49\68\49\114\50\49\74\49\84\50\50\56\50\50\56\51\50\82\74\50\49\121\51\50\82\108\51\50\82\110\49\120\51\50\114\112\51\50\114\114\51\50\81\85\51\50\80\83\50\52\77\50\53\79\51\50\114\120\51\50\79\98\49\78\50\50\57\51\50\83\50\51\50\80\112\51\50\83\52\49\116\51\50\106\51\51\50\115\55\51\50\78\84\51\50\115\65\51\50\115\71\51\50\115\101\51\50\83\103\51\49\57\75\51\50\83\107\51\50\115\77\51\50\83\111\51\50\83\81\49\52\51\50\82\75\51\50\82\109\49\48\51\50\113\112\51\50\115\86\51\50\114\113\51\50\82\115\51\50\80\83\50\52\78\50\53\80\51\50\84\50\50\50\67\50\52\109\50\54\56\51\50\84\54\51\50\113\52\51\50\82\102\51\50\116\57\51\50\83\54\49\54\51\50\84\113\51\50\83\57\51\50\83\98\51\50\113\117\51\50\83\68\51\50\83\102\51\50\85\97\50\51\105\50\90\112\51\50\116\73\51\50\115\110\51\50\83\112\51\50\83\114\51\50\115\116\51\50\116\112\51\50\82\79\51\50\84\115\51\50\83\121\50\50\119\50\52\75\50\53\81\51\50\116\120\49\100\50\50\51\51\50\117\49\51\50\114\101\49\54\51\50\115\53\51\50\116\98\51\50\117\56\51\50\83\103\50\51\78\50\54\52\51\50\83\71\51\50\117\70\51\50\81\85\51\50\83\108\51\50\85\72\51\50\116\108\51\50\84\110\51\50\83\117\51\50\115\119\51\50\84\116\50\50\119\50\52\76\50\53\114\51\50\116\88\49\51\50\49\120\51\50\117\86\51\50\84\56\51\50\84\65\51\50\85\54\51\50\115\56\51\50\116\68\51\50\85\68\51\50\86\50\51\50\84\71\50\52\107\51\50\85\103\51\50\116\75\51\50\117\106\51\50\116\79\51\50\84\81\51\50\86\99\51\50\85\79\50\53\54\50\53\83\51\50\116\88\50\51\78\50\53\104\51\50\118\107\51\50\85\53\51\50\117\121\51\50\118\78\51\50\84\67\51\50\85\57\51\50\85\55\51\50\86\114\51\50\117\68\51\50\115\105\51\50\118\85\51\50\85\105\51\50\84\109\51\50\83\83\51\50\118\120\51\50\85\77\51\50\83\88\51\50\81\80\51\50\112\115\50\53\55\50\53\84\51\50\84\120\50\54\122\50\53\57\51\50\87\54\51\50\117\51\51\50\86\109\51\50\117\55\51\50\86\112\51\50\85\55\50\50\84\50\49\109\51\50\86\52\50\53\69\51\50\87\71\51\50\86\57\51\50\87\106\51\50\118\98\51\50\85\78\51\50\87\78\50\50\87\50\53\52\50\53\85\51\50\116\88\50\53\51\50\54\112\51\50\119\85\51\50\117\88\51\50\85\52\51\50\117\90\51\50\119\89\51\50\115\56\51\50\120\48\51\50\86\83\51\50\88\52\51\50\86\119\51\50\120\55\51\50\119\109\51\50\114\116\50\50\87\50\53\53\50\53\118\51\50\116\120\49\53\50\49\118\51\50\120\71\51\50\87\56\51\50\87\120\51\50\87\66\51\50\88\76\51\50\120\49\51\50\87\69\51\50\83\106\51\50\118\54\51\50\116\74\51\50\87\72\51\50\86\65\51\50\117\76\51\50\116\82\51\50\120\82\51\50\80\115\50\53\97\50\53\119\51\50\84\120\50\54\121\50\53\56\51\50\88\122\51\50\88\73\51\50\119\57\51\50\86\48\51\50\85\68\50\52\105\50\55\49\51\50\88\50\51\50\88\111\51\50\87\105\51\50\117\107\51\50\86\89\51\50\88\56\51\50\88\83\50\53\98\50\53\88\51\50\116\88\50\54\53\50\52\98\51\50\121\75\51\50\119\119\51\50\118\111\51\50\89\50\51\50\110\116\51\50\89\112\51\50\88\78\51\50\121\55\51\50\118\56\51\50\88\112\51\50\121\66\51\50\118\122\51\50\88\57\50\53\56\50\53\89\51\50\84\88\50\52\49\50\53\90\51\50\90\51\51\50\117\53\51\50\89\49\51\50\115\103\51\50\90\56\51\50\89\53\51\50\121\115\51\50\121\97\51\50\121\86\51\50\89\68\50\50\87\50\53\57\51\50\90\75\51\50\117\53\51\50\79\66\50\50\100\51\49\49\77\49\48\49\55\51\50\114\67\51\50\116\55\51\50\119\55\51\50\121\76\51\50\90\78\51\50\121\79\51\50\89\113\51\50\85\68\50\53\54\50\112\71\51\50\121\55\49\111\50\49\69\51\50\121\57\51\50\120\54\51\50\122\68\51\50\121\119\51\50\80\83\50\52\89\50\54\48\51\50\116\120\50\49\53\50\51\51\51\50\122\76\51\50\88\74\51\50\90\54\50\51\73\50\54\120\50\52\109\51\50\121\114\51\50\122\97\51\50\118\118\51\50\121\84\51\50\119\107\51\50\89\99\51\50\118\68\50\52\90\50\54\49\51\50\84\88\50\49\54\50\51\48\51\51\48\114\51\50\121\109\51\50\88\75\51\50\110\116\51\50\120\77\51\50\85\68\51\50\116\72\51\51\48\89\51\51\48\72\51\50\89\85\51\50\87\76\51\50\118\100\50\52\87\50\54\50\51\50\116\120\50\54\112\50\53\51\51\51\49\57\51\51\48\56\51\50\119\122\51\50\121\52\51\50\85\55\51\50\87\70\51\51\49\71\51\50\120\53\51\51\49\105\51\51\49\50\51\50\85\111\50\52\88\50\54\51\51\50\116\88\49\67\50\50\50\51\51\49\81\51\50\90\53\51\50\115\71\50\52\50\50\53\80\51\51\48\120\51\50\113\80\51\50\118\55\51\51\48\122\51\50\122\115\51\51\49\74\51\50\117\111\50\53\50\50\54\52\51\50\116\88\49\50\50\49\119\51\51\50\54\51\50\87\97\51\51\50\56\51\51\50\65\51\51\49\69\51\50\118\84\51\51\49\119\51\50\90\99\51\50\122\116\51\50\86\100\50\53\51\50\54\53\51\50\84\120\50\54\74\50\52\84\51\51\50\110\51\50\121\110\51\50\117\55\51\51\50\57\51\50\83\103\51\51\49\118\51\51\50\99\51\50\121\56\51\51\49\120\51\51\49\49\51\50\122\101\51\50\120\115\50\53\48\50\54\54\51\50\116\120\50\51\109\50\53\71\51\51\51\50\51\51\49\66\50\77\89\50\51\66\51\51\50\98\49\52\51\51\50\68\51\51\49\72\51\51\51\66\51\51\48\107\50\50\87\50\53\49\50\54\55\51\50\116\88\50\54\69\50\52\103\51\51\51\74\51\51\48\84\50\49\52\51\51\51\109\51\51\50\114\51\50\122\82\51\51\48\73\51\51\50\86\51\50\85\79\50\51\85\51\50\117\48\51\50\122\121\50\50\99\50\52\90\50\54\84\51\51\51\90\51\50\83\71\51\51\52\49\51\51\51\54\51\50\89\54\51\51\51\56\51\50\90\66\51\51\49\48\51\50\120\81\51\50\86\68\50\51\86\50\54\57\51\50\84\120\49\71\50\50\69\51\51\52\69\51\50\117\100\50\49\105\51\49\55\56\51\50\85\68\51\50\86\53\51\51\52\74\51\51\50\101\51\51\52\53\51\51\50\103\51\50\88\57\50\51\83\50\54\65\51\50\116\120\50\51\100\50\49\82\51\51\52\116\51\50\117\55\51\51\52\118\51\50\122\57\51\51\52\122\51\51\51\113\51\51\52\109\51\50\117\79\50\51\84\50\54\98\51\50\116\120\49\111\50\50\109\51\51\53\57\51\50\83\56\51\51\53\66\51\50\90\113\51\51\50\116\51\51\52\76\51\51\48\74\51\50\122\85\50\51\89\51\50\115\49\51\51\52\97\49\70\50\50\49\51\51\53\109\51\50\78\116\51\51\53\111\51\50\85\55\51\51\48\67\51\50\116\105\51\51\48\70\51\51\53\69\51\51\53\115\51\50\118\68\50\51\90\50\54\68\51\50\116\88\50\53\120\50\52\51\51\51\53\122\50\51\73\50\50\72\49\55\49\53\51\51\52\88\51\50\120\51\51\50\81\117\51\50\111\98\50\50\106\51\50\51\89\49\48\51\50\82\48\49\104\51\50\54\56\49\53\51\51\54\54\51\51\52\54\51\50\120\57\50\51\87\50\54\101\51\50\84\120\50\49\57\50\50\90\51\51\54\69\51\51\54\103\51\51\54\73\51\50\117\55\51\51\49\102\51\50\82\74\50\50\99\51\51\54\78\50\99\56\49\53\51\51\54\114\50\55\87\51\51\54\117\51\51\53\50\51\50\120\83\50\51\88\50\54\70\51\50\116\120\50\52\89\50\54\83\51\51\55\50\51\51\54\72\51\51\53\112\51\51\55\55\51\51\55\57\51\51\54\112\51\51\55\98\51\51\54\115\51\51\55\101\51\51\49\90\51\50\88\57\50\51\109\50\54\103\51\50\84\88\50\55\70\51\51\53\109\51\50\79\66\50\51\101\50\49\79\51\51\55\97\51\50\80\106\50\50\87\51\51\55\52\51\50\85\55\51\51\52\89\51\50\84\109\51\51\55\56\51\51\54\79\51\51\54\81\51\51\55\84\51\51\51\65\51\51\53\70\51\50\120\57\50\51\78\51\50\84\111\51\50\82\54\51\50\79\98\50\51\52\50\49\105\51\51\56\49\50\50\99\51\51\56\51\51\51\56\53\50\76\112\51\51\56\56\51\50\115\56\51\51\55\54\51\51\56\98\51\51\55\113\51\51\56\101\51\51\55\68\51\51\56\103\51\51\54\55\51\50\85\79\50\51\75\50\54\73\51\50\84\88\50\49\65\50\50\87\51\51\56\80\51\51\56\114\51\51\55\82\51\51\56\54\51\51\56\117\51\50\78\116\51\51\51\55\51\51\56\120\51\51\56\68\51\51\55\115\51\51\57\48\51\51\50\117\51\51\55\70\51\50\80\83\50\51\108\50\54\74\51\50\116\88\50\51\87\51\50\114\52\51\51\48\50\51\51\48\52\51\50\85\50\51\50\88\104\51\50\90\52\51\51\50\111\51\51\54\76\50\50\67\50\53\53\50\55\51\51\51\56\83\51\51\56\55\51\51\51\110\51\51\54\77\51\51\57\104\51\51\55\67\51\51\54\84\51\51\57\49\51\51\54\118\51\50\120\115\50\51\113\50\54\107\51\50\116\88\50\52\98\51\51\50\121\51\51\57\83\51\50\83\51\51\51\48\54\51\51\57\119\51\51\51\51\51\51\56\98\51\51\97\48\51\51\65\50\51\51\57\68\50\51\105\51\51\56\87\51\51\97\53\51\51\55\97\51\51\65\55\51\51\55\85\51\51\51\99\51\50\80\115\50\51\114\50\54\108\51\50\116\88\50\52\112\50\54\110\51\51\56\112\51\51\97\78\51\51\57\98\51\51\56\84\51\51\52\72\51\50\114\115\51\51\65\83\51\51\55\114\51\51\65\85\51\50\116\108\51\49\99\55\51\49\75\85\50\105\51\50\51\110\50\54\75\50\51\50\51\49\50\120\51\50\113\112\50\116\102\50\55\66\51\50\110\72\50\50\108\51\49\90\112\50\56\54\51\49\109\86\50\50\71\50\105\51\51\50\112\97\50\50\87\50\50\121\51\51\66\116\51\50\79\66\50\51\51\50\49\53\50\55\98\51\50\108\84\49\49\50\50\85\51\50\111\101\50\49\57\50\49\57\51\50\80\66\51\50\112\83\51\49\97\104\51\51\66\77\49\51\51\50\111\98\50\49\86\51\49\105\105\51\50\81\86\51\51\48\53\51\50\81\121\51\50\80\83\50\50\87\51\49\122\51\51\50\117\76\51\50\111\66\49\89\50\50\115\51\51\56\53\51\51\48\53\51\50\88\57\50\50\88\50\55\113\51\51\55\82\51\50\111\98\50\54\108\50\52\114\51\50\115\52\51\51\48\53\51\50\114\48\51\50\112\83\50\51\50\50\74\111\51\51\52\65\50\53\99\50\51\113\51\50\120\103\51\50\112\83\50\51\51\51\49\105\73\51\51\48\51\51\50\79\66\50\53\106\50\51\76\51\50\110\81\49\56\51\51\97\73\51\51\48\51\51\50\112\115\50\51\48\51\49\55\75\51\50\78\82\51\50\79\66\50\55\48\50\53\54\51\49\108\67\49\57\51\51\97\105\51\50\78\82\51\50\112\115\50\51\49\50\66\89\49\48\51\50\111\51\51\50\79\66\50\53\52\50\55\50\51\50\79\107\51\51\97\73\51\50\79\51\51\50\80\83\50\50\81\51\49\52\81\51\50\79\57\51\50\111\66\50\49\107\50\51\105\51\50\111\79\51\51\65\73\51\50\111\57\51\50\80\115\50\50\82\51\49\67\99\51\50\111\71\51\50\111\98\50\54\68\50\52\74\51\50\80\87\51\50\103\50\51\51\48\53\51\50\80\82\50\50\87\50\50\111\50\108\55\51\50\81\53\51\50\111\98\50\51\117\51\50\84\49\51\50\81\49\51\50\80\54\51\51\48\53\51\50\111\85\51\50\112\83\50\50\80\50\55\65\51\51\101\121\51\50\111\98\50\49\67\50\51\65\50\55\98\51\50\80\100\51\51\97\73\51\50\80\53\51\50\112\115\50\50\117\50\106\87\49\48\51\50\80\68\51\50\79\98\50\49\104\50\51\55\50\55\66\49\70\49\102\51\51\97\73\51\50\112\68\51\50\80\83\50\50\118\51\50\55\84\51\51\102\77\51\50\111\66\49\85\51\51\66\115\49\48\49\103\49\103\51\51\97\105\51\51\70\109\51\50\80\83\50\50\83\50\71\115\51\51\102\88\49\71\51\50\79\66\50\49\85\49\53\50\55\54\49\72\49\104\51\51\65\105\51\51\70\121\51\50\112\83\50\50\116\50\113\118\51\50\106\52\49\72\51\50\79\66\50\49\50\50\50\79\50\55\66\49\105\49\73\51\51\97\73\51\51\103\98\51\50\112\83\50\51\101\51\49\108\98\51\49\113\85\51\51\71\111\50\50\99\50\49\105\50\51\52\50\55\66\49\106\49\106\51\51\65\105\51\51\71\111\51\50\112\83\50\51\102\50\87\68\51\51\72\49\51\50\79\98\50\52\56\51\51\51\102\49\48\49\107\49\107\51\51\97\105\51\51\104\49\51\50\80\83\50\51\67\50\70\89\51\51\104\67\49\75\51\50\79\98\50\52\99\51\51\49\77\49\48\50\84\102\51\51\97\73\51\51\104\100\51\50\80\115\50\51\68\51\51\48\49\50\84\102\51\50\111\98\50\50\104\49\86\50\55\98\49\109\51\49\67\54\51\51\48\53\50\84\102\51\50\112\83\50\51\73\50\85\98\51\50\99\56\50\65\48\50\50\99\50\50\82\50\49\49\50\110\120\49\110\51\51\97\73\51\51\105\49\51\50\80\115\50\51\106\51\51\98\80\49\78\49\110\51\50\79\98\49\56\50\50\54\50\55\98\49\79\49\79\51\51\65\73\51\51\105\107\51\50\112\83\50\51\71\50\105\102\49\48\51\51\105\81\51\50\111\66\50\54\49\50\52\70\50\55\66\49\80\49\80\51\51\97\73\51\51\73\81\51\50\80\115\50\51\104\49\78\51\51\74\50\49\80\51\50\111\98\49\52\50\49\117\50\55\98\49\81\49\113\51\51\97\73\51\51\106\51\51\50\112\115\50\51\54\51\50\77\113\49\48\51\51\74\71\51\50\79\66\50\53\75\50\51\89\50\55\66\49\114\49\82\51\51\65\105\51\51\74\103\51\50\112\83\50\51\55\49\80\51\51\106\83\49\82\51\50\111\66\50\50\83\49\89\50\55\98\49\83\49\83\51\51\65\73\51\51\106\84\51\50\112\83\50\51\52\50\109\49\51\51\107\54\51\50\111\66\51\49\88\113\50\55\66\49\84\49\84\51\51\97\105\51\51\75\54\51\50\80\115\50\51\53\51\50\79\74\51\51\75\104\51\50\79\98\49\69\50\50\48\50\55\66\49\117\49\85\51\51\65\105\51\51\107\72\51\50\112\83\50\51\97\51\50\106\51\49\48\51\51\107\116\51\50\111\98\50\53\110\50\51\88\50\55\98\49\86\51\49\100\89\51\51\48\53\51\51\75\116\51\50\112\115\50\51\66\51\51\54\79\51\51\76\54\51\50\111\66\50\52\51\51\50\89\122\49\48\49\119\49\119\51\51\97\73\51\51\76\54\51\50\112\115\51\49\89\113\50\55\98\51\51\108\105\51\50\111\66\50\53\111\50\51\85\50\55\98\49\88\49\120\51\51\65\73\51\51\76\73\51\50\112\115\50\51\57\51\51\72\122\49\48\51\51\76\85\51\50\79\66\50\54\104\50\52\86\50\55\66\49\121\49\89\51\51\97\105\51\51\76\117\51\50\80\115\50\50\50\49\119\51\51\109\54\49\89\51\50\79\98\50\54\73\50\52\83\51\49\122\52\49\90\51\51\97\73\51\51\77\55\51\50\112\115\50\50\51\49\120\51\51\77\106\51\50\111\66\50\51\48\50\49\54\50\55\98\51\49\107\68\51\51\97\73\49\122\49\122\51\50\80\83\51\49\98\51\51\51\109\117\51\49\111\89\50\50\99\50\52\52\51\50\88\99\49\48\50\49\49\50\49\49\51\51\97\73\51\49\75\68\51\50\80\115\50\50\49\51\50\67\67\51\51\110\54\50\49\49\51\50\79\98\50\52\54\51\50\87\50\49\48\50\49\50\50\49\50\51\51\65\105\51\51\78\55\51\50\80\115\50\50\54\51\50\65\87\51\51\78\74\50\49\50\51\50\79\98\50\51\89\51\50\111\55\51\50\97\88\50\49\51\51\51\65\73\51\51\78\75\51\50\80\83\50\50\55\51\51\73\67\51\51\110\119\51\50\111\98\50\49\90\49\48\50\55\54\50\49\52\50\49\52\51\51\97\73\50\49\51\50\49\51\51\50\112\83\50\50\52\50\49\50\50\55\98\51\51\79\56\51\50\79\66\50\54\79\50\53\50\50\107\76\50\49\53\51\51\65\105\51\51\79\56\51\50\80\115\50\50\53\50\49\51\51\51\79\76\51\50\79\66\51\49\99\102\50\55\98\50\49\54\50\49\54\51\51\97\105\50\49\53\50\49\53\51\50\80\83\50\49\85\51\51\66\69\51\51\111\87\51\50\79\66\51\50\65\105\50\55\66\50\49\55\50\49\55\51\51\65\105\51\51\111\87\51\50\112\115\50\49\86\51\51\67\48\49\48\51\51\112\56\51\50\111\66\50\51\81\50\53\67\50\55\98\50\77\106\51\51\65\105\51\51\80\56\51\50\80\115\50\49\83\51\51\109\116\50\55\55\50\49\56\51\50\111\66\49\83\50\50\105\50\55\66\51\51\99\54\51\51\97\105\50\109\106\51\50\80\83\50\49\116\50\49\55\51\51\80\119\50\49\57\51\50\79\66\50\50\119\50\49\65\50\55\66\50\49\97\50\49\97\51\51\65\105\51\51\99\54\51\50\80\115\50\49\121\50\49\56\51\51\113\56\50\49\97\51\50\79\98\50\51\49\51\51\113\50\49\48\50\98\81\51\51\65\105\51\51\113\57\51\50\112\115\50\49\90\50\49\57\50\55\98\50\66\113\51\50\79\98\50\50\49\51\51\103\104\50\49\67\50\49\67\51\51\65\73\50\98\81\51\50\112\115\50\49\87\51\51\113\55\49\48\51\51\113\120\51\50\79\66\50\54\116\50\52\90\50\55\98\50\49\100\50\49\100\51\51\65\105\51\51\81\88\51\50\112\115\50\49\120\50\49\98\51\51\82\57\50\49\68\51\50\111\98\49\82\50\50\108\50\55\98\50\49\69\50\49\69\51\51\97\73\51\51\82\97\51\50\112\83\50\50\105\50\49\99\51\51\114\77\50\49\69\51\50\111\98\50\53\101\50\51\111\51\50\103\56\50\49\70\51\51\97\105\51\51\114\110\51\50\112\83\50\50\74\50\49\100\51\51\114\122\51\50\111\98\50\50\53\51\51\102\52\50\49\103\50\49\71\51\51\65\105\50\49\70\50\49\102\51\50\80\115\50\50\103\51\49\113\116\49\48\51\51\115\65\51\50\111\66\50\50\102\50\119\100\50\49\104\50\49\72\51\51\65\105\51\51\83\65\49\49\50\51\72\50\51\72\51\50\56\78\50\49\103\51\51\99\56\50\50\87\50\50\104\50\49\102\51\51\99\66\51\50\79\66\50\52\85\51\51\55\121\51\50\85\76\51\51\65\73\51\51\99\73\50\50\119\50\50\109\50\49\71\51\50\114\78\51\50\111\98\50\52\50\51\50\121\71\51\51\57\66\51\51\99\114\51\50\88\83\51\50\76\105\51\51\55\97\51\50\111\66\49\55\50\84\53\51\50\87\55\51\51\68\48\51\50\114\49\50\50\87\50\50\75\51\51\56\111\51\51\52\97\50\50\79\51\51\79\102\51\51\97\72\51\51\48\53\51\50\82\54\51\50\112\83\50\50\76\50\49\74\51\50\82\66\51\50\111\98\50\53\102\50\51\112\51\51\68\71\51\51\68\105\49\55\51\50\112\83\50\50\65\50\49\75\51\51\68\103\51\50\79\66\50\54\48\50\52\69\51\51\100\82\51\51\68\84\49\56\51\50\80\83\50\50\66\50\49\108\51\51\100\82\51\50\79\98\50\49\76\50\51\74\51\51\101\51\51\51\48\53\51\51\69\53\50\50\87\50\50\56\50\49\109\51\50\79\107\51\50\79\98\50\54\78\50\52\80\51\51\101\68\51\51\48\53\51\51\69\70\50\50\119\51\49\83\50\51\50\79\111\51\50\111\66\50\51\106\51\51\85\75\51\50\113\53\51\51\65\73\51\51\101\81\50\50\101\51\51\56\52\51\51\101\85\50\50\67\50\53\83\50\52\54\51\50\112\52\51\51\101\90\51\50\113\52\51\51\102\49\50\50\87\50\50\102\50\49\112\51\51\118\104\51\50\111\98\50\53\119\50\52\50\51\51\102\57\51\50\112\101\51\51\48\53\51\51\70\67\50\50\87\50\50\67\50\49\81\51\51\118\83\51\50\79\98\50\53\109\50\51\119\51\51\70\76\51\51\102\78\51\51\48\53\51\51\70\112\50\50\119\50\50\68\51\51\53\56\51\49\48\109\49\70\51\50\79\66\50\53\68\50\51\114\50\55\66\51\51\102\89\51\51\103\48\49\70\51\50\80\115\50\116\67\51\51\119\70\51\51\71\54\50\50\99\50\51\116\51\50\118\71\51\51\103\105\51\51\103\100\49\71\51\50\112\83\50\49\55\51\51\84\76\51\51\71\66\51\50\79\66\50\51\73\51\51\117\65\51\51\71\118\51\51\71\81\49\104\51\50\112\83\50\49\52\51\51\106\101\51\51\103\118\51\50\111\66\50\52\116\51\51\57\111\49\48\51\51\72\49\51\51\104\51\49\73\51\50\80\115\50\49\53\51\50\88\121\51\51\88\97\51\50\52\103\50\50\67\50\53\57\50\54\122\50\55\98\51\51\104\100\51\51\104\70\49\74\51\50\112\115\50\49\97\51\51\50\109\51\51\104\75\51\50\79\66\50\52\101\51\51\48\78\51\51\104\80\50\79\122\51\51\48\53\51\51\72\83\50\50\119\50\49\98\51\50\118\106\51\51\120\120\51\50\79\66\50\49\88\51\49\100\83\51\51\105\56\51\51\97\73\51\51\73\52\50\50\87\50\49\56\50\49\121\51\51\105\48\51\51\105\57\50\53\72\50\51\78\51\51\105\100\51\51\105\102\49\109\51\50\80\83\50\49\57\51\51\111\53\49\48\51\51\73\75\51\51\121\53\51\51\67\117\51\51\73\113\51\51\105\83\49\110\51\50\112\83\49\121\51\51\107\82\51\51\73\120\49\79\51\50\79\98\50\54\52\50\52\65\51\51\74\97\51\51\106\53\49\111\51\50\112\83\49\122\51\51\53\121\50\70\48\51\51\74\66\50\50\99\50\55\49\50\53\55\51\51\106\102\51\51\74\72\51\51\48\53\51\51\74\106\50\50\119\49\119\51\51\50\53\51\51\106\110\49\113\51\50\111\66\50\49\49\50\50\82\51\51\75\48\51\51\106\118\49\81\51\50\112\115\49\88\51\50\85\85\49\48\51\51\106\116\51\50\79\98\49\80\50\50\110\51\51\107\53\51\51\107\55\51\51\48\53\51\51\107\57\50\50\119\50\49\50\50\50\52\51\52\48\49\51\50\111\66\50\50\90\51\51\113\114\49\48\51\51\75\104\51\51\75\106\49\83\51\50\112\115\50\49\51\50\50\53\51\51\107\71\49\116\51\50\111\98\49\106\50\50\68\51\51\75\115\51\51\107\117\51\51\48\53\51\51\75\119\50\50\87\50\49\48\51\51\73\79\51\51\108\48\49\117\51\50\111\66\49\107\50\50\97\51\51\108\53\51\51\108\55\51\50\81\52\51\51\76\57\50\50\119\50\49\49\50\50\55\51\52\49\48\51\50\79\66\50\52\113\51\51\97\68\51\51\108\72\51\51\76\106\51\51\48\53\51\51\108\76\50\109\114\50\50\56\51\51\76\111\49\119\51\50\79\66\50\50\101\51\51\71\85\51\51\76\117\51\51\108\119\49\87\51\50\112\115\50\49\110\51\50\116\53\51\51\77\49\49\88\51\50\111\98\50\54\88\50\53\98\51\51\77\69\51\51\77\57\49\120\51\50\112\83\50\49\107\51\52\48\122\49\48\51\51\109\55\51\50\79\98\50\49\83\51\49\55\75\51\51\77\88\51\51\109\108\51\50\57\109\50\50\119\50\49\76\50\50\66\51\51\109\113\50\50\99\50\52\120\50\54\118\51\51\78\49\51\51\109\119\51\51\109\89\50\50\87\50\49\81\50\50\67\51\51\110\49\51\50\79\98\50\50\116\51\51\110\68\51\51\110\55\51\51\78\57\50\49\48\51\50\80\83\50\49\114\51\52\48\110\51\51\78\69\51\50\111\66\50\50\54\51\51\100\83\51\51\78\114\51\51\78\109\50\49\49\51\50\112\115\50\49\111\51\51\52\83\51\51\110\82\51\50\79\66\50\49\48\50\50\81\50\55\66\51\51\111\66\51\51\110\121\50\49\50\51\50\80\115\50\49\80\50\50\70\51\52\51\67\50\49\51\51\50\79\98\51\49\72\105\51\51\79\71\51\51\79\57\51\51\48\53\51\51\111\98\51\50\80\115\50\49\101\51\51\102\119\51\51\111\72\50\50\99\50\51\53\51\51\85\48\49\48\51\51\79\90\51\51\111\78\50\49\52\51\50\112\83\50\49\70\50\50\72\51\51\79\83\50\50\99\50\52\75\51\51\53\53\49\48\51\51\79\87\51\51\79\121\51\51\112\48\50\50\119\50\49\99\51\51\112\118\51\52\52\57\50\49\54\51\50\79\98\50\54\117\50\52\87\51\51\80\55\51\51\112\57\51\51\48\53\51\51\112\66\50\50\87\50\49\100\50\50\74\51\52\52\76\51\50\111\98\50\52\70\51\51\49\53\51\51\80\114\51\51\112\109\50\49\55\51\50\112\115\50\49\73\51\50\113\48\50\77\74\51\50\111\98\49\90\50\50\116\51\51\113\51\51\51\112\121\50\49\56\51\50\80\83\50\49\74\51\51\82\76\49\48\51\51\99\54\51\50\111\66\50\54\57\50\52\78\51\51\113\103\51\51\81\98\51\51\99\55\50\50\87\50\49\71\51\51\53\76\49\48\51\51\81\57\51\50\79\66\50\50\55\51\51\68\104\51\51\81\76\50\49\66\51\51\113\110\51\49\90\50\50\50\119\50\49\104\51\52\48\48\51\52\53\83\51\50\111\66\50\50\117\51\51\109\100\51\51\82\52\51\51\81\121\51\51\48\53\51\51\114\48\50\50\119\49\97\51\51\103\77\51\52\54\51\51\50\79\66\50\50\76\51\50\111\74\51\51\114\97\51\51\114\67\50\49\67\51\50\80\115\49\98\50\50\112\51\51\114\104\51\50\79\98\50\50\121\51\51\113\70\49\48\51\51\82\78\51\51\114\112\50\49\68\51\50\80\115\49\56\51\52\51\98\51\52\54\79\51\51\82\86\50\50\99\50\53\71\50\51\109\51\51\82\122\51\51\115\49\50\49\101\51\50\80\115\49\57\51\51\90\80\49\48\51\51\115\68\51\50\111\66\50\52\55\51\50\87\113\51\51\115\73\51\51\83\66\51\51\48\53\51\51\115\100\51\50\112\83\49\69\51\51\67\112\51\52\55\98\51\50\79\98\50\51\72\50\49\78\50\55\66\51\51\115\110\51\51\115\80\51\51\115\66\50\51\104\50\51\105\49\50\51\51\83\65\51\51\115\87\49\70\51\52\53\53\51\50\111\49\51\50\79\98\49\118\51\52\52\52\51\51\84\52\51\51\67\72\49\51\51\50\112\115\49\67\50\50\117\51\51\116\97\51\52\50\110\51\51\89\100\51\51\116\101\51\50\113\52\51\50\88\57\49\68\51\50\79\69\51\51\99\118\50\50\67\50\53\117\50\52\52\51\51\99\90\51\50\81\52\51\51\68\49\51\51\67\107\51\51\57\56\51\51\52\65\50\53\73\51\50\111\48\51\51\116\118\51\51\57\117\51\50\112\83\49\51\50\50\88\51\51\117\49\50\50\67\50\54\54\50\52\56\51\51\85\53\51\51\48\53\51\51\68\74\51\51\57\56\51\51\66\119\49\48\51\51\68\110\50\50\67\50\51\65\51\51\114\116\51\51\68\89\51\51\68\115\51\51\48\53\51\51\68\117\50\50\87\51\50\48\75\51\51\117\108\50\50\99\50\50\78\51\51\74\122\51\50\113\102\49\97\51\51\101\52\51\50\79\52\49\54\51\51\49\56\51\52\57\75\51\51\103\55\51\51\68\52\51\50\111\71\51\51\69\69\51\49\112\70\50\50\87\49\55\50\51\49\51\51\118\52\50\50\67\50\49\52\51\50\80\57\51\51\118\56\51\51\101\80\50\122\49\50\50\87\50\80\104\51\51\101\110\51\50\111\98\49\54\51\50\81\101\51\51\101\121\51\51\65\105\51\51\118\75\49\53\51\51\48\81\51\51\70\53\50\50\67\50\55\51\50\53\53\51\51\118\115\51\51\70\98\51\50\71\52\50\50\87\49\81\51\51\71\90\51\51\102\71\49\69\51\50\79\98\50\52\108\51\51\53\105\51\51\87\97\51\51\102\111\49\69\51\50\112\83\49\114\50\51\53\51\51\87\51\51\50\111\98\50\49\55\51\52\57\121\51\51\71\53\51\51\87\72\51\50\80\115\49\79\50\51\54\51\51\119\108\51\50\111\66\50\81\81\50\55\98\51\51\103\98\51\51\87\82\51\50\112\115\49\112\51\51\102\107\51\51\71\73\51\50\111\98\50\50\88\51\51\82\103\51\51\88\48\51\51\48\53\51\51\103\82\50\50\119\49\85\50\51\56\51\51\71\78\51\51\71\87\50\52\83\51\51\57\53\51\51\88\72\51\51\88\67\51\50\80\115\49\86\50\51\57\51\51\104\48\51\51\120\105\50\51\57\51\51\115\90\51\51\72\107\51\51\88\79\51\50\112\83\49\115\51\51\70\56\51\51\120\84\50\50\67\50\53\54\50\55\48\50\110\51\51\51\88\121\51\50\113\52\51\51\121\48\49\116\50\51\98\51\52\67\103\51\50\111\66\50\54\82\50\53\49\51\51\89\101\51\51\121\57\49\76\51\50\112\115\49\73\50\51\67\51\51\121\69\51\50\79\98\50\49\116\51\51\68\120\51\51\105\107\51\51\121\106\51\50\80\115\49\106\50\51\100\51\51\73\68\51\50\79\66\50\52\72\51\51\55\105\51\51\121\121\51\51\89\116\51\50\80\83\49\103\51\50\69\49\51\51\89\89\51\50\79\66\50\49\74\51\52\66\49\51\51\90\57\51\51\90\52\51\50\80\115\49\72\50\51\102\51\51\74\65\51\50\111\66\50\50\51\51\50\55\116\51\51\106\103\51\51\74\73\49\112\51\50\112\115\49\77\50\51\103\51\51\90\101\51\50\79\66\50\53\98\50\54\120\51\51\90\113\51\51\48\53\51\51\74\87\50\50\119\49\78\50\51\104\51\51\75\48\51\50\111\98\50\53\50\50\54\111\51\52\48\49\51\51\107\56\49\82\51\50\80\83\49\107\51\51\101\99\50\81\70\49\115\51\50\79\98\51\52\56\57\51\52\48\67\51\51\107\73\51\51\48\53\51\51\107\107\50\50\87\51\50\50\77\51\52\48\74\51\50\79\98\51\50\79\98\51\52\48\79\51\51\107\118\50\81\122\50\50\87\50\54\105\51\52\56\81\51\51\76\49\50\50\99\50\51\70\51\51\118\78\49\48\51\51\108\54\51\51\65\105\51\52\49\51\50\54\74\51\51\100\70\51\52\102\52\49\86\51\50\79\66\50\49\101\51\52\98\84\51\52\49\98\51\51\108\107\49\118\51\50\80\83\50\54\71\51\52\54\122\51\52\49\66\51\50\111\66\50\50\113\51\51\78\81\51\52\49\77\51\51\48\53\51\51\76\120\50\50\87\50\54\72\51\51\121\72\51\52\49\83\51\50\79\66\50\49\102\51\52\99\50\51\52\50\51\51\51\77\56\51\51\48\53\51\51\77\65\50\50\87\50\54\109\51\51\114\121\51\52\70\90\51\50\79\66\50\55\50\50\53\52\51\51\77\74\51\52\50\57\51\50\112\115\50\54\78\51\51\117\52\49\48\51\51\77\120\51\52\99\120\51\50\117\120\49\48\51\51\109\86\51\51\48\53\51\51\77\88\51\50\112\115\50\54\107\51\51\68\55\51\52\103\74\51\51\110\50\50\49\113\51\52\67\118\51\51\110\101\51\52\50\84\51\50\80\115\50\54\76\51\51\119\101\51\52\50\121\50\50\99\50\54\103\50\52\117\50\55\66\51\51\110\107\51\52\51\51\51\50\112\83\50\54\65\50\51\83\51\52\104\51\51\51\110\115\50\50\67\50\52\57\51\51\51\86\51\51\110\119\51\52\51\101\51\50\80\115\50\54\66\50\51\116\51\52\51\106\51\51\67\100\49\52\51\51\79\55\51\52\51\79\51\50\81\52\51\52\51\113\50\50\119\50\54\56\51\51\76\115\51\49\85\51\50\49\52\51\50\111\98\50\53\49\50\54\114\51\51\79\108\51\52\52\48\51\50\112\83\50\54\57\50\51\86\51\52\52\53\50\54\83\50\52\89\51\51\79\86\51\51\79\120\51\51\48\53\51\51\79\122\51\50\80\83\50\54\69\51\51\87\50\51\52\52\103\51\50\111\66\49\49\51\51\89\110\51\51\80\56\51\51\112\97\50\49\54\51\50\80\83\50\54\70\51\51\108\52\51\51\112\102\50\49\55\51\50\79\98\50\50\86\51\51\77\112\51\52\52\87\51\51\48\53\51\51\80\78\50\50\87\50\54\99\51\51\74\82\51\51\80\82\51\50\111\98\50\49\119\51\51\99\76\51\51\112\88\51\51\48\53\51\51\80\90\50\50\87\50\54\68\50\51\90\51\51\81\51\51\50\111\66\50\49\51\51\52\54\106\51\52\53\110\51\51\113\65\51\51\48\53\51\51\113\67\50\50\119\50\54\121\50\52\48\51\51\81\103\51\50\79\98\50\53\56\50\54\89\51\51\113\83\51\52\53\84\51\51\48\53\51\51\113\79\50\50\87\50\54\90\50\52\49\51\52\74\110\51\50\79\66\50\54\86\50\52\88\50\55\66\51\51\81\88\51\51\113\90\50\49\98\51\50\112\115\50\54\119\51\51\118\82\51\52\54\65\50\50\67\50\50\97\51\51\73\55\51\52\54\69\51\51\48\53\51\51\82\68\50\50\87\50\54\120\51\51\54\68\49\48\51\51\82\65\51\50\79\66\50\54\70\50\52\104\51\51\114\117\51\52\54\113\51\50\112\83\50\55\50\51\52\56\73\51\52\54\118\51\50\111\66\50\49\79\51\52\100\100\51\51\83\68\51\52\55\49\51\50\80\83\50\55\51\51\50\112\51\51\52\55\54\50\49\70\51\50\111\66\50\51\112\50\53\70\50\55\98\51\51\115\81\51\52\55\100\51\51\115\101\50\50\87\50\55\48\51\51\118\103\51\52\55\73\50\50\99\50\49\103\51\52\66\65\49\48\51\52\55\78\51\51\48\53\51\51\115\81\50\51\72\50\51\106\49\51\51\52\55\84\51\50\80\98\50\50\87\50\55\49\50\52\55\51\51\84\48\50\50\99\49\84\51\52\52\114\51\52\56\49\51\50\81\52\51\51\116\54\50\54\81\51\52\56\122\51\51\67\77\50\50\67\50\50\71\49\85\51\51\99\113\51\52\56\98\51\50\88\83\50\54\82\50\52\57\51\51\116\73\50\50\99\50\50\57\51\51\106\57\51\51\116\77\51\52\56\75\51\51\84\111\50\54\111\51\51\122\50\51\51\52\65\50\54\98\50\52\108\51\51\100\56\50\50\119\50\54\112\51\50\122\50\51\51\57\115\51\50\79\98\50\51\90\51\50\112\86\51\52\57\53\51\51\100\104\51\52\57\49\51\51\85\55\50\50\119\50\54\117\50\52\99\51\51\117\98\50\50\99\50\50\50\51\51\102\102\51\50\79\51\51\51\85\103\51\50\112\115\50\54\118\50\52\68\51\52\57\71\50\50\52\51\51\101\116\51\50\113\98\51\51\85\113\51\50\111\52\50\54\83\51\51\85\69\51\52\57\81\50\50\99\50\49\77\51\52\68\87\49\48\51\52\57\116\51\51\118\48\51\52\57\118\50\54\84\51\51\106\49\51\52\78\107\51\50\79\112\50\50\67\50\51\55\50\49\72\51\51\101\78\51\51\86\57\51\52\97\53\50\53\109\51\51\51\121\51\51\86\68\50\51\115\51\50\117\114\51\52\97\99\51\51\70\48\51\50\80\109\50\50\87\50\53\78\51\52\75\106\51\52\97\104\50\50\105\51\51\107\122\51\51\70\65\51\51\86\85\51\52\97\110\50\53\107\51\50\110\80\51\52\65\114\51\50\111\66\50\52\78\51\51\52\80\51\52\65\119\51\51\119\53\51\52\97\121\50\50\119\50\53\108\51\51\69\77\51\51\119\97\51\50\111\66\49\87\51\52\56\54\51\52\66\54\51\51\48\53\51\51\103\49\50\50\87\50\53\113\50\52\107\51\52\66\98\50\50\99\50\52\71\51\51\54\89\51\51\119\81\51\51\48\53\51\51\103\69\50\50\87\50\53\114\51\52\109\106\51\52\98\75\50\50\99\50\50\55\51\49\67\99\51\51\103\79\51\51\120\49\51\50\112\83\50\53\79\50\52\109\51\52\66\117\51\50\111\98\50\54\51\51\52\78\55\51\52\98\121\51\51\48\53\51\51\104\52\50\50\119\50\53\112\51\52\53\103\51\51\120\104\51\50\111\98\50\54\113\50\53\48\51\51\120\109\51\51\104\69\51\51\48\53\51\51\72\103\50\50\119\50\53\69\50\52\111\51\52\80\121\51\50\111\66\49\98\51\52\48\105\51\51\88\88\51\51\72\82\49\75\51\50\112\115\50\53\70\51\51\85\89\51\51\121\52\50\50\67\50\53\116\51\52\76\112\51\51\89\56\51\51\73\51\51\52\67\115\50\50\119\50\53\67\50\52\81\51\52\67\87\50\50\99\50\50\98\51\51\105\106\51\51\105\101\51\51\48\53\51\51\105\71\50\50\119\50\53\68\51\51\99\121\51\51\121\111\51\51\105\76\50\50\67\51\49\87\72\51\51\105\112\51\51\73\82\51\51\48\53\51\51\73\84\50\50\87\50\53\105\51\51\77\105\51\52\68\101\50\50\67\50\49\90\51\49\50\88\51\51\74\51\51\52\100\74\50\50\87\50\53\106\51\51\51\49\51\51\90\57\51\50\111\66\50\51\98\51\51\115\53\51\51\122\76\51\52\100\83\51\50\112\83\50\53\103\51\52\72\50\51\51\90\108\51\50\111\98\50\51\50\51\51\66\101\51\51\74\116\51\51\122\114\51\50\112\115\50\53\72\51\51\109\53\51\51\90\119\51\51\107\49\50\50\99\50\52\100\51\51\50\50\51\52\101\72\51\52\69\99\51\50\112\83\50\54\50\51\52\52\107\51\52\101\72\51\50\111\98\49\97\51\52\48\55\51\52\101\76\51\52\48\101\51\50\80\83\50\54\51\51\52\106\120\51\52\69\76\51\50\111\66\50\50\77\51\51\74\109\51\51\75\84\51\52\101\118\51\50\112\83\50\54\48\51\52\73\53\51\52\48\86\51\50\79\98\50\51\120\51\50\82\119\51\52\102\97\51\52\102\54\49\117\51\50\112\83\50\54\49\51\51\82\56\51\52\70\65\51\52\105\90\49\51\50\55\54\51\51\76\73\51\52\102\71\51\50\80\115\50\54\54\51\52\112\120\51\52\70\76\50\50\99\50\51\76\50\53\106\51\51\76\84\51\51\108\118\51\52\102\81\51\52\49\111\50\50\87\50\54\55\51\52\67\112\51\52\102\86\50\50\67\50\53\76\51\52\106\55\51\52\102\122\51\52\49\89\51\50\80\83\50\54\52\51\51\111\75\51\52\71\54\51\49\77\102\50\53\73\51\52\71\97\51\51\48\53\51\51\109\77\50\50\119\50\54\53\51\51\49\80\51\52\71\70\49\90\51\50\111\98\49\72\51\52\51\73\51\52\71\81\51\52\50\74\51\50\80\115\50\53\85\51\52\71\57\51\52\71\81\51\52\50\122\51\49\52\113\51\52\50\83\51\51\48\53\51\51\78\65\50\50\87\50\53\86\51\52\65\107\51\52\103\90\50\50\107\50\109\49\51\52\72\52\51\51\48\53\51\51\78\78\50\50\119\50\53\83\51\51\68\81\51\52\51\56\50\50\99\50\54\50\51\52\77\89\51\52\72\101\51\51\48\53\51\51\110\90\50\50\119\50\53\116\51\51\122\100\51\51\111\51\50\50\67\50\53\113\51\52\104\56\51\52\72\84\51\51\79\97\51\51\79\67\50\50\119\50\53\121\51\50\121\74\51\52\72\84\51\50\79\66\50\49\114\51\52\100\52\51\52\51\121\51\51\111\77\51\51\48\53\51\51\111\111\50\50\87\50\53\122\51\50\119\84\51\52\86\76\51\50\79\98\50\49\80\51\52\68\77\51\52\52\71\51\52\52\66\51\50\80\83\50\53\87\50\53\97\51\52\105\54\51\50\111\66\50\53\97\50\54\87\51\52\52\108\51\52\105\105\51\50\80\83\50\53\88\51\52\49\87\51\52\73\78\51\50\79\98\50\50\80\51\51\79\82\51\52\105\115\51\50\113\52\51\52\73\85\50\52\81\51\51\112\106\51\52\105\121\50\50\67\50\54\75\51\52\113\111\51\52\53\99\51\49\50\119\51\52\106\51\51\52\53\56\50\50\87\50\52\114\51\50\82\65\51\52\87\110\51\50\79\66\50\53\89\51\52\74\73\51\52\74\67\51\52\53\105\51\50\80\83\50\52\111\50\53\69\51\52\106\74\50\118\83\51\52\87\48\51\52\53\115\51\52\53\117\51\50\112\83\50\52\112\51\52\76\50\51\52\53\90\50\50\99\50\50\56\51\51\105\87\51\52\74\122\51\52\54\53\51\52\107\49\50\50\119\50\52\117\51\51\51\73\51\52\75\53\50\53\82\51\52\72\105\51\52\75\70\51\51\82\98\51\52\75\65\51\52\54\71\50\50\87\50\52\86\51\50\119\53\51\52\120\79\51\50\111\98\50\53\80\51\52\73\50\51\52\54\118\51\52\75\76\50\50\87\50\52\83\51\52\84\121\51\52\107\80\50\50\99\50\52\114\51\51\97\122\51\52\75\89\51\52\75\85\50\50\119\51\49\114\99\51\51\83\54\50\50\99\50\50\48\51\51\103\52\51\52\76\52\51\50\81\52\51\52\107\84\50\51\72\50\51\67\49\52\51\52\55\69\51\49\100\115\50\49\49\51\51\110\81\51\52\55\120\50\50\67\51\50\80\50\51\50\114\110\51\50\81\119\51\51\79\54\49\49\51\50\82\48\51\50\80\49\51\52\107\120\51\50\82\54\50\51\78\51\49\72\101\51\50\81\107\51\51\116\52\51\49\50\120\51\50\78\104\50\50\49\51\50\78\108\50\70\122\50\49\73\50\54\109\50\54\109\51\51\66\116\51\51\55\82\51\51\98\77\50\50\51\51\52\122\55\50\105\51\51\51\66\82\51\51\98\84\49\49\50\51\68\51\52\103\84\51\52\121\86\49\49\50\50\98\51\52\50\50\51\52\90\79\50\49\53\51\51\98\101\50\73\51\51\50\80\98\50\105\51\51\50\79\117\51\51\90\69\51\51\66\116\50\49\110\51\49\117\55\50\83\50\50\51\55\49\77\49\72\49\112\49\56\50\67\99\50\84\70\51\49\79\114\50\82\97\50\101\90\51\52\48\48\50\49\111\51\50\71\50\51\50\103\52\49\76\50\51\50\51\49\107\77\51\49\122\76\51\49\107\80\51\49\48\76\50\51\55\50\68\120\50\68\122\50\69\49\51\49\99\79\51\52\48\48\50\49\55\50\100\86\51\53\48\112\50\69\48\50\50\51\51\52\54\78\50\55\55\51\49\104\103\51\50\99\69\50\51\67\51\53\48\75\50\56\54\50\49\56\51\50\106\72\51\52\51\121\49\105\50\51\101\50\69\82\50\52\78\50\52\48\50\51\105\50\52\109\49\107\50\49\103\50\54\103\50\54\52\49\115\50\51\88\50\50\103\50\49\121\50\53\54\50\52\97\50\49\72\50\54\53\50\54\57\50\52\57\50\51\79\50\50\103\49\50\50\49\89\50\52\89\51\53\48\75\50\54\56\50\51\122\50\49\98\50\51\48\50\81\69\50\50\82\49\98\49\57\49\74\50\50\52\51\51\118\121\51\49\67\68\50\50\51\50\49\85\51\51\69\84\50\55\98\51\51\66\71\50\49\90\51\51\66\101\51\50\78\114\51\51\107\54\51\52\90\102\50\50\67\51\51\107\122\51\51\99\49\51\52\122\116\51\52\90\75\51\50\78\90\51\50\111\49\51\52\110\51\51\53\50\82\51\50\78\114\51\52\78\66\51\50\113\52\51\52\110\51\50\50\73\50\50\97\49\57\51\50\78\82\51\50\81\118\50\50\73\50\50\66\49\56\51\50\111\51\51\50\113\112\51\50\78\104\50\50\68\51\51\54\79\51\51\67\49\50\50\104\51\51\102\87\50\56\54\50\90\87\50\50\68\51\49\50\120\51\51\67\50\51\52\121\79\50\56\54\51\50\112\98\49\49\50\49\49\51\52\51\102\51\51\67\66\51\50\112\115\51\52\57\52\51\50\117\76\51\51\54\114\50\106\110\51\50\114\48\51\51\116\54\51\51\67\97\51\53\51\116\51\49\119\113\51\50\82\116\49\50\51\50\81\121\51\50\83\53\51\53\52\51\49\49\51\51\99\106\51\51\99\108\51\50\80\66\50\90\119\51\50\83\81\51\51\99\98\51\50\78\116\50\50\99\49\66\51\50\113\121\51\53\52\51\51\53\51\75\51\52\56\55\50\50\54\51\49\52\81\51\52\89\120\50\50\67\51\52\110\57\51\50\116\88\50\77\77\51\50\82\98\51\52\122\49\49\121\51\51\57\104\51\50\113\80\51\52\122\70\50\50\52\51\51\68\52\51\51\99\49\50\51\53\51\52\65\113\51\51\55\114\51\51\66\103\50\50\90\51\51\100\52\51\50\114\48\51\51\108\54\51\52\122\102\50\50\102\51\51\77\48\51\51\103\78\50\50\99\51\52\50\54\51\52\109\56\51\52\80\68\51\50\84\50\50\49\89\51\53\52\98\51\51\57\115\51\50\110\116\50\50\103\51\51\48\51\51\53\53\77\51\51\121\81\51\51\117\53\51\50\80\56\50\56\54\51\51\100\122\50\50\67\51\53\52\113\51\52\57\107\51\52\122\49\50\49\113\51\49\50\88\51\50\110\82\51\51\111\56\51\52\122\70\50\50\111\51\52\90\117\51\51\109\49\50\50\122\50\50\49\49\51\51\50\111\71\51\50\111\85\49\120\49\56\51\51\99\48\51\50\79\90\51\50\79\118\50\49\97\49\67\49\51\51\53\54\68\51\52\89\85\51\50\82\48\51\50\81\50\51\53\50\114\51\50\80\66\51\51\70\65\51\53\50\114\51\51\48\51\51\51\102\77\51\52\121\85\51\51\87\76\51\52\121\85\51\50\79\71\51\52\66\70\51\53\50\114\51\51\69\74\51\51\103\80\51\50\85\52\51\51\103\79\51\53\54\114\50\51\48\50\50\81\49\70\51\50\81\80\51\53\54\82\51\53\54\80\49\55\51\51\87\71\51\53\50\82\51\50\114\54\51\53\54\87\51\50\111\48\51\50\112\48\51\51\103\80\51\53\50\82\51\50\111\85\51\51\120\98\51\50\85\52\51\51\72\49\51\51\87\103\50\51\48\50\51\104\49\71\51\50\81\112\51\51\119\71\51\50\85\52\51\51\70\121\51\51\102\97\50\51\48\50\50\82\49\69\51\50\113\112\51\53\54\79\51\50\111\48\51\50\108\116\51\53\54\82\49\119\50\49\97\49\70\51\50\112\53\51\53\51\87\51\52\90\71\51\52\122\56\49\49\49\108\49\107\51\50\81\121\51\52\90\100\51\50\114\48\51\52\122\102\50\50\50\51\51\99\76\51\53\50\111\51\53\54\51\51\51\111\54\51\53\51\100\51\51\98\116\51\50\110\72\51\53\52\120\50\73\51\51\53\56\111\51\53\52\121\50\55\98\51\52\90\87\51\52\90\100\51\52\90\69\51\53\50\98\51\52\90\104\51\51\98\113\51\53\56\109\51\52\122\105\50\68\120\51\50\112\97\51\49\68\83\51\50\76\84\51\53\53\48\51\51\66\113\51\50\76\84\51\53\50\80\51\51\66\84\51\53\56\85\51\51\99\98\51\52\122\90\51\52\122\100\51\51\74\71\51\52\90\68\50\49\115\50\50\73\51\53\49\52\51\49\107\79\51\49\48\68\51\52\122\70\50\51\49\51\51\111\50\50\55\98\50\51\87\50\55\51\51\51\70\75\51\51\48\51\50\73\51\51\51\109\55\51\52\122\70\50\50\89\51\51\75\52\51\51\66\113\51\53\50\114\51\50\79\115\51\53\50\98\50\50\97\51\53\48\107\49\49\50\50\116\50\50\117\51\53\52\50\51\53\52\103\51\50\110\104\50\49\121\51\51\103\52\50\55\66\50\51\111\50\52\74\51\51\78\76\51\53\57\70\50\56\54\51\53\56\68\51\53\50\98\50\50\51\51\51\67\85\51\51\99\49\49\114\49\117\51\53\53\53\50\112\120\50\49\50\51\50\85\88\51\50\114\48\51\50\82\48\49\120\50\50\98\50\51\55\51\53\52\54\51\51\99\56\51\53\54\106\51\49\105\73\51\50\78\72\51\53\65\51\51\52\90\73\51\53\97\111\51\51\68\52\51\50\114\54\49\120\51\53\65\83\49\49\51\50\82\54\51\50\82\70\49\82\49\86\51\51\103\57\49\49\51\51\48\51\51\53\98\57\51\50\85\120\51\53\53\77\49\55\51\53\65\87\51\53\97\121\51\51\99\56\51\49\100\83\51\53\55\56\51\51\67\50\51\53\55\66\51\49\55\75\51\52\90\54\51\53\56\57\51\53\57\57\50\56\54\51\53\54\65\51\51\111\57\51\50\114\78\51\53\57\113\51\51\51\109\51\50\111\51\50\73\51\51\51\108\105\51\52\90\70\51\51\122\105\50\73\51\51\53\57\81\51\51\70\107\51\49\75\68\50\73\51\51\51\73\75\51\52\122\70\50\50\110\51\52\109\98\51\51\76\84\51\50\48\53\51\51\66\74\51\50\113\113\51\53\99\74\51\50\108\84\51\50\82\48\50\51\111\50\52\90\50\49\101\49\53\51\50\80\68\51\50\82\110\51\53\56\102\51\53\50\66\50\50\53\51\49\73\105\51\51\67\49\51\53\65\54\51\53\65\56\51\53\52\103\50\50\51\50\49\116\51\49\67\67\51\53\57\80\50\55\51\50\51\54\51\53\98\104\51\51\68\120\51\52\48\49\51\53\50\76\51\53\50\78\51\51\79\54\51\53\57\54\51\51\99\98\51\52\90\106\50\73\51\51\52\105\90\51\53\52\56\49\50\51\52\101\106\51\53\97\73\51\50\81\121\51\53\56\56\51\52\90\118\49\65\51\49\52\81\51\51\101\110\51\53\57\100\50\55\98\51\53\50\48\51\53\50\50\51\53\48\110\51\53\48\87\50\69\49\51\53\48\100\50\101\52\51\53\48\71\51\50\71\53\50\50\71\51\53\50\52\51\53\50\54\49\74\51\52\65\111\51\51\98\84\50\80\55\50\51\48\51\53\49\49\49\78\51\53\49\51\51\53\56\118\50\49\56\51\49\76\85\50\52\115\50\50\53\50\50\120\49\115\50\52\51\50\49\85\51\53\48\83\51\51\112\70\51\53\48\86\50\100\121\51\53\48\88\51\53\48\122\50\49\56\51\53\48\51\51\53\48\53\51\53\48\55\51\53\48\57\51\49\79\81\51\49\79\83\50\51\106\51\53\57\106\50\53\114\49\49\51\53\50\65\51\50\110\72\50\50\115\51\53\48\122\51\51\79\54\51\53\66\88\51\53\50\70\50\54\75\50\50\80\51\51\71\52\51\53\51\50\51\51\100\52\51\53\56\114\51\52\122\73\51\53\68\70\51\52\56\102\51\53\53\70\51\52\56\70\51\52\99\89\51\53\53\103\51\53\51\104\51\50\82\98\51\50\110\84\50\50\105\49\53\51\53\98\108\51\51\83\55\51\51\102\52\51\50\110\88\51\53\53\113\51\52\57\103\51\51\83\56\51\50\111\75\51\52\90\49\50\49\112\51\51\99\108\51\50\110\114\51\53\99\116\51\53\50\66\51\53\65\66\50\73\51\49\88\50\50\122\50\49\84\51\50\111\103\49\98\51\53\54\57\49\56\50\49\57\49\52\51\53\54\100\49\88\50\49\97\49\52\51\53\71\70\51\50\111\90\51\53\66\49\51\53\54\108\51\50\111\48\51\53\54\78\51\50\112\101\51\53\55\56\51\53\55\55\51\52\56\113\51\52\98\54\51\53\54\120\49\66\51\53\55\68\51\52\110\113\51\52\112\102\51\53\55\48\49\105\51\53\55\50\51\53\55\52\51\53\55\54\51\51\70\78\51\53\55\56\51\53\55\65\51\50\79\48\51\53\55\67\51\51\103\67\51\53\55\72\49\99\51\52\80\102\51\53\72\70\51\53\55\106\51\50\74\51\51\53\55\76\51\51\70\90\51\53\55\110\51\53\55\80\49\52\51\53\55\82\51\50\106\51\51\53\55\84\51\50\80\69\51\53\55\86\51\53\55\88\49\52\51\53\55\90\51\52\89\118\51\53\56\50\51\53\56\52\51\53\56\54\49\53\51\50\78\72\51\53\56\104\51\51\66\102\50\54\75\51\50\100\97\51\51\55\65\51\53\67\86\51\50\78\104\51\53\67\120\51\52\122\73\51\53\50\114\51\50\81\121\51\53\50\116\51\50\111\48\51\53\50\118\51\52\57\108\51\52\78\67\49\49\51\53\50\122\51\53\51\49\49\56\51\53\51\51\51\53\51\53\51\53\51\55\49\52\51\50\110\72\50\51\48\51\52\89\112\51\53\56\76\51\53\51\69\51\51\103\110\50\49\89\50\50\77\51\51\101\116\51\53\51\74\51\52\89\80\51\53\51\109\51\53\51\79\51\51\99\76\51\51\84\54\51\53\51\83\51\50\81\112\51\53\51\117\51\50\48\52\49\56\51\53\51\88\51\53\67\107\51\53\106\57\51\50\112\66\51\53\52\51\51\50\117\52\51\53\52\53\51\53\52\55\51\53\56\116\51\53\68\108\50\49\89\51\53\70\113\51\50\79\49\51\50\110\84\50\50\107\51\53\97\57\51\52\84\53\51\53\52\105\51\52\108\122\51\53\53\68\51\52\56\102\51\52\101\107\51\51\56\108\50\50\99\51\53\71\49\51\51\57\83\51\52\90\49\49\82\51\51\78\81\51\50\114\48\51\51\110\107\51\52\122\102\51\49\51\69\51\52\122\105\51\53\56\66\51\53\97\106\50\73\51\51\53\105\57\50\50\51\51\53\105\52\51\51\66\81\51\53\70\66\51\53\73\86\51\53\56\78\50\50\51\51\53\56\80\51\53\65\73\51\53\107\107\51\53\56\115\51\53\57\51\51\53\56\118\51\53\56\119\51\53\98\86\51\52\122\73\51\53\57\48\51\51\98\81\51\53\57\50\51\53\51\77\51\53\57\53\51\53\53\49\51\51\99\50\51\53\75\72\51\53\75\112\51\53\100\110\51\53\68\117\51\53\48\76\50\49\49\51\53\49\52\49\48\51\53\57\72\51\53\108\55\51\52\86\108\51\52\122\102\51\53\56\89\51\53\51\67\51\53\73\87\51\49\81\117\50\50\67\51\52\69\107\51\53\52\57\50\50\99\51\52\74\48\51\51\67\66\51\50\78\104\51\53\99\71\51\53\105\67\51\53\56\48\51\52\122\53\50\50\51\50\50\57\51\52\57\106\51\53\68\54\51\53\100\56\51\51\111\98\51\53\106\75\51\51\77\120\51\52\90\70\50\50\90\51\51\110\100\51\53\56\106\51\52\90\75\51\53\66\54\51\50\114\88\51\53\66\74\51\53\66\66\51\53\98\99\49\49\51\53\98\69\51\53\66\71\51\53\66\73\51\53\98\97\51\53\98\108\51\53\66\110\51\53\97\90\51\53\51\77\51\53\98\82\51\50\76\116\51\53\66\116\51\53\67\102\51\53\99\72\51\51\109\49\51\53\67\106\51\53\99\49\50\55\51\51\51\51\109\51\51\75\116\51\53\74\75\51\51\74\116\51\52\90\102\50\50\98\51\50\81\52\51\51\79\54\51\53\68\48\51\53\74\114\51\53\50\67\51\53\50\101\50\83\51\51\53\57\114\51\51\110\87\51\53\74\75\51\53\57\116\51\53\50\98\50\50\55\51\53\100\65\51\53\110\52\51\51\102\107\51\51\107\104\51\53\74\107\51\51\103\111\51\52\122\70\50\50\73\51\51\104\106\51\53\67\90\51\53\65\55\51\53\78\49\50\50\69\51\52\77\50\51\51\66\113\51\53\102\75\51\53\52\51\51\53\77\53\51\51\55\82\51\53\109\55\51\53\97\85\50\80\88\51\53\97\120\51\53\77\104\51\53\66\81\51\50\111\48\51\53\75\68\51\53\76\116\51\53\103\97\51\53\77\80\51\50\89\66\51\53\99\109\51\52\121\87\51\50\67\73\51\53\67\81\49\53\51\50\79\57\51\50\82\78\51\51\66\108\51\53\50\98\51\51\66\79\50\73\51\51\53\65\69\51\51\78\76\51\51\106\51\51\53\75\99\51\53\66\50\50\50\51\51\53\105\98\51\53\51\108\51\53\68\114\51\52\90\120\51\51\70\70\51\53\69\104\51\49\55\107\51\53\48\79\51\53\69\83\50\69\49\51\53\69\100\51\51\110\80\51\49\52\81\51\53\48\101\51\53\101\51\51\50\103\54\51\53\101\54\51\53\50\55\50\50\109\51\53\101\112\51\53\48\85\50\100\119\51\53\111\118\50\50\51\50\100\57\49\106\50\50\50\50\54\107\50\51\48\50\49\111\50\52\107\50\52\100\50\54\79\51\53\101\119\51\53\48\54\51\53\48\56\50\84\102\51\53\102\48\50\82\65\51\53\48\122\51\53\65\104\50\56\54\49\83\50\50\75\51\53\57\73\51\53\56\118\51\53\80\114\51\53\76\53\51\53\49\90\51\53\50\49\50\51\105\51\53\102\54\50\50\51\51\53\70\56\51\52\90\105\51\53\107\104\51\53\71\66\50\49\83\49\97\51\53\54\56\51\50\111\86\51\50\78\83\49\56\51\53\103\107\50\49\65\51\53\79\65\51\53\54\105\51\53\50\114\51\53\54\107\51\50\80\54\51\53\54\77\51\50\80\99\51\53\103\85\51\50\79\48\51\53\54\113\51\53\72\57\51\53\71\120\51\53\72\66\51\52\110\81\51\53\104\49\51\53\54\121\51\50\83\53\51\53\55\49\51\51\102\110\51\53\55\51\51\53\55\53\49\52\51\53\71\87\51\51\57\83\51\53\113\115\51\53\104\100\51\52\89\85\51\53\55\70\51\53\82\54\49\67\51\53\72\74\51\51\88\72\51\53\55\77\51\53\55\111\51\53\55\113\51\51\102\122\51\53\55\115\49\103\51\53\55\85\51\53\55\87\51\53\55\89\51\53\113\78\51\53\72\121\51\51\102\110\51\53\56\51\51\53\56\53\49\100\51\53\56\55\50\50\56\51\51\74\109\51\53\70\99\50\51\49\51\53\103\53\49\56\51\53\57\86\51\53\50\66\51\53\57\88\51\53\76\112\51\53\50\115\51\51\68\115\51\53\50\117\49\56\51\53\50\87\51\53\53\114\51\51\100\83\51\53\105\76\51\53\102\71\51\53\73\107\51\53\73\112\49\57\51\53\51\56\50\50\51\51\53\67\56\50\56\54\51\51\98\103\50\51\57\50\109\49\51\50\82\48\51\53\108\90\51\53\50\98\51\53\77\49\51\53\102\106\51\53\53\49\51\53\52\77\51\53\70\79\51\52\56\70\51\51\99\101\51\53\53\103\51\52\50\78\51\53\102\114\50\51\73\50\50\77\51\53\68\57\51\51\68\67\51\53\52\110\51\51\101\116\51\53\70\121\51\52\97\50\51\52\57\65\51\50\79\66\51\53\52\111\51\53\53\86\50\53\56\50\49\51\51\51\106\77\51\51\100\117\51\53\74\53\51\53\75\101\51\53\56\105\51\53\75\105\51\53\100\105\51\49\121\106\51\49\55\107\51\53\106\49\51\53\51\76\51\52\121\78\51\53\51\112\51\50\79\49\51\53\51\114\50\56\54\51\53\106\56\51\53\52\48\51\53\51\56\51\52\56\51\50\50\119\51\53\51\89\51\53\84\115\50\106\110\51\53\106\102\51\52\84\53\51\53\74\72\51\52\116\53\51\53\52\54\50\50\87\51\51\67\75\51\53\110\102\50\49\89\51\53\83\87\51\53\106\111\50\51\73\51\53\74\113\51\53\65\57\51\53\51\110\51\52\89\80\51\51\55\55\51\53\102\109\51\53\52\77\51\53\75\48\51\53\106\121\51\53\116\56\51\51\48\51\51\52\122\49\49\118\51\52\54\50\51\50\114\48\51\53\97\104\51\53\66\51\51\53\65\52\51\53\107\65\51\53\97\109\50\56\54\51\53\107\68\51\53\108\68\51\53\84\104\51\53\107\109\51\53\65\76\51\53\56\113\50\50\51\51\53\118\49\51\53\107\103\51\53\56\75\51\53\76\50\51\53\56\69\51\53\79\108\51\53\75\102\51\53\109\51\51\53\75\84\51\53\108\102\51\53\98\72\50\79\65\51\53\107\88\49\49\51\53\102\107\51\50\111\115\51\53\57\66\51\50\111\49\51\53\76\52\50\56\54\51\53\80\120\49\48\51\49\75\79\51\53\108\54\51\53\57\71\50\50\120\51\51\112\101\51\50\110\72\50\49\90\51\51\71\104\51\53\100\54\51\51\102\107\51\53\54\48\51\53\116\114\51\53\70\72\51\53\75\78\51\53\81\53\51\53\56\107\51\53\54\65\51\52\52\89\51\53\77\81\51\51\51\77\51\51\72\49\51\53\57\117\51\53\57\89\51\50\78\104\51\53\115\48\51\51\66\113\51\53\110\115\51\53\98\56\50\49\50\51\50\114\49\51\53\98\67\51\50\117\120\51\53\77\66\51\50\108\116\51\53\77\68\51\50\114\49\51\53\77\102\50\50\98\50\51\52\51\53\66\112\51\53\78\122\51\51\97\72\51\53\77\75\51\53\72\67\51\53\98\85\50\50\51\51\53\66\52\51\53\56\122\51\53\76\70\51\51\79\52\51\49\50\88\51\53\76\106\51\52\101\75\51\53\68\50\51\53\88\48\51\53\65\110\51\53\65\112\51\51\55\65\51\53\98\57\51\50\114\49\51\53\110\86\51\53\97\119\51\53\119\83\51\53\98\112\51\53\66\49\51\53\76\99\51\53\56\57\51\53\78\48\51\53\65\57\50\50\51\51\53\110\97\51\53\67\57\51\53\110\53\51\53\99\54\50\56\54\51\53\109\84\51\53\50\66\51\53\78\78\51\53\83\49\51\53\65\49\51\53\107\83\50\56\54\51\53\57\113\51\53\68\56\51\53\88\82\51\51\110\49\51\52\90\70\51\53\105\116\51\53\79\103\51\53\65\102\51\51\67\50\50\105\51\51\53\50\75\51\53\50\98\51\53\50\77\51\52\90\105\51\53\120\76\51\53\68\50\50\50\106\51\51\48\49\51\53\67\105\51\53\87\55\51\53\111\53\51\52\52\121\51\53\67\110\51\53\111\56\51\53\67\82\51\53\110\56\51\50\81\80\51\51\105\81\51\52\122\70\51\53\114\115\51\53\115\80\51\53\100\78\49\50\51\53\111\80\50\56\54\51\52\90\121\50\55\55\51\53\80\51\49\74\50\50\77\51\53\112\107\51\53\101\121\51\53\80\110\51\53\48\98\50\50\49\51\53\101\85\51\53\101\49\51\53\48\70\51\50\103\51\51\53\101\52\51\53\112\54\51\53\101\114\51\53\48\81\50\51\72\51\53\108\65\51\53\86\111\50\49\50\50\50\85\51\53\112\118\50\56\54\51\53\100\119\51\53\101\99\51\51\67\85\50\51\55\51\50\67\69\50\78\105\51\51\102\52\50\51\107\50\54\68\50\50\89\50\52\115\50\49\77\51\51\48\51\50\53\72\50\54\70\50\51\90\50\50\76\50\51\55\51\53\102\51\49\106\51\53\68\89\51\53\79\86\50\50\72\51\53\113\50\50\50\77\51\51\73\87\51\53\53\98\51\53\76\76\51\53\70\76\51\49\99\99\51\51\56\108\51\50\49\57\51\51\70\52\51\53\66\105\50\51\73\50\50\70\49\56\51\53\102\118\51\53\116\50\51\53\53\112\51\53\116\53\51\53\53\115\51\53\84\56\51\50\79\57\51\52\122\49\50\49\66\51\51\71\117\51\53\53\122\51\51\98\69\51\50\78\104\51\53\54\50\51\53\115\49\51\53\105\101\51\53\83\51\51\53\73\71\51\53\115\53\51\53\73\73\51\53\50\88\51\53\83\56\51\53\51\48\51\53\83\97\51\53\51\52\51\53\51\54\51\53\115\100\51\53\73\114\50\84\111\51\53\121\104\49\48\51\53\50\71\51\53\50\73\49\56\51\53\79\68\51\51\66\78\51\51\98\80\51\53\86\98\51\53\115\104\50\54\75\51\50\49\52\51\51\56\53\51\53\76\82\51\53\117\121\51\53\118\72\51\53\83\81\51\51\71\57\51\53\75\117\51\53\73\88\51\53\106\110\51\53\84\76\51\53\106\107\51\53\51\110\51\53\116\111\51\53\74\54\51\53\119\49\51\53\74\57\51\53\84\85\51\51\67\57\51\53\74\100\51\53\52\48\51\53\85\68\51\53\117\50\51\50\108\84\51\53\106\74\51\53\57\51\50\122\119\50\50\110\51\51\102\52\51\50\81\121\51\50\78\116\51\52\48\48\51\53\85\100\51\53\74\116\51\51\55\55\51\53\83\85\51\53\102\110\51\51\68\88\51\53\117\75\51\51\69\116\51\53\117\77\51\49\72\78\51\51\48\49\51\50\114\48\51\53\111\66\51\53\50\66\51\53\50\68\51\53\71\97\50\50\90\51\53\81\56\51\53\81\97\51\53\54\97\50\49\66\51\49\122\115\51\50\111\122\51\53\71\76\51\53\81\103\51\53\71\80\51\53\113\73\49\53\51\53\71\114\51\53\57\51\51\53\104\120\51\53\81\80\51\53\54\115\51\53\103\89\51\50\79\48\51\53\54\118\51\53\72\69\51\54\51\110\51\50\111\80\51\53\54\122\51\50\106\51\51\53\81\120\51\50\80\106\51\53\104\55\51\53\114\49\51\53\113\81\51\53\114\51\51\51\102\90\51\53\66\116\51\53\104\49\51\53\82\55\51\53\72\73\51\51\104\50\51\53\55\107\49\74\51\53\82\99\51\53\72\79\51\53\72\81\51\51\103\53\51\53\114\105\51\53\104\86\51\53\104\88\51\53\56\49\51\53\114\78\51\53\73\48\51\53\82\113\51\53\73\50\50\50\51\50\50\71\51\51\71\85\51\51\67\49\51\53\85\85\51\53\118\56\51\53\56\103\51\53\116\103\51\53\88\121\51\53\108\101\51\53\75\106\51\54\49\119\51\53\76\49\51\53\118\107\51\53\79\107\51\54\52\113\51\53\87\52\51\52\122\75\51\54\50\48\51\51\111\54\51\53\107\119\51\53\57\52\51\54\49\88\51\53\57\55\51\53\118\55\51\53\118\76\51\51\90\76\51\53\57\103\51\53\90\109\51\51\66\116\51\53\118\79\51\53\57\107\51\53\118\117\51\53\79\77\51\53\99\89\51\53\109\122\51\53\78\108\51\53\120\109\51\53\88\118\51\53\57\122\51\53\76\81\51\53\78\104\51\53\110\74\51\53\117\90\51\54\48\101\51\53\100\107\51\53\88\51\51\53\76\109\50\50\51\50\51\51\51\52\87\68\51\53\67\105\51\51\112\69\51\53\79\53\51\51\67\48\51\53\89\109\51\53\67\112\51\53\67\82\51\53\88\116\51\50\113\86\51\54\49\86\51\53\56\57\51\53\78\83\51\53\97\118\50\49\50\50\98\89\51\53\120\69\50\50\66\51\52\66\65\51\53\120\72\51\54\51\102\51\54\53\80\51\53\120\112\51\51\70\75\51\53\75\54\51\52\121\86\51\53\67\101\51\53\50\98\51\53\108\111\51\53\118\53\51\51\66\84\51\53\79\72\49\49\51\53\110\103\51\53\108\51\51\53\97\75\51\53\85\118\51\53\54\97\51\54\54\48\51\50\113\112\51\53\99\50\49\52\51\50\112\53\51\51\99\49\49\49\51\53\121\65\51\50\78\104\51\53\121\99\51\53\88\122\51\53\100\55\51\53\56\65\51\51\98\112\51\50\76\84\51\53\67\52\51\53\50\66\51\53\68\52\51\53\121\100\51\54\53\75\51\53\68\50\50\49\120\51\50\55\84\51\53\88\57\51\53\98\55\49\54\51\53\98\57\50\98\89\51\53\119\75\51\53\77\65\51\53\98\102\51\53\87\78\51\53\66\109\51\54\54\67\51\51\57\83\51\53\98\105\51\54\54\102\51\53\57\51\51\53\77\73\51\53\81\79\51\50\82\67\51\53\119\87\51\50\85\53\51\52\122\70\51\54\53\120\51\53\89\85\51\51\99\66\51\53\67\65\51\51\88\88\51\54\55\53\51\53\85\114\51\53\87\122\51\53\48\75\51\53\89\119\51\53\68\83\51\50\113\53\51\51\112\75\51\53\90\69\51\53\112\56\51\53\48\113\51\53\48\121\51\53\86\78\51\53\70\51\51\53\86\114\50\73\51\50\49\54\50\50\89\51\53\50\51\51\51\68\52\51\53\50\53\51\53\80\52\51\53\90\65\51\53\112\49\50\50\71\51\53\111\88\51\54\48\56\51\53\122\103\51\53\108\97\50\49\56\50\112\89\50\49\78\50\50\48\50\53\56\50\51\70\50\49\122\50\51\79\51\49\84\111\49\48\50\50\57\50\49\108\50\53\78\50\53\121\50\50\111\51\53\90\52\51\53\80\77\51\53\48\97\51\53\102\49\51\53\80\90\50\49\66\51\53\113\49\51\52\122\70\51\53\86\52\51\54\49\113\51\53\52\122\51\54\49\89\51\53\68\72\51\53\51\102\51\53\105\89\51\53\106\48\51\50\76\116\51\53\74\84\51\53\106\51\51\54\50\54\51\53\84\86\51\53\74\55\51\49\68\87\51\53\52\48\51\53\51\113\51\53\84\87\51\54\50\99\51\53\51\86\51\53\105\50\51\53\85\49\51\50\106\51\51\53\74\105\51\53\117\53\51\54\53\116\50\49\121\50\50\98\51\51\68\120\51\54\50\77\50\51\73\50\50\106\51\53\73\114\51\53\52\103\51\53\117\101\51\53\119\49\51\52\117\71\51\52\109\56\51\53\117\106\51\50\82\121\51\54\48\70\51\54\50\88\49\57\51\51\84\114\51\50\114\48\50\49\107\51\51\119\122\51\50\110\104\50\51\52\51\51\119\90\51\53\70\99\50\51\67\51\52\109\66\51\53\84\100\51\54\52\122\51\53\98\121\50\50\122\50\50\48\49\50\51\54\51\55\51\50\53\57\51\53\54\72\51\54\51\98\50\49\97\51\50\103\52\51\53\81\104\51\53\79\48\51\54\51\103\51\53\113\107\51\53\71\83\51\53\81\109\51\52\121\117\51\54\51\75\51\53\50\82\51\53\54\116\51\53\103\122\51\53\81\117\51\54\51\82\51\53\113\87\51\53\72\53\51\53\81\89\51\54\51\87\51\53\114\50\51\51\48\51\51\53\114\52\49\54\51\54\52\50\51\53\72\103\51\53\55\71\51\53\55\101\51\53\114\57\51\54\52\53\51\53\72\107\51\54\52\55\51\53\104\77\51\53\82\100\51\53\104\112\51\53\82\102\51\53\104\82\51\53\114\104\51\53\72\116\51\53\114\106\51\53\104\87\51\53\82\108\51\54\52\70\49\49\51\53\114\111\51\53\73\49\51\54\49\79\51\53\68\73\51\52\114\66\51\49\50\120\51\53\52\77\51\53\102\109\51\54\48\105\51\54\97\75\51\53\83\88\50\50\72\51\49\81\80\51\53\53\78\51\53\108\75\51\53\82\119\51\50\80\55\51\54\48\83\49\57\51\53\100\74\51\53\103\50\50\53\56\50\49\54\51\51\66\112\51\50\110\114\51\54\54\79\51\53\108\110\51\53\77\110\51\51\98\103\50\50\70\51\51\87\90\51\50\114\48\51\51\99\54\51\52\122\70\50\50\84\51\52\48\66\51\51\67\49\51\53\73\68\51\50\111\50\51\54\49\53\51\52\77\115\51\53\115\54\51\51\117\102\51\53\83\57\51\53\73\110\51\52\72\108\51\54\49\68\51\53\105\113\51\50\78\104\50\51\73\51\51\84\82\51\54\52\110\51\53\56\99\51\53\117\86\51\51\55\97\51\53\88\106\51\53\118\99\51\53\75\106\51\53\107\108\51\54\57\85\51\53\50\98\51\54\69\68\51\53\74\107\51\53\75\113\51\53\107\100\51\53\86\97\51\53\102\65\51\53\56\107\51\54\57\120\51\51\67\49\51\54\53\52\51\51\67\50\51\53\86\73\50\55\54\51\53\86\107\51\53\65\106\51\53\118\79\51\53\108\56\51\54\53\67\51\53\112\121\51\53\56\86\51\51\79\122\51\52\122\70\51\53\118\87\51\54\54\75\51\52\109\115\51\53\106\107\51\53\108\88\51\53\50\66\51\54\56\56\51\53\119\70\51\53\88\97\51\53\110\116\51\54\55\120\51\54\54\69\51\54\54\103\51\53\98\48\51\54\54\73\51\53\50\66\51\53\79\50\50\56\54\51\54\54\84\51\53\79\106\50\56\54\51\54\55\52\51\53\50\66\51\54\55\76\51\53\111\51\51\54\55\48\49\52\51\54\55\50\51\53\97\106\51\50\112\98\51\51\73\49\51\52\90\102\51\54\48\67\51\53\88\119\51\53\108\114\51\54\70\73\51\54\52\116\51\54\99\117\51\52\114\67\51\53\78\102\51\54\68\53\51\54\53\118\51\54\49\87\51\53\89\101\51\53\68\79\51\53\77\88\51\54\53\48\51\54\55\73\51\53\68\49\51\53\100\79\51\54\57\84\51\53\68\69\51\53\53\49\51\50\113\121\51\54\56\66\51\53\89\82\51\53\57\51\51\54\51\49\51\50\110\72\51\54\51\51\51\54\70\57\51\54\55\79\51\54\55\81\51\50\117\53\51\53\98\100\51\54\55\117\51\53\68\57\51\54\71\115\51\53\119\113\51\54\70\101\51\54\56\50\51\53\119\86\51\52\121\85\51\50\82\54\51\54\101\65\51\53\66\89\51\53\54\98\51\53\119\49\51\54\54\90\51\52\121\118\51\53\67\111\51\53\111\57\51\53\109\86\51\50\85\76\51\53\87\65\51\53\50\66\51\53\121\71\51\53\120\80\51\53\68\56\51\50\78\82\51\53\76\89\51\51\110\100\51\50\78\104\51\53\115\79\51\53\111\111\51\54\56\105\51\53\89\122\50\49\56\51\54\56\90\51\53\90\99\51\50\71\54\51\53\79\88\51\49\87\88\50\49\98\50\54\73\50\51\81\50\53\82\50\90\54\50\52\66\50\49\66\51\50\70\119\50\53\56\50\53\110\50\103\109\50\50\81\50\49\56\50\53\55\50\52\113\49\50\50\54\55\51\53\122\105\51\53\49\52\50\49\70\50\51\55\51\54\56\118\50\55\98\51\54\56\88\51\53\122\50\51\53\101\117\51\54\57\76\51\53\101\122\51\53\48\98\51\53\102\50\50\73\51\51\53\68\87\51\54\101\88\51\53\118\112\51\53\48\77\51\53\111\116\51\53\100\90\50\50\51\51\54\56\76\51\53\100\90\51\54\48\97\51\52\122\102\51\53\113\52\51\53\78\80\51\54\57\87\51\54\68\83\51\53\105\102\51\54\100\86\51\54\49\56\51\53\115\55\51\53\73\107\51\54\49\66\51\54\100\90\51\53\115\98\51\54\49\69\51\53\115\69\50\50\120\51\52\73\82\51\51\108\116\50\50\122\50\49\118\51\49\76\100\51\53\103\111\51\53\54\97\51\53\71\73\51\53\81\69\49\54\49\57\51\54\66\77\51\51\55\82\51\54\51\104\51\53\71\84\51\54\66\83\49\55\51\53\82\50\51\54\66\118\51\54\51\81\51\54\98\88\51\53\104\51\51\54\51\116\51\54\67\48\51\54\51\118\51\53\114\48\51\54\99\51\51\53\55\57\51\54\52\48\51\53\119\88\51\54\67\55\51\53\104\104\51\54\67\97\51\53\114\97\51\53\104\76\51\50\80\74\51\54\67\71\51\54\52\65\51\53\104\83\51\50\112\106\51\54\99\77\51\54\52\69\49\49\51\53\104\90\51\53\114\80\51\53\56\55\51\54\53\109\51\53\70\67\50\50\118\51\49\52\113\51\50\110\88\51\54\54\56\51\54\103\67\51\54\49\114\51\53\82\86\51\51\55\97\51\53\115\109\51\54\72\77\51\53\109\50\51\53\76\71\51\53\74\86\51\53\52\109\51\54\48\102\51\54\48\73\51\53\105\122\51\53\115\88\51\53\83\90\51\54\48\112\51\53\70\109\51\53\116\52\51\53\83\55\51\52\53\80\51\49\99\99\51\54\48\118\50\53\56\49\120\51\53\78\79\51\50\78\87\51\49\52\113\51\50\78\104\50\49\115\51\54\56\105\51\54\101\78\51\50\78\109\51\54\100\48\51\52\90\111\51\54\65\50\51\53\84\110\51\53\106\53\51\54\65\53\51\54\50\56\51\53\52\48\51\50\79\71\51\53\106\67\51\50\82\110\51\53\74\57\51\53\100\71\51\54\50\102\51\53\85\52\51\53\117\54\51\54\50\105\51\54\57\90\51\53\52\99\50\51\73\51\53\70\84\51\54\50\80\51\53\85\102\51\51\56\98\51\53\53\85\51\53\52\77\51\53\52\107\51\50\84\88\51\53\70\77\51\54\50\88\49\85\51\52\105\82\51\51\100\49\51\53\116\69\51\54\69\107\51\53\56\65\51\54\69\55\51\54\52\112\51\53\50\98\51\54\109\83\51\53\75\72\51\54\76\83\51\53\102\105\51\53\107\109\51\54\101\103\51\54\53\56\51\54\52\89\51\54\77\119\51\53\116\103\51\51\98\68\51\54\53\49\51\53\118\100\51\54\69\112\51\53\75\89\51\54\53\55\51\54\69\84\51\51\99\85\51\54\53\69\50\53\82\51\54\56\82\50\105\51\51\53\76\57\51\54\69\90\51\54\53\103\51\53\57\78\51\53\98\53\51\54\102\97\51\54\54\98\51\53\97\84\51\53\65\85\51\53\77\103\51\54\54\104\51\54\98\78\51\52\90\70\51\54\55\104\51\54\74\52\51\53\100\78\51\52\89\117\51\53\88\88\51\53\68\51\51\53\68\53\51\53\110\67\51\54\56\54\51\53\57\51\51\53\120\84\51\50\110\72\51\54\107\115\49\48\51\54\54\116\51\54\55\70\51\50\82\66\51\52\90\102\51\53\88\79\51\54\54\114\51\54\104\104\49\49\51\50\79\71\51\53\74\107\51\54\103\108\51\50\78\72\51\53\89\84\51\54\103\81\51\53\77\54\51\53\66\65\51\54\55\83\51\53\87\77\51\54\71\87\51\53\109\101\51\53\53\109\51\54\78\115\51\54\70\70\51\54\56\51\51\53\98\83\51\53\119\120\51\53\109\48\51\54\108\52\51\53\66\90\51\53\99\107\51\54\80\50\51\54\54\51\51\53\111\57\51\51\70\89\51\50\82\110\51\54\55\55\50\50\51\51\54\55\57\51\53\110\107\51\54\71\101\51\50\78\72\51\54\52\108\51\53\111\51\51\53\67\48\51\50\85\108\51\54\55\50\51\53\97\49\51\50\80\98\51\51\76\85\51\52\122\102\51\54\74\104\51\54\103\100\51\53\78\49\51\53\85\121\51\54\56\66\51\54\111\73\51\54\51\105\51\51\103\52\51\53\65\65\51\53\97\99\51\54\53\82\51\53\76\103\51\53\108\105\51\53\68\108\51\54\71\54\51\50\111\49\51\54\108\51\51\53\68\113\51\54\104\80\51\53\111\82\51\54\73\122\51\53\80\57\51\53\122\49\51\53\69\57\51\53\57\101\51\53\49\52\51\53\112\84\51\51\109\83\51\54\105\119\51\53\80\57\50\68\57\51\49\51\101\50\51\50\50\50\51\50\52\114\50\49\101\50\50\76\50\51\80\51\54\105\110\51\53\122\54\51\54\57\79\51\54\73\82\51\53\50\49\51\53\73\116\51\53\79\90\51\53\69\50\51\54\104\84\51\54\57\49\51\53\122\81\51\53\122\83\51\53\112\113\51\53\102\51\51\53\70\53\51\52\122\70\50\50\114\51\51\113\107\51\53\102\67\50\51\69\51\54\100\69\50\65\84\51\52\70\51\51\50\110\72\50\51\57\51\52\70\51\51\54\69\101\51\52\121\117\51\54\49\52\51\52\89\85\51\53\105\72\51\52\57\109\51\54\106\66\51\53\73\109\51\53\73\79\51\54\74\102\51\54\49\103\51\54\104\103\51\53\51\70\51\54\48\81\51\53\115\116\51\49\73\73\51\54\48\73\51\53\53\73\51\54\48\108\50\50\101\49\57\51\54\48\112\51\53\75\48\51\54\76\70\51\53\71\48\51\51\70\52\51\54\108\106\51\53\53\88\51\51\68\71\51\54\49\78\50\87\48\51\54\49\112\51\54\49\74\50\54\75\51\53\53\52\51\51\55\97\51\54\103\110\51\53\78\50\51\54\51\52\51\53\103\68\51\54\66\103\50\49\54\51\54\66\73\51\53\54\57\51\53\103\109\51\53\103\111\51\50\112\105\51\54\51\70\51\54\74\118\51\54\66\114\51\53\103\118\51\54\51\89\51\54\75\48\51\53\81\116\51\54\51\112\51\53\104\50\51\54\51\115\51\51\103\118\51\53\72\54\51\54\107\55\51\54\51\121\51\54\67\52\51\54\75\65\51\50\85\53\51\54\75\99\51\54\67\57\51\50\113\53\51\54\107\70\51\54\67\101\51\54\107\72\51\54\52\57\51\54\67\73\51\54\52\66\51\54\67\76\51\54\52\100\51\54\67\111\51\54\107\111\51\54\52\71\51\54\75\113\51\54\52\106\51\54\49\119\51\54\53\50\50\122\87\50\50\97\51\53\84\75\51\54\97\49\51\53\74\50\51\54\76\88\51\54\65\57\51\54\65\54\51\54\109\53\51\53\84\112\51\54\97\65\51\54\77\52\51\53\52\48\51\50\81\72\51\54\65\101\51\50\111\49\51\54\50\71\51\54\65\104\51\53\85\55\51\53\53\73\51\54\65\77\51\53\115\90\51\54\109\70\51\54\65\115\51\54\113\50\51\53\115\114\51\54\50\85\51\50\82\121\51\53\75\48\51\54\50\88\50\49\56\51\54\50\122\51\51\55\52\51\53\52\87\51\53\56\83\51\54\53\54\51\51\56\53\51\54\52\79\51\51\66\116\51\53\75\68\51\54\103\71\51\54\78\55\51\53\86\50\51\54\77\83\51\54\53\50\51\53\105\51\51\53\116\103\51\54\78\51\51\53\117\87\51\53\118\57\51\54\110\54\51\54\77\89\51\54\53\50\51\53\86\101\51\53\57\51\51\54\69\113\51\53\107\122\51\54\69\83\51\54\52\82\51\54\110\101\51\54\56\113\51\53\76\55\51\54\78\74\51\52\90\68\51\54\102\48\51\53\50\66\51\53\115\103\51\54\55\78\51\54\111\79\51\50\117\88\51\54\111\81\51\54\71\118\51\53\109\100\51\53\66\75\51\54\111\117\51\53\110\88\51\54\110\84\51\54\104\49\51\53\77\108\51\54\102\79\51\54\55\77\51\53\77\111\51\54\80\72\51\50\116\81\51\53\111\54\51\54\72\65\51\53\99\82\51\53\97\49\51\50\113\112\51\54\68\103\50\50\51\51\54\54\81\51\53\118\89\51\52\69\72\51\53\106\107\51\54\111\54\50\50\51\51\54\111\56\51\54\78\90\51\54\71\48\51\53\108\117\51\54\118\122\51\53\67\107\51\54\55\50\51\53\99\67\51\53\57\51\51\54\115\57\51\53\79\102\51\54\78\120\51\53\68\103\51\54\103\57\51\53\105\83\51\53\73\117\51\53\65\53\51\54\55\74\51\53\100\79\51\54\80\82\51\53\78\53\51\51\104\100\51\53\106\107\51\51\71\98\51\52\122\70\50\50\72\50\119\68\51\54\101\69\51\54\70\75\51\54\87\73\51\51\70\109\51\54\70\49\51\53\86\120\51\53\78\52\51\53\68\56\51\53\121\65\51\50\112\98\51\54\55\102\51\50\110\104\51\54\78\119\51\54\71\50\51\54\82\115\51\54\113\48\51\54\100\65\51\54\81\51\50\50\51\51\54\102\80\51\54\111\110\51\54\70\98\51\54\110\113\51\53\65\86\51\54\86\116\51\54\79\87\51\53\75\82\51\53\76\83\51\54\119\105\51\54\56\72\51\53\79\113\51\51\80\75\51\54\104\83\51\53\48\104\51\53\48\74\51\51\98\116\51\53\90\75\51\53\122\80\50\55\66\51\53\90\82\51\53\101\101\51\54\48\54\51\54\81\113\51\54\57\110\51\53\112\112\51\53\49\53\51\54\57\51\50\101\48\51\53\90\72\51\53\69\103\51\54\113\56\51\54\57\52\51\54\81\116\51\53\50\50\51\53\90\49\50\50\109\50\70\74\50\52\69\50\49\86\50\54\53\50\54\74\49\83\49\120\50\51\50\50\54\65\49\55\50\52\107\50\49\105\50\54\112\51\53\113\50\51\54\109\115\51\53\70\107\51\50\82\48\51\54\76\83\51\53\52\97\51\51\100\52\51\54\50\51\51\54\86\56\51\53\106\52\51\54\84\119\51\54\77\48\50\106\78\51\54\85\51\51\54\50\98\51\54\117\49\50\81\69\51\53\106\71\51\54\65\102\51\53\85\51\51\54\50\104\51\53\52\57\51\53\84\106\51\54\77\67\50\50\100\49\65\51\54\117\67\51\52\56\55\51\53\115\115\51\54\67\88\51\54\48\72\51\50\82\89\51\53\53\85\51\54\50\88\51\53\52\116\51\51\55\97\51\53\120\114\51\50\78\72\51\54\118\107\51\53\108\71\51\54\50\83\51\53\117\105\51\51\102\52\51\54\48\105\51\54\116\82\51\53\115\88\50\50\108\49\50\51\54\48\112\51\53\53\85\51\54\115\51\51\53\116\54\51\53\53\84\51\51\67\117\51\54\108\106\49\51\51\51\118\99\51\50\78\114\51\54\54\109\51\50\78\104\51\53\107\56\51\54\49\114\50\50\55\51\53\117\80\49\53\51\54\88\48\51\53\50\66\50\50\75\51\51\73\55\51\54\82\103\51\54\74\54\51\54\100\117\51\54\82\75\51\53\105\106\51\54\68\89\51\54\82\79\51\54\101\50\50\50\51\51\53\51\97\51\54\51\52\51\53\54\54\51\54\66\103\51\51\79\57\51\53\113\69\51\53\54\103\51\54\106\84\51\53\81\74\51\52\121\117\51\54\106\87\51\54\115\117\51\54\51\76\51\53\113\115\51\54\51\111\51\53\54\85\51\54\98\89\51\53\72\52\51\54\84\50\51\53\72\56\51\54\106\120\51\54\67\53\51\54\84\56\51\53\114\56\51\54\116\98\51\54\52\56\51\53\114\69\51\50\83\53\51\54\107\75\51\53\104\85\51\53\114\75\51\54\119\103\51\54\107\112\51\54\67\115\50\50\51\50\51\56\51\51\118\67\51\53\70\99\51\53\73\55\51\52\109\115\51\54\79\48\51\54\49\119\51\54\85\82\51\54\110\52\51\50\78\72\51\54\117\85\51\53\75\72\51\54\85\122\51\54\69\66\51\54\117\87\51\54\118\48\51\54\52\120\51\54\86\50\51\54\104\52\51\54\88\74\51\54\69\111\51\53\86\102\51\54\53\53\51\54\101\82\51\54\117\86\51\52\122\118\51\54\118\99\51\53\118\77\51\53\118\77\51\53\86\81\51\54\118\102\51\53\86\84\51\52\90\70\50\49\86\51\51\102\52\51\53\121\105\51\51\67\76\51\54\87\49\51\53\89\76\51\53\79\55\51\54\54\52\50\80\120\51\52\73\82\51\50\113\80\51\53\78\56\51\50\78\72\51\54\79\69\51\54\87\97\51\54\79\66\51\54\87\98\51\53\121\98\51\53\68\68\51\54\119\118\51\54\112\68\50\50\51\51\54\80\111\51\54\102\74\51\53\121\55\51\54\120\50\50\56\54\51\55\48\87\51\50\110\104\51\55\48\89\51\55\50\108\51\54\114\83\51\54\103\52\51\54\50\105\51\53\108\104\51\53\68\110\51\53\105\65\51\54\53\105\51\55\51\111\51\53\110\49\51\54\87\57\51\54\111\51\51\54\72\101\51\52\48\79\51\52\90\102\51\54\119\102\51\53\78\81\51\52\116\53\51\53\97\48\51\53\76\114\51\54\88\52\51\54\75\89\51\54\118\76\51\54\102\98\51\53\120\68\51\54\78\114\51\53\119\82\51\53\119\116\51\53\88\105\51\53\50\98\51\55\52\74\51\54\55\97\51\53\68\56\51\55\51\107\51\55\50\68\51\52\90\56\51\53\119\54\51\55\51\56\51\54\102\83\51\53\77\114\49\52\51\54\54\111\51\51\119\51\51\54\120\65\51\54\78\110\51\54\103\114\51\53\119\73\49\50\51\54\118\111\51\53\109\67\51\54\55\119\51\53\87\80\51\54\118\83\51\53\120\103\51\54\88\118\51\51\48\51\51\54\79\121\51\54\111\52\51\55\52\53\51\54\81\53\51\54\89\48\50\55\55\51\54\121\99\51\53\112\111\51\50\54\49\51\54\113\103\51\54\56\110\51\54\89\75\51\53\48\88\51\54\89\50\51\50\71\53\51\54\121\52\50\105\51\51\49\107\79\49\106\50\111\83\50\52\69\50\53\121\50\51\75\49\76\50\49\81\50\50\53\50\51\115\50\52\107\49\80\51\50\65\52\49\73\50\53\86\50\50\68\50\53\73\51\53\79\88\51\54\81\65\51\54\73\69\51\54\121\77\50\51\48\51\54\82\50\51\51\66\116\50\49\56\50\51\48\51\54\57\114\51\54\118\120\51\53\105\53\50\51\48\51\51\99\117\51\50\82\48\51\51\115\110\51\52\122\70\50\51\72\51\52\78\85\51\54\53\110\51\53\115\50\51\54\82\74\51\54\49\55\51\54\114\76\51\55\49\53\51\54\69\48\51\53\115\67\51\53\115\69\51\54\52\86\51\53\56\107\51\51\66\103\50\51\52\51\51\109\48\51\50\110\114\51\53\121\122\51\50\110\72\50\49\119\51\51\102\102\51\54\57\86\51\54\86\50\51\54\90\55\51\53\117\56\51\53\57\55\51\54\65\114\51\54\50\52\51\54\122\67\51\54\116\122\51\54\116\88\51\53\52\48\51\53\85\48\51\54\90\104\51\53\51\90\50\106\78\51\54\50\69\51\54\122\108\51\54\85\54\51\54\77\57\51\54\90\111\51\53\106\110\51\54\65\77\51\53\53\108\51\54\90\84\51\52\108\122\51\54\77\75\51\54\48\71\51\50\116\120\50\49\117\51\51\68\52\51\54\50\88\51\54\115\55\51\51\55\114\51\53\65\74\51\55\50\104\51\54\54\121\50\50\90\50\50\54\51\53\71\110\51\54\106\110\51\53\82\88\51\54\115\112\51\53\54\69\49\66\51\53\103\74\51\54\51\69\51\54\66\78\51\54\115\83\51\54\51\74\51\54\106\121\51\54\115\118\51\54\51\77\51\54\115\120\51\55\49\111\51\54\107\51\51\54\84\49\51\54\99\49\51\54\84\51\51\55\49\116\51\54\116\54\51\53\114\53\51\53\104\102\51\54\75\100\51\54\116\97\51\54\67\99\51\53\114\98\51\54\67\70\51\54\84\69\51\55\50\48\51\54\99\75\51\54\107\108\51\54\84\73\51\55\50\52\51\54\116\76\51\55\50\54\51\54\103\80\51\53\53\66\51\53\116\56\51\53\52\109\51\54\50\115\51\54\48\105\51\53\106\110\51\54\48\76\51\54\100\50\51\54\48\80\51\55\56\98\51\54\48\114\51\54\108\71\50\50\99\51\55\57\119\51\53\116\57\50\49\72\51\53\84\51\49\56\51\53\53\55\51\53\50\66\51\53\53\57\51\53\107\57\51\54\109\85\51\54\117\115\51\54\86\51\51\55\52\107\51\54\112\121\51\54\78\48\51\54\117\78\51\53\57\65\51\54\86\48\51\55\50\112\51\53\56\120\51\53\56\57\51\54\118\54\51\54\78\97\51\54\85\112\51\52\90\115\51\53\86\54\51\54\110\100\51\55\50\90\51\54\53\97\51\51\98\84\51\54\118\71\51\49\107\110\51\50\72\54\51\54\53\103\51\54\114\114\51\53\67\105\51\54\119\48\51\55\53\49\51\51\51\77\51\54\72\106\50\56\54\51\54\108\50\50\50\51\51\54\72\110\51\53\65\68\51\53\121\55\51\54\112\77\50\56\54\51\54\120\57\51\53\50\66\51\54\102\50\51\54\55\97\51\51\102\75\51\53\52\86\50\56\54\51\55\51\85\51\50\110\72\51\55\52\116\51\55\52\76\51\54\78\112\51\53\111\55\51\54\120\116\51\53\66\111\51\54\88\118\51\53\75\68\51\55\51\114\51\54\112\67\51\55\52\56\51\53\109\110\51\54\119\71\51\54\80\110\51\54\74\73\51\54\88\67\49\49\51\55\98\72\50\55\66\51\51\78\55\51\53\57\109\51\53\57\79\51\54\80\121\51\54\88\77\51\53\120\53\51\55\52\52\50\50\51\50\50\54\51\49\55\75\51\55\52\108\51\53\119\72\51\54\86\110\51\53\109\57\51\54\111\82\51\54\86\113\51\53\116\48\51\53\98\77\51\54\120\85\51\54\72\48\51\55\53\105\51\54\56\53\51\54\72\51\51\53\50\66\51\55\67\67\51\55\97\67\51\55\65\78\51\54\71\106\51\53\88\81\51\52\54\50\51\54\55\53\51\55\50\81\51\54\53\74\51\55\51\112\51\54\108\81\51\54\112\71\51\54\112\51\51\54\119\50\51\53\121\110\49\53\51\54\54\111\51\50\81\112\51\54\70\78\51\50\110\72\51\54\120\112\51\53\56\116\51\53\121\120\51\53\68\116\51\53\49\48\51\54\82\48\49\110\50\50\54\51\49\118\49\50\50\109\50\53\89\50\49\69\50\50\50\50\51\48\50\49\76\50\53\48\50\49\101\50\51\87\51\54\56\84\50\54\121\50\53\112\50\51\115\50\52\99\50\49\109\50\54\107\51\53\49\52\50\49\99\50\51\52\51\54\105\73\50\68\65\51\53\69\55\51\53\112\53\51\51\101\116\51\53\48\116\51\53\122\70\51\53\48\88\51\55\53\112\51\53\122\55\51\54\89\103\49\57\51\54\121\105\51\52\90\100\51\54\104\82\51\54\113\87\51\53\90\98\51\54\89\51\51\54\57\80\51\54\73\84\51\55\54\48\51\53\48\90\50\49\81\51\53\81\50\50\50\81\51\51\112\81\51\53\70\99\50\68\117\51\53\88\98\51\52\73\114\51\50\78\104\51\55\66\84\51\53\54\52\51\54\51\54\51\55\56\77\51\52\52\121\51\53\113\101\51\54\51\68\51\54\115\113\51\55\56\116\51\54\98\80\51\54\112\85\51\54\74\120\51\54\74\90\51\55\56\121\51\55\49\110\51\53\103\122\51\55\57\49\51\54\51\85\51\53\113\122\51\55\49\83\51\53\104\65\51\55\57\54\51\54\99\54\51\54\115\89\51\54\52\51\51\54\75\69\51\55\57\66\51\54\75\71\51\53\104\110\51\55\49\122\51\53\82\103\51\54\52\99\51\55\50\51\51\55\52\72\51\55\50\53\51\54\52\105\51\50\78\104\51\55\50\56\51\55\99\84\51\54\90\53\51\51\103\57\51\55\49\49\51\55\55\50\51\54\100\119\51\52\57\65\51\54\114\109\51\54\49\67\51\55\55\55\51\54\49\103\51\53\117\89\51\53\70\119\51\52\109\56\51\55\52\49\51\55\48\97\51\49\55\75\51\54\48\108\51\52\48\48\51\54\48\112\51\53\116\56\51\55\48\104\51\54\48\116\51\52\78\65\49\97\51\52\90\49\51\55\48\77\51\51\68\103\51\55\56\103\51\53\86\51\51\53\117\118\51\55\55\76\50\50\57\51\49\73\105\51\54\90\97\51\54\97\51\51\54\76\89\51\53\116\81\51\54\122\105\51\50\81\85\51\54\109\51\51\55\55\119\51\53\106\65\51\54\90\107\51\54\117\53\51\54\109\56\51\54\97\73\51\55\48\66\51\53\117\97\51\53\117\67\51\54\65\113\51\54\50\81\51\51\56\66\51\54\90\86\49\53\51\54\76\72\51\50\116\88\51\53\85\108\49\55\51\53\53\119\51\54\99\119\49\53\51\54\104\67\51\50\78\104\51\54\103\66\51\54\49\82\51\55\54\84\51\51\100\103\51\54\56\101\51\53\88\56\51\51\79\54\51\55\50\70\51\55\65\105\51\54\52\83\51\55\65\100\51\53\87\51\51\54\111\70\51\54\110\49\51\53\107\79\51\55\50\79\51\54\69\57\51\54\110\53\51\55\67\84\51\55\65\76\51\55\50\84\51\54\118\57\51\54\78\67\51\55\50\89\51\55\97\115\51\54\110\105\51\54\105\116\51\55\51\48\51\55\97\119\51\55\67\90\51\54\122\55\51\54\81\50\51\53\76\106\51\55\52\49\51\53\68\50\51\53\79\78\51\54\87\65\51\54\70\78\51\50\108\84\51\53\110\69\51\53\50\66\51\55\49\57\51\54\72\53\51\54\70\82\51\54\104\56\51\54\80\53\51\53\67\114\51\55\65\53\51\50\81\112\51\54\70\54\51\50\110\72\51\54\70\56\51\54\68\114\51\54\53\111\51\53\50\98\51\54\79\77\51\55\98\56\51\51\78\108\51\54\103\76\51\50\79\79\51\55\51\52\51\55\51\54\51\54\71\104\51\54\78\89\51\54\77\89\51\54\54\65\51\53\97\82\51\54\54\68\51\55\52\79\51\54\71\90\51\53\87\85\51\53\75\100\51\55\106\67\51\55\100\48\51\53\110\49\51\55\98\108\51\54\79\51\51\55\66\99\51\50\108\84\51\55\72\120\51\53\48\75\51\54\72\56\51\53\87\56\51\49\100\119\50\87\100\51\50\76\84\51\54\70\119\51\53\50\66\51\54\102\89\51\55\52\85\51\50\71\51\51\50\55\116\51\54\55\86\51\54\111\68\51\53\78\98\51\53\77\65\51\54\70\97\51\53\87\72\51\54\55\114\51\55\99\72\51\54\118\112\51\54\55\87\50\98\121\51\54\103\89\51\54\56\49\51\53\119\117\51\55\67\111\51\54\72\50\51\53\87\121\51\55\73\115\51\55\106\85\51\53\88\77\51\55\65\55\51\54\104\79\51\55\53\78\50\49\56\51\54\121\111\51\55\53\117\51\55\69\102\51\55\54\74\50\73\51\50\49\68\50\51\53\50\51\48\51\55\69\99\51\54\113\83\51\55\53\122\51\49\107\80\51\55\54\77\51\53\122\110\51\54\113\117\51\53\111\120\51\55\53\87\51\50\71\54\51\55\69\69\51\50\98\76\50\66\71\50\49\122\50\55\50\50\51\107\50\52\57\50\51\53\50\51\80\50\49\57\50\55\48\50\51\104\50\53\53\49\87\50\52\101\50\54\87\50\53\120\50\53\116\50\49\70\51\51\86\88\51\52\90\70\51\55\107\85\51\54\100\74\51\54\68\108\49\53\51\54\68\78\51\53\50\98\51\54\100\112\51\55\71\49\51\54\57\119\51\54\116\80\51\53\53\72\51\54\90\57\51\54\84\116\51\53\116\109\51\54\50\53\51\55\104\49\51\51\98\118\51\54\122\101\51\52\72\76\51\50\50\86\51\53\84\118\51\53\116\120\51\54\65\55\50\74\110\51\50\111\51\51\55\104\56\51\54\97\71\51\55\56\49\51\53\106\108\51\54\76\65\51\53\85\97\51\54\50\79\51\55\72\70\51\54\77\71\51\54\88\109\51\54\117\102\51\50\84\120\51\54\50\115\51\55\56\68\51\55\72\112\51\54\66\50\51\52\122\102\51\54\66\53\51\54\51\52\50\50\55\49\53\51\54\115\107\51\54\115\77\51\53\54\101\49\65\49\53\51\55\49\71\51\54\98\79\51\55\49\73\51\54\83\84\51\54\56\51\51\55\102\66\51\55\49\109\51\53\104\48\51\54\83\121\51\53\81\118\51\55\49\113\51\55\57\51\51\55\102\73\51\54\56\51\51\55\49\117\51\55\70\77\51\54\67\56\51\55\49\87\51\55\70\80\51\54\84\99\51\55\70\82\51\54\99\72\51\55\57\102\51\55\70\85\51\54\99\78\51\55\57\74\51\54\99\81\51\54\52\72\51\53\56\55\51\54\69\52\51\54\67\117\51\54\76\54\51\55\72\74\51\53\106\90\51\55\48\57\51\50\82\55\51\54\109\98\51\53\53\74\51\54\48\77\51\54\48\79\51\54\68\52\51\54\50\83\51\55\103\109\51\54\100\57\50\50\67\51\54\50\115\51\54\108\74\51\54\65\90\51\51\100\71\51\54\119\55\51\55\52\57\51\51\66\103\51\54\98\56\51\51\100\103\51\55\66\72\51\55\65\69\51\51\111\54\51\55\103\52\51\53\83\52\51\55\71\54\51\53\50\121\51\54\74\99\51\55\49\54\51\54\49\102\51\55\105\50\51\54\109\84\51\53\107\66\51\55\105\49\51\53\68\80\51\53\120\49\51\53\107\106\51\54\71\103\51\55\56\104\51\55\65\67\51\54\86\49\51\55\73\57\51\55\112\98\51\55\105\99\51\54\118\56\51\54\110\66\51\54\55\53\51\55\50\119\51\53\84\77\51\53\56\81\51\54\118\68\51\53\112\87\51\54\118\102\51\55\101\110\51\55\105\76\51\55\48\120\51\55\48\122\51\55\80\51\51\55\106\97\51\54\71\111\51\53\78\51\51\54\54\116\51\54\51\49\51\55\99\89\51\55\65\106\51\55\100\51\51\50\115\117\51\55\68\53\51\55\51\99\51\54\103\76\51\50\81\80\51\55\48\51\51\53\83\102\51\55\67\120\51\55\106\74\51\54\56\97\51\53\110\53\51\55\51\75\51\55\55\70\50\50\51\51\55\55\72\51\55\113\65\51\54\80\105\51\55\53\50\51\55\98\67\51\53\89\51\51\53\50\66\51\53\121\53\51\54\88\81\51\55\66\110\51\54\54\101\51\55\98\113\51\54\104\48\51\53\75\100\51\55\57\77\51\55\67\55\51\55\105\111\51\54\113\49\51\53\120\54\51\53\68\111\51\53\87\69\51\55\67\69\51\54\55\112\51\54\111\80\51\55\75\107\51\55\53\67\51\53\77\55\51\53\87\113\51\55\114\48\51\55\107\81\51\54\56\52\51\55\75\115\51\53\57\119\51\53\57\89\51\55\98\85\51\53\120\109\51\55\74\84\51\54\56\98\51\55\80\100\51\55\48\80\50\50\51\51\55\48\82\51\55\114\78\51\53\100\50\51\55\66\69\51\53\76\118\51\55\77\78\51\55\50\103\51\54\53\72\51\55\65\67\51\54\120\122\51\53\121\89\51\53\79\114\51\55\76\74\50\116\48\49\57\50\49\116\50\50\66\50\49\104\51\51\118\103\50\49\53\50\50\53\50\49\57\50\54\53\51\53\69\85\51\53\101\100\51\53\101\70\51\53\57\85\50\50\81\51\54\113\86\50\55\66\51\53\112\48\51\54\104\116\51\55\53\89\51\55\54\110\51\55\76\49\51\55\69\56\51\53\69\81\51\54\56\109\51\54\121\72\51\54\86\69\51\55\54\107\51\55\108\57\49\57\50\50\106\51\53\81\50\51\54\49\50\51\54\49\82\50\51\72\51\51\104\106\51\50\110\82\50\49\110\51\52\55\108\51\53\50\98\50\51\55\51\55\116\57\51\55\74\57\51\55\55\49\51\55\112\53\51\54\106\57\51\54\100\120\51\55\112\56\51\55\55\54\51\54\114\112\51\55\70\90\51\55\50\57\51\53\108\71\51\54\48\102\51\53\52\109\51\55\71\70\51\55\111\105\51\53\117\57\51\54\48\108\51\53\74\113\51\54\76\68\51\49\67\67\51\55\111\112\51\55\72\107\51\53\116\57\51\55\56\101\51\51\100\78\51\51\104\74\51\50\110\104\51\53\78\73\51\54\51\52\51\54\106\76\51\54\98\103\51\54\74\112\51\54\98\106\51\54\74\82\51\55\78\74\51\55\56\85\51\53\114\108\51\54\66\84\51\53\81\114\51\54\116\54\51\55\102\68\51\54\51\81\51\55\102\70\51\54\75\53\51\55\102\72\51\54\51\120\51\55\57\53\51\55\75\83\51\55\49\86\51\54\52\52\51\50\115\53\51\55\102\81\51\54\107\105\51\54\84\70\51\55\50\49\51\54\75\77\51\54\116\106\51\55\102\120\51\53\56\55\51\54\84\79\51\53\88\50\51\54\48\74\51\55\112\114\51\54\108\119\51\55\77\105\51\54\122\68\51\55\72\51\51\54\90\71\51\54\85\48\51\55\72\54\51\53\51\87\51\54\117\52\51\55\77\117\51\54\65\73\51\53\117\57\51\55\56\52\49\55\51\55\56\54\51\51\55\55\51\55\79\69\51\53\84\55\51\51\101\84\51\53\106\121\51\54\77\109\51\55\104\78\51\50\109\48\51\51\118\99\51\55\86\66\51\54\57\115\51\55\103\118\51\54\109\121\51\55\71\50\51\51\66\103\51\55\104\86\51\51\55\114\51\54\88\71\51\54\79\49\51\55\65\56\51\55\80\100\51\55\112\109\51\55\71\85\51\55\65\67\51\55\50\75\51\55\112\71\51\55\50\77\51\55\97\103\51\54\101\73\51\53\79\108\51\55\118\48\51\52\122\75\51\55\65\77\51\55\50\118\51\54\52\119\51\55\105\103\51\54\69\118\51\55\73\104\50\77\50\51\55\80\89\51\53\57\108\51\54\101\102\51\54\117\111\51\55\52\70\51\55\52\55\51\53\88\109\51\55\52\57\51\55\73\78\51\54\48\70\51\55\99\57\51\54\53\86\51\55\82\88\51\55\107\118\51\53\68\50\51\54\112\98\51\55\81\50\51\52\121\118\51\52\122\70\51\55\100\67\51\54\69\108\51\51\66\84\51\54\56\66\51\53\65\49\51\55\113\117\51\54\87\84\51\54\70\51\51\55\51\85\51\52\51\106\51\54\56\55\51\54\53\89\51\54\79\57\51\53\89\55\51\54\102\78\51\50\79\75\51\52\90\102\51\55\82\51\51\54\112\50\51\55\81\98\51\51\79\57\51\55\74\50\49\53\51\53\89\65\51\50\81\80\51\55\66\51\51\54\108\112\51\54\108\114\51\55\74\109\51\53\78\117\51\55\52\111\51\55\114\104\51\55\52\114\51\55\100\66\51\54\86\121\51\55\107\103\51\55\53\56\51\55\67\103\51\54\71\85\51\55\82\69\51\54\111\84\51\54\55\90\51\55\89\48\51\53\109\106\51\55\114\107\51\55\66\68\51\54\120\98\51\55\120\78\51\55\81\82\51\51\51\77\51\55\53\52\51\53\76\50\51\55\87\55\51\55\114\121\51\55\120\100\51\51\120\104\51\52\122\102\51\55\97\89\51\50\112\65\51\55\100\69\51\54\56\106\51\55\87\107\51\54\105\85\49\74\51\49\119\88\51\50\53\56\51\50\49\77\50\53\102\50\49\106\50\54\101\49\72\50\52\54\50\53\57\51\50\77\116\50\53\112\50\54\66\49\111\50\53\67\51\49\69\82\50\51\122\50\53\114\51\55\108\50\51\55\69\103\51\55\54\110\51\55\108\72\51\55\115\81\51\50\103\56\51\54\73\72\51\54\89\111\51\54\73\77\51\51\70\70\51\53\48\52\51\53\112\108\51\54\73\111\51\49\79\83\51\55\53\114\51\54\89\56\51\53\100\122\51\55\122\70\49\48\51\53\90\111\51\53\101\68\50\50\107\51\53\81\50\51\55\98\55\51\54\115\67\50\50\120\51\51\68\77\49\56\51\53\107\100\51\55\109\52\50\54\75\50\51\54\51\51\57\104\51\55\54\87\51\53\50\66\51\55\54\121\51\54\56\57\51\53\78\84\50\50\90\51\51\50\53\51\54\66\103\50\49\56\51\55\110\73\51\54\98\74\50\113\86\51\55\117\98\51\55\70\56\51\55\49\74\51\55\78\78\51\55\56\88\51\55\78\112\51\54\107\50\51\54\116\48\51\55\70\103\51\54\99\50\51\54\84\52\51\54\107\57\51\55\85\111\51\55\78\89\51\55\57\57\51\53\55\105\51\55\111\49\51\55\49\121\51\55\79\52\51\55\70\84\51\54\84\104\51\55\102\86\51\53\108\113\51\55\117\121\51\54\116\78\51\53\98\119\51\54\101\77\51\55\80\52\51\54\49\54\51\55\112\54\51\54\49\97\51\54\82\78\51\55\116\74\51\55\49\55\51\54\85\117\51\55\77\100\51\49\113\72\51\55\118\51\51\54\84\85\51\55\118\53\51\55\55\114\51\55\109\76\51\55\55\85\51\55\86\57\51\53\84\121\51\55\104\52\51\55\118\67\51\54\90\109\51\54\85\55\51\54\77\97\50\50\76\51\49\99\67\51\54\65\109\51\54\68\50\51\55\86\105\51\54\109\104\51\55\54\85\51\55\111\70\51\53\84\56\51\53\74\89\51\52\101\75\51\54\50\120\50\49\79\51\56\50\55\51\55\105\119\51\53\51\57\51\53\51\66\51\53\76\103\51\55\104\73\51\54\53\117\51\50\90\89\50\49\89\51\56\50\49\51\53\83\88\51\53\52\101\51\54\48\80\51\52\69\107\51\55\84\120\51\55\52\51\51\54\68\98\51\55\85\48\49\56\51\55\67\81\51\50\110\104\51\55\99\115\51\51\66\81\51\55\73\48\51\55\87\52\51\54\101\107\51\55\80\110\51\53\108\70\51\55\112\66\51\55\119\104\51\55\119\66\51\54\98\66\51\54\114\71\51\55\80\111\51\53\118\103\51\54\101\82\51\54\53\56\51\54\101\85\51\55\115\120\51\54\113\67\51\53\118\83\51\54\53\71\51\55\106\84\51\55\52\122\51\55\113\66\51\55\51\97\51\54\119\51\49\53\51\53\88\114\51\53\72\56\51\55\53\54\51\51\98\81\51\54\119\83\51\54\83\72\51\54\72\53\51\53\89\106\51\54\55\49\51\55\53\50\51\54\51\49\51\53\121\109\51\55\109\51\51\55\52\54\51\55\120\120\51\55\53\57\51\54\54\69\51\55\53\103\51\55\82\49\51\53\111\108\51\55\120\49\51\55\119\114\51\53\100\50\51\55\48\53\51\55\66\120\51\55\51\109\51\54\70\51\51\55\107\55\51\50\108\84\51\54\119\100\51\55\52\69\51\54\71\105\49\51\51\54\54\84\51\53\121\97\51\52\66\69\50\119\100\51\55\98\107\51\54\120\53\51\55\114\52\51\54\120\108\51\54\67\118\51\54\53\118\51\55\89\113\51\54\56\98\51\53\111\100\51\55\107\100\51\53\110\57\51\53\78\66\51\53\121\48\49\49\51\56\52\104\51\53\121\56\51\55\81\57\51\54\88\113\51\53\87\72\51\53\119\74\51\55\114\100\51\54\55\86\51\53\120\99\51\55\48\101\51\55\53\102\51\55\52\113\51\55\89\99\51\54\118\87\51\50\110\72\51\55\89\81\51\55\112\83\51\55\89\114\51\54\81\54\51\55\73\75\49\106\51\55\54\73\51\55\54\75\51\55\76\72\50\50\71\51\55\115\104\51\55\100\104\50\50\54\51\55\76\50\50\50\51\51\55\115\122\51\54\73\113\51\56\51\72\50\105\51\50\49\97\50\51\50\51\54\81\70\51\55\90\84\51\53\112\57\51\50\101\98\51\54\90\50\50\53\53\50\54\105\50\49\54\50\49\118\50\50\55\50\52\115\50\53\117\50\50\120\51\54\57\107\50\85\54\49\65\51\52\50\76\51\53\89\52\51\53\73\85\51\52\57\114\51\54\97\85\51\55\79\72\50\122\119\51\55\109\88\51\54\48\76\51\53\102\116\51\56\50\81\50\56\54\51\56\50\115\51\52\69\75\51\54\108\74\50\49\102\51\51\70\102\51\53\71\54\51\54\112\86\50\50\51\51\53\71\57\51\54\49\82\50\50\72\51\54\98\48\51\53\98\71\51\55\99\90\51\51\98\103\51\53\102\101\51\51\100\71\50\49\111\51\51\118\99\51\55\84\108\51\54\51\52\51\56\48\104\51\55\56\77\49\119\51\54\106\115\51\56\48\108\51\50\113\53\51\55\102\54\51\54\106\85\51\56\48\111\51\55\110\109\51\51\57\115\51\55\110\111\51\55\85\71\51\55\110\113\51\55\57\48\51\56\48\117\51\55\85\107\51\56\48\87\51\55\85\78\51\54\52\49\51\56\49\48\51\54\116\57\51\56\49\50\51\55\117\82\51\55\111\50\51\55\117\84\51\55\79\53\51\56\49\55\51\55\79\55\51\55\70\119\51\55\57\75\51\55\70\121\51\55\81\111\51\55\55\105\51\55\99\55\51\54\97\74\51\51\100\120\51\55\103\122\51\54\84\118\51\56\49\82\51\55\104\51\51\50\82\54\51\55\104\53\51\56\49\118\51\55\55\121\51\55\72\57\51\54\122\78\51\55\109\119\51\51\101\116\51\54\117\65\51\55\109\110\51\53\52\104\51\55\110\49\50\50\99\51\55\56\56\51\54\76\55\51\51\99\76\51\56\50\65\50\56\54\51\54\50\88\51\55\65\50\51\51\55\97\50\49\73\51\51\84\114\51\54\101\51\51\54\101\53\51\55\120\50\51\54\114\73\51\55\116\70\51\55\55\52\51\55\84\73\51\54\74\101\51\55\49\55\51\55\114\51\51\55\65\110\51\54\122\54\51\54\109\89\51\56\51\49\51\54\120\119\51\54\77\120\51\54\101\77\51\54\85\121\51\55\73\52\51\55\65\70\51\55\50\88\51\56\51\56\51\56\53\55\51\55\50\114\51\54\53\51\51\55\105\68\51\55\80\81\51\55\65\79\51\52\122\68\51\55\65\81\51\55\89\85\51\54\101\87\51\56\51\103\51\51\98\116\51\54\118\73\51\54\67\84\51\55\55\48\51\54\79\48\51\54\103\103\51\54\56\98\51\54\112\55\51\53\57\51\51\55\100\97\51\54\120\111\51\55\89\51\51\53\119\103\51\55\82\66\51\55\75\74\51\55\121\55\51\56\53\99\51\54\55\120\51\55\107\79\51\54\86\117\51\55\107\114\51\56\53\105\50\50\51\51\55\74\87\51\55\75\50\51\55\121\104\49\52\51\54\104\67\51\50\112\66\51\53\82\121\51\53\87\68\51\55\114\77\51\55\81\106\51\50\111\49\51\54\56\98\51\54\72\69\51\50\80\66\51\55\81\71\51\55\48\53\51\54\54\84\51\55\112\68\51\55\52\88\51\55\51\122\51\53\53\98\51\55\52\49\51\53\76\74\51\54\48\102\51\53\68\50\51\55\74\87\51\56\52\66\51\53\68\79\51\55\107\117\51\55\89\52\51\53\88\98\51\54\70\99\51\55\106\112\51\55\107\80\51\55\121\49\51\55\119\53\51\55\75\97\51\56\98\54\49\50\51\54\87\77\51\55\88\66\51\56\51\84\51\54\87\119\51\55\72\115\51\53\77\89\51\56\97\86\51\54\119\49\51\54\54\50\51\55\51\66\51\53\79\57\51\53\67\118\51\50\81\112\51\54\102\108\51\50\78\72\51\54\103\49\51\55\120\54\51\55\53\77\51\55\115\52\51\53\86\109\51\54\73\71\51\55\108\56\51\55\90\110\51\53\101\88\51\54\57\109\51\53\80\111\51\56\54\48\51\55\54\78\51\55\69\101\51\55\90\86\51\54\73\85\51\54\110\104\51\55\122\119\51\54\113\85\51\49\87\88\50\51\110\50\52\66\50\50\66\50\55\49\50\49\66\50\52\75\50\51\100\50\52\65\50\50\48\50\52\74\50\53\69\49\122\50\49\80\50\50\84\51\49\48\121\50\98\50\50\49\49\50\49\51\51\56\53\83\51\53\111\88\51\53\101\117\51\56\53\120\51\53\122\49\51\53\50\57\51\52\90\70\51\55\68\50\51\54\119\81\51\51\57\66\51\56\49\101\51\54\74\56\51\56\57\70\51\56\49\105\51\56\57\72\51\55\80\97\50\50\51\51\55\113\87\51\56\57\88\51\53\51\103\51\53\51\73\51\55\77\71\51\55\55\112\51\54\65\52\51\55\72\50\51\55\104\54\51\50\111\57\51\56\56\111\51\55\77\81\49\52\51\51\48\51\51\55\77\116\51\56\49\89\51\55\77\118\50\122\87\50\50\70\51\51\99\85\51\54\97\109\51\53\52\101\51\56\50\53\51\55\78\50\51\55\111\102\51\55\57\81\51\50\82\89\51\55\65\48\51\54\50\88\51\53\75\51\51\51\55\65\51\53\56\117\51\55\89\108\51\53\108\103\51\53\117\72\51\55\79\102\51\53\74\86\51\54\48\73\51\56\69\100\51\53\115\88\51\54\48\78\51\55\57\86\51\51\68\52\51\56\50\115\51\55\97\48\51\54\76\106\49\80\51\51\84\85\51\54\48\90\51\53\54\49\51\53\54\51\51\56\53\76\51\51\98\71\51\54\108\48\51\51\55\82\51\55\107\48\51\53\105\53\51\53\50\72\51\51\85\53\51\54\75\120\51\54\66\99\51\55\56\75\51\54\66\103\51\53\54\99\51\54\66\106\51\55\56\81\51\56\48\110\51\55\110\108\51\55\56\86\51\56\55\84\51\55\49\79\51\56\48\116\51\54\98\90\51\55\49\114\51\55\85\109\51\55\70\106\51\56\48\90\51\53\82\56\51\56\49\49\51\54\67\66\51\56\56\53\51\56\49\52\51\54\107\106\51\55\57\103\51\55\50\50\51\56\56\97\51\56\49\57\51\56\56\67\51\53\56\55\51\55\82\85\51\55\104\122\51\55\97\57\51\55\115\48\51\55\119\68\51\53\118\50\51\54\101\71\51\56\53\108\51\55\112\50\51\55\80\108\51\54\88\87\51\56\71\71\51\53\107\86\51\56\57\122\51\55\65\110\51\53\76\48\51\55\65\80\51\55\87\73\51\55\108\52\51\55\73\73\51\53\70\51\51\55\119\78\51\53\86\118\51\54\120\98\51\54\54\116\51\55\106\102\51\55\97\115\51\53\117\83\51\54\112\112\51\53\88\77\51\56\100\108\51\54\82\71\51\56\51\117\51\56\52\100\51\56\52\52\51\54\88\115\51\53\110\87\51\55\121\98\51\54\78\117\51\55\106\98\51\53\114\116\51\54\111\51\51\55\88\57\51\55\89\79\51\54\104\102\51\54\49\105\51\55\87\117\51\54\53\116\51\56\50\116\51\54\120\110\51\55\120\53\51\56\53\51\51\56\72\73\51\54\80\57\51\55\120\49\51\55\89\71\51\56\51\89\51\55\66\50\51\54\56\105\51\55\103\116\51\56\65\99\51\53\110\53\51\53\119\48\51\52\67\71\51\52\122\102\51\54\87\112\51\55\84\68\51\54\111\48\51\56\51\75\51\53\79\52\51\54\87\49\51\55\120\112\51\56\99\54\51\53\67\114\51\56\51\81\49\52\51\56\50\88\51\55\67\66\51\55\67\68\51\51\111\54\51\56\65\106\51\53\109\55\51\55\53\66\51\56\65\110\51\54\86\114\51\55\121\65\51\53\78\89\51\54\106\88\51\55\53\106\51\56\105\71\51\55\120\53\51\55\99\85\51\52\56\51\51\55\89\83\51\53\89\122\51\53\80\88\51\53\122\79\51\55\108\74\51\49\48\76\50\49\118\50\54\65\50\53\111\50\51\87\50\51\105\50\54\77\50\50\76\51\55\83\122\51\53\122\56\51\53\49\53\51\56\53\88\51\56\53\115\51\56\53\113\50\73\51\51\53\101\98\51\55\115\73\51\56\65\54\50\73\51\51\55\69\113\51\55\86\116\51\53\105\53\51\54\82\57\51\51\55\65\51\56\50\102\51\55\49\56\51\56\50\72\51\55\55\108\51\56\101\120\51\54\108\86\51\56\49\112\51\55\55\81\51\54\50\55\51\55\104\51\51\55\86\66\51\55\55\118\51\56\49\118\51\56\56\110\51\56\49\120\51\55\56\48\51\54\65\105\51\55\56\51\49\51\51\53\53\107\51\55\86\104\51\55\78\48\51\54\85\100\51\53\107\48\51\53\52\109\51\53\106\120\51\50\114\121\51\55\72\109\51\55\104\111\51\51\55\65\51\54\119\111\51\54\83\98\51\54\82\104\51\54\100\84\51\55\103\53\51\55\116\103\51\55\103\55\51\55\55\53\51\56\100\83\51\55\55\56\51\53\56\57\51\55\103\50\51\56\53\76\51\56\54\111\51\52\56\70\51\54\76\56\51\55\111\105\51\55\57\83\51\53\98\109\50\51\105\51\54\82\122\51\55\71\75\51\55\65\51\51\54\68\55\51\55\57\121\51\54\48\85\51\55\71\112\51\55\86\81\51\51\100\71\51\55\82\115\51\56\103\99\51\53\113\55\51\53\81\57\51\55\56\109\51\53\54\65\51\55\102\52\49\65\51\56\70\112\51\53\81\108\51\56\102\82\51\56\48\114\51\56\55\117\51\56\70\85\51\55\78\116\51\54\107\54\51\55\78\118\51\54\51\122\51\56\102\122\51\55\57\56\51\56\56\51\51\56\103\50\51\54\52\54\51\56\103\52\51\55\85\85\51\56\71\54\51\55\117\119\51\55\79\56\51\54\99\82\51\56\56\68\51\55\103\48\51\54\49\114\51\55\50\66\51\50\78\114\51\55\104\82\50\50\51\51\55\104\116\51\54\101\54\51\55\119\51\51\56\71\109\51\55\97\75\51\56\51\53\51\56\66\84\51\56\106\109\51\55\105\53\51\55\80\116\51\53\56\86\51\54\69\106\51\54\86\52\51\56\57\113\51\54\110\57\51\56\71\112\51\56\51\100\51\56\97\51\51\54\78\70\51\56\67\83\51\54\56\80\51\56\51\105\51\52\122\102\51\55\51\121\51\55\66\70\51\54\70\52\51\52\121\86\51\55\106\54\51\54\53\87\51\55\120\71\51\56\98\78\51\55\52\109\49\50\51\56\52\54\51\56\53\103\51\56\72\69\51\56\52\114\51\53\89\54\51\51\110\108\51\55\89\110\51\56\109\66\51\56\109\100\51\53\109\111\51\56\51\120\51\55\66\49\51\54\97\80\51\54\55\53\51\54\79\107\50\50\51\51\56\73\56\51\56\78\75\51\55\52\90\51\55\120\113\51\55\74\52\49\52\51\56\106\81\51\55\105\121\51\54\87\97\51\54\104\69\51\50\76\116\51\54\115\71\51\56\57\106\51\55\87\113\51\54\84\80\51\56\104\79\51\55\73\80\51\52\122\53\51\54\119\120\51\53\120\107\51\56\67\48\51\56\109\106\51\56\67\68\51\56\65\65\51\55\52\73\51\56\52\115\51\56\98\75\51\50\78\72\51\55\107\120\51\55\114\97\51\56\53\100\51\56\105\77\51\54\111\115\51\55\53\101\51\54\55\122\51\56\52\55\51\55\82\73\51\56\105\115\51\53\87\121\51\54\87\89\51\54\72\105\51\49\52\113\51\50\108\116\51\56\97\71\51\55\120\53\51\55\115\51\51\55\100\70\51\55\119\74\51\54\78\102\51\49\75\113\51\55\101\74\51\54\57\48\51\55\76\106\51\53\101\85\50\116\48\50\53\50\50\54\49\50\51\98\50\54\118\49\110\50\50\67\50\49\54\49\67\51\52\74\73\51\53\49\52\49\89\51\55\115\76\51\53\111\120\51\56\100\104\51\54\56\87\51\53\101\55\51\54\113\66\51\53\100\86\51\54\113\117\51\55\115\90\51\55\116\49\51\53\107\55\51\51\116\117\51\54\106\74\50\50\51\51\54\111\104\51\55\56\77\51\54\51\57\51\53\81\69\51\50\80\101\51\56\76\76\51\54\98\81\51\56\108\78\51\55\49\108\51\56\108\80\51\55\78\82\51\55\49\80\51\54\107\52\51\56\70\87\51\54\107\56\51\55\110\88\51\56\71\48\51\56\108\88\51\55\49\88\51\55\57\100\51\55\102\115\51\54\99\106\51\55\111\54\51\54\75\78\51\56\49\97\51\54\66\52\51\54\98\54\51\53\76\103\51\55\97\48\51\55\57\112\51\54\82\86\51\55\111\73\51\56\106\117\51\54\48\108\51\53\53\108\51\54\48\112\51\55\52\49\51\56\50\115\51\55\52\49\51\54\76\106\51\50\103\83\51\56\102\72\51\55\73\109\51\56\68\111\51\55\49\51\51\54\49\57\51\55\71\56\51\54\106\68\51\54\101\49\51\56\100\116\50\51\54\51\51\117\117\51\55\87\56\51\54\57\89\51\54\50\107\51\56\49\79\51\55\109\72\51\56\106\120\51\54\108\122\51\55\86\55\51\53\74\98\51\55\109\111\51\54\65\98\51\53\52\49\51\56\101\57\51\56\75\53\51\53\117\55\51\56\106\85\51\54\97\109\51\54\114\122\51\56\101\72\51\56\104\111\51\53\52\77\51\56\50\57\51\50\82\89\51\55\52\49\51\54\50\88\49\53\51\56\82\100\51\50\114\48\51\56\98\56\51\55\81\73\51\51\98\103\51\51\98\105\51\56\55\100\51\56\55\70\51\55\50\55\51\55\116\109\51\51\98\71\51\55\48\84\51\51\55\97\51\55\79\119\51\55\98\119\51\56\107\118\51\56\57\109\51\56\103\101\51\55\112\69\51\55\50\105\51\53\56\75\51\56\69\114\51\54\109\122\51\53\116\102\51\55\87\97\51\56\77\78\51\55\119\67\51\56\109\72\51\55\119\101\51\56\109\115\51\54\86\97\51\56\53\76\51\56\51\101\51\55\80\86\51\55\76\66\51\56\77\87\51\56\65\53\51\54\78\107\51\56\51\83\51\56\73\54\51\53\76\114\51\56\105\53\51\54\87\74\51\55\107\51\51\55\98\51\51\50\112\98\51\56\110\52\51\55\106\56\51\55\120\72\51\51\78\108\51\53\111\100\51\55\113\56\51\55\112\98\51\56\104\97\51\55\98\111\51\56\104\67\51\56\73\113\51\54\70\103\51\56\97\57\51\55\55\74\51\53\68\71\51\54\118\53\51\53\120\50\51\56\79\53\51\54\113\49\51\56\66\104\51\53\100\111\51\54\110\109\51\55\75\65\51\55\99\113\51\54\80\76\51\55\101\120\51\55\51\113\51\55\66\90\51\54\56\98\51\54\102\110\51\53\85\48\51\56\77\107\51\56\111\106\51\55\114\67\51\56\65\109\51\54\79\115\51\56\105\79\51\55\67\108\51\56\72\68\51\54\118\118\51\54\111\90\51\53\50\66\51\56\116\122\51\55\114\118\51\53\100\79\51\55\52\57\51\56\72\86\51\53\99\108\51\56\73\98\51\56\51\111\51\55\100\56\51\50\53\120\51\51\77\48\51\56\79\104\51\53\53\97\51\54\79\51\51\56\85\49\49\50\51\54\104\69\51\56\53\106\51\56\72\76\51\56\51\85\51\56\72\54\51\56\53\77\51\55\53\78\51\56\105\122\51\53\50\49\51\54\105\116\51\54\56\116\51\55\54\108\51\56\77\120\51\55\101\72\51\55\76\106\51\53\111\88\51\56\74\97\51\55\115\115\51\55\115\110\51\55\115\117\51\54\73\120\50\80\89\49\87\50\54\54\49\115\49\89\50\54\76\50\86\49\50\52\120\50\51\74\50\54\49\50\54\117\50\50\55\50\49\70\50\51\86\51\54\48\54\51\55\108\104\50\50\50\51\53\81\50\51\54\71\103\51\51\66\71\50\50\54\51\54\109\112\49\53\51\56\107\107\51\56\98\100\51\50\78\77\51\55\104\99\51\56\56\106\51\56\49\81\51\56\106\89\51\55\104\54\51\55\118\56\51\55\77\80\51\53\74\57\51\54\77\50\51\56\107\52\51\55\72\65\51\54\85\56\51\53\70\104\51\56\75\56\50\51\73\51\55\56\53\51\56\107\66\51\52\56\55\51\54\109\73\51\55\79\70\51\56\75\102\51\55\118\76\51\53\52\82\50\53\56\51\55\56\101\51\53\65\86\51\56\117\51\51\55\69\122\51\56\69\73\51\55\116\89\51\54\82\119\51\55\56\67\51\56\76\50\51\56\54\85\51\54\100\52\51\55\71\76\51\51\68\104\51\53\70\90\51\55\48\73\51\56\76\57\51\52\122\49\51\54\76\76\51\51\68\71\51\53\87\48\51\54\49\49\51\53\54\51\51\54\49\75\51\51\68\103\51\56\115\54\51\56\48\101\51\54\90\54\51\56\114\53\51\55\55\51\51\55\49\52\51\56\57\103\51\56\82\65\51\56\75\84\51\55\65\67\51\56\108\102\51\55\49\99\49\49\51\56\108\74\51\56\81\51\51\55\70\57\51\55\49\107\51\54\66\85\51\55\102\99\51\56\55\118\51\55\102\69\51\56\55\88\51\56\81\98\51\56\48\120\51\56\113\68\51\56\76\87\51\55\111\48\51\56\71\51\51\56\81\104\51\56\49\53\51\56\113\74\51\56\56\57\51\56\81\108\51\56\71\97\51\54\52\74\51\54\119\102\51\56\57\78\51\54\117\84\51\55\86\117\51\56\83\111\51\56\83\114\51\56\114\69\51\56\51\57\51\54\101\72\51\56\83\84\51\55\105\77\51\56\51\98\51\55\50\85\51\56\83\89\51\56\51\55\51\54\54\119\51\56\112\49\51\55\80\88\51\56\103\87\51\54\53\103\51\56\52\68\51\55\52\72\51\55\88\52\51\55\89\51\51\56\51\85\51\56\100\86\51\56\116\97\51\53\111\53\51\56\85\113\51\55\68\54\51\55\75\55\51\50\81\80\51\55\51\119\50\50\51\51\56\110\48\51\56\116\114\51\54\117\53\51\53\75\104\51\54\56\98\51\54\54\86\51\55\52\99\51\53\120\85\51\53\78\111\51\55\51\106\51\54\79\50\51\55\66\99\51\56\103\89\51\55\81\81\51\56\72\87\49\52\51\54\87\109\51\53\57\99\51\54\54\88\51\56\78\101\51\55\75\98\51\52\90\73\51\56\102\105\51\56\117\108\51\50\78\104\51\55\107\57\51\56\85\65\51\55\89\54\51\53\87\108\51\55\75\108\51\55\82\102\51\54\86\83\51\56\117\71\51\56\65\114\51\56\117\73\51\50\78\72\51\55\51\53\51\54\79\103\51\56\122\112\51\54\120\119\51\56\66\77\51\56\79\52\51\55\87\118\51\55\114\54\51\55\67\65\51\57\48\107\51\55\81\120\51\53\97\82\51\56\72\66\51\54\79\118\51\56\52\56\51\56\122\56\51\56\67\69\51\56\112\48\51\54\57\53\51\56\53\120\50\105\69\50\55\66\50\54\114\51\50\103\73\50\50\71\50\50\54\50\54\66\50\49\110\49\110\50\54\54\50\49\73\50\51\49\50\51\74\50\50\57\50\53\100\50\50\53\50\52\76\50\50\57\50\51\56\50\49\50\50\49\57\50\50\113\50\52\119\50\53\100\51\56\118\122\51\56\112\52\51\55\115\112\51\53\49\52\50\49\73\50\51\97\51\56\54\53\49\48\51\53\79\85\51\54\121\76\51\55\108\101\51\53\50\50\51\56\106\65\51\56\68\70\51\53\49\53\51\56\100\105\51\53\81\50\51\56\67\99\51\53\103\98\51\55\49\66\51\55\56\109\51\56\48\74\51\55\49\69\51\55\78\102\51\53\71\113\51\56\55\113\51\56\81\53\51\56\121\52\51\56\48\83\51\56\113\56\51\55\117\74\51\56\89\57\51\56\56\48\51\54\75\98\51\56\56\50\51\56\121\68\51\56\76\122\51\56\89\102\51\56\103\53\51\56\81\75\51\55\117\120\51\56\89\107\51\54\100\72\51\53\105\53\51\56\83\57\51\52\77\83\51\56\48\66\51\50\110\104\51\56\48\100\51\56\121\83\51\50\78\109\51\56\49\110\51\56\74\118\51\56\82\105\51\56\69\49\51\55\77\75\51\55\72\51\51\50\76\116\51\56\101\53\51\54\50\57\51\54\97\80\51\53\52\52\51\56\69\97\51\55\104\98\51\53\98\117\51\56\119\111\51\56\101\103\51\56\87\114\51\52\108\90\51\52\69\107\51\55\78\51\51\51\52\97\51\54\90\90\51\55\86\80\51\55\111\85\51\51\55\114\51\55\78\56\51\53\50\98\51\55\78\97\51\54\114\115\51\55\57\111\51\55\79\102\51\56\107\122\51\54\116\81\51\55\71\72\51\56\76\50\51\56\76\52\51\54\68\52\51\55\48\103\51\56\88\66\51\54\100\56\51\53\53\79\51\53\84\57\50\49\52\51\54\66\57\51\51\100\104\51\57\48\54\51\56\111\67\51\56\122\76\51\50\82\48\51\55\77\53\51\51\55\97\51\51\80\56\51\54\82\53\51\54\82\55\51\56\57\67\51\56\75\110\51\56\57\69\51\56\120\115\51\56\68\114\51\56\120\85\51\54\49\103\51\55\111\67\51\56\51\48\51\56\83\108\51\56\51\50\51\56\109\112\51\54\110\56\51\54\101\67\51\53\56\115\51\56\71\107\51\55\73\56\51\56\77\71\51\56\119\57\51\54\118\55\51\56\51\99\51\56\89\122\51\56\103\115\51\55\112\117\51\55\73\75\51\56\84\51\51\56\97\52\50\49\83\51\55\51\51\51\57\48\50\51\56\77\76\51\56\66\51\51\53\52\51\51\56\111\52\51\56\52\85\51\55\105\81\51\53\68\79\51\56\48\49\51\56\111\103\51\54\83\97\51\54\70\51\51\53\56\117\51\50\108\116\51\54\80\116\51\57\48\106\51\55\106\105\51\56\51\108\51\56\65\87\51\56\97\69\51\50\108\84\51\53\71\55\51\54\80\119\51\56\104\52\51\53\68\50\51\54\112\70\51\57\48\85\51\56\53\68\51\56\78\65\51\54\86\85\51\53\75\100\51\54\88\73\51\56\73\106\51\55\107\72\51\55\82\66\51\56\53\97\51\56\85\99\51\53\119\111\51\56\53\101\51\56\111\79\51\56\110\98\51\56\117\104\51\55\53\107\51\55\98\54\51\54\112\49\49\56\51\56\110\114\51\57\54\114\51\53\57\52\51\56\51\79\51\53\79\68\51\55\51\70\51\54\97\76\51\53\120\110\51\53\78\98\51\54\79\97\51\54\79\50\51\56\84\69\51\55\120\103\51\54\56\98\51\55\98\97\51\54\65\49\51\51\111\50\51\50\78\72\51\56\85\75\51\55\67\48\51\57\55\54\51\49\100\122\51\51\54\79\51\56\50\103\51\54\102\90\51\54\110\118\51\54\79\50\51\56\79\122\51\55\121\84\51\56\109\118\51\53\49\52\50\118\82\51\55\69\52\51\54\73\107\50\50\77\50\73\54\50\52\80\50\49\71\50\51\109\50\49\77\50\52\49\50\52\56\51\55\122\104\51\54\57\53\51\57\50\52\51\56\53\118\51\56\112\54\51\56\118\99\51\56\80\81\51\53\50\50\51\55\76\50\51\54\74\49\51\56\104\107\51\55\99\84\51\56\120\81\51\56\49\103\51\56\82\56\51\55\112\57\51\53\83\101\51\55\106\87\51\55\116\89\51\53\52\77\51\53\53\85\51\54\48\105\51\57\51\55\51\56\81\118\51\53\98\76\49\55\51\53\68\77\51\55\57\88\51\52\57\71\51\56\54\89\51\56\76\97\49\52\51\55\84\57\51\50\110\114\51\55\67\52\51\56\117\74\51\55\67\54\51\56\102\66\51\51\67\108\51\50\82\48\51\55\88\117\50\50\51\51\56\86\52\51\55\55\108\51\56\87\98\51\56\68\122\51\54\90\98\51\57\51\97\51\55\55\83\50\106\110\51\56\87\106\51\56\75\49\51\56\101\54\51\53\84\117\51\57\51\72\51\56\82\82\51\54\109\97\51\57\51\55\51\54\65\77\51\55\48\68\51\56\82\87\51\55\48\55\51\56\50\56\51\55\86\109\51\50\114\89\51\56\50\98\51\55\118\112\50\49\97\50\119\100\51\54\77\81\51\56\121\116\51\53\71\66\51\56\55\105\51\53\71\103\51\55\49\100\51\56\55\77\51\56\121\49\51\56\48\112\51\56\55\115\51\56\76\79\51\56\102\84\51\57\50\108\51\56\121\56\51\55\110\117\51\56\102\120\51\55\110\119\51\55\70\75\51\55\117\80\51\55\102\79\51\56\89\69\51\54\116\100\51\56\81\105\51\54\116\71\51\55\57\72\51\56\49\56\51\53\82\77\51\55\79\57\51\54\84\109\51\50\78\104\51\55\84\98\51\53\105\53\50\50\50\51\51\79\50\51\50\78\114\50\49\80\51\54\114\99\50\50\51\51\54\82\69\51\56\88\79\51\51\103\57\51\56\89\110\51\55\65\66\51\53\107\109\51\56\71\110\51\55\105\77\51\56\122\48\51\54\77\86\51\56\115\80\51\56\116\84\51\56\83\119\51\55\112\80\51\56\71\81\51\54\86\98\51\57\53\67\51\55\89\85\51\55\51\49\51\55\80\87\51\56\77\89\51\55\52\83\51\56\52\83\51\57\53\122\51\56\122\121\51\53\121\90\51\50\108\84\51\56\87\56\51\56\53\56\51\57\54\103\51\55\53\65\51\56\53\98\51\56\79\77\51\57\54\107\51\55\99\108\51\56\111\80\51\56\73\82\51\55\99\80\51\53\87\121\51\56\99\99\51\56\110\55\51\54\54\66\51\55\52\78\51\54\120\84\51\57\66\119\51\56\116\112\50\50\51\51\57\55\97\51\55\105\110\51\57\53\78\51\56\111\55\51\56\99\66\51\54\87\105\51\57\53\114\51\55\81\80\51\55\107\97\51\55\97\53\51\50\108\116\51\56\110\72\51\53\109\121\51\54\56\66\51\57\99\104\49\49\51\56\83\104\51\53\111\51\51\57\54\83\51\56\51\110\51\55\68\54\51\55\98\104\51\55\106\53\51\52\87\100\51\55\74\55\51\55\120\103\51\54\54\84\51\57\56\87\51\52\84\103\51\55\98\121\51\57\55\103\51\57\56\120\51\55\77\98\51\53\68\78\51\54\56\66\51\54\119\109\51\51\99\50\51\57\52\103\51\57\53\114\51\54\69\71\51\57\55\106\51\56\73\89\51\54\57\112\51\56\86\66\51\51\112\107\51\56\106\70\51\56\54\119\50\50\48\50\51\48\51\56\53\120\50\66\114\50\99\66\50\50\101\50\49\87\51\54\57\53\51\56\53\83\51\55\108\74\51\56\53\122\51\54\48\54\51\55\122\89\51\53\113\50\51\55\51\73\51\57\52\112\51\54\74\55\51\56\82\54\51\54\106\65\51\56\75\114\51\57\52\117\51\56\55\71\51\57\51\53\50\122\87\51\56\50\110\51\57\51\56\51\56\101\48\51\55\109\74\51\57\57\65\51\56\49\119\51\57\57\100\51\53\74\57\51\56\101\56\51\56\119\75\51\56\56\115\50\90\87\51\57\57\74\51\56\87\111\51\57\57\76\51\57\51\78\51\55\118\74\51\49\55\75\51\56\107\69\51\50\85\119\51\56\119\119\51\53\107\49\51\56\108\66\51\51\57\98\51\57\52\71\51\51\98\71\51\56\77\57\49\56\51\57\99\106\51\57\65\89\51\56\50\75\51\56\81\114\51\53\53\103\51\57\56\75\51\56\108\50\51\56\50\112\51\56\88\57\51\56\76\54\51\56\120\99\51\55\103\110\51\54\100\98\50\49\50\51\52\57\106\51\55\48\111\51\51\116\117\51\55\48\81\51\56\112\118\51\57\52\104\51\55\102\48\51\56\108\103\51\53\71\71\51\54\83\76\51\56\89\48\51\55\56\83\51\56\55\80\51\56\102\81\51\55\117\100\51\55\56\119\51\56\81\54\51\57\65\54\51\56\55\87\51\56\102\118\51\57\65\57\51\56\81\99\51\57\97\99\51\57\50\81\51\55\117\81\51\57\50\115\51\57\65\103\51\56\121\71\51\57\97\73\51\56\103\55\51\56\89\106\51\57\65\109\51\55\50\54\51\56\99\67\51\56\83\56\51\55\72\80\51\56\104\84\51\55\51\78\51\57\98\48\51\56\121\84\51\56\51\52\51\54\52\85\51\56\49\67\51\56\97\50\51\55\97\72\51\55\87\52\51\57\98\51\51\56\57\121\51\57\66\97\51\55\119\71\51\57\53\66\51\56\90\49\51\56\74\74\50\55\98\51\55\65\117\50\73\51\51\56\65\56\51\57\99\55\51\55\67\54\51\56\117\111\51\54\80\52\51\56\105\99\49\53\51\54\72\101\51\50\113\80\51\56\48\54\51\55\52\54\51\56\51\85\51\56\53\107\51\56\122\55\51\54\55\71\51\54\79\50\51\54\56\66\51\53\114\89\51\50\112\66\51\57\53\87\50\50\51\51\57\48\84\51\55\97\122\51\54\119\75\51\55\53\50\51\56\65\121\51\53\81\77\51\52\122\70\51\56\55\53\51\57\48\55\51\56\109\99\51\57\99\107\51\54\55\66\51\53\83\109\51\53\75\88\51\57\98\52\51\54\69\77\51\56\73\107\51\56\85\98\51\57\48\67\51\55\121\56\51\56\85\69\51\57\48\88\51\56\111\113\51\57\66\121\51\53\99\55\51\55\113\105\51\57\99\49\51\57\48\86\51\56\116\109\51\57\73\51\51\56\66\115\51\57\54\68\51\54\56\98\51\57\104\117\51\50\49\66\51\51\71\117\51\54\80\101\51\54\52\77\51\57\53\75\51\56\52\77\51\53\89\55\51\55\51\75\51\55\51\71\51\57\54\122\51\56\119\57\51\57\56\111\51\55\52\50\51\56\116\120\51\55\48\52\51\55\81\105\51\57\100\99\51\53\111\114\51\56\100\71\51\55\115\84\51\53\112\55\51\54\105\120\51\56\74\73\51\51\66\84\51\55\54\48\51\55\76\74\51\56\53\115\51\56\106\97\50\68\57\50\54\87\50\52\81\50\50\120\50\51\55\50\53\53\50\52\55\50\108\57\51\56\103\117\51\51\75\53\51\53\112\117\51\57\68\69\51\57\50\55\51\52\90\102\51\56\78\88\51\54\83\67\51\54\100\107\51\51\55\65\50\98\81\51\52\122\102\51\49\85\98\51\55\49\65\51\53\54\55\51\56\55\74\51\56\55\76\51\54\115\78\51\55\49\102\51\57\102\111\51\55\49\72\51\56\76\77\51\57\70\82\51\56\70\83\51\54\98\119\51\57\97\55\51\57\70\119\51\56\108\83\51\57\65\97\51\56\108\85\51\56\56\49\51\56\113\69\51\57\50\82\51\54\67\68\51\56\77\48\51\56\56\56\51\57\65\74\51\56\103\56\51\57\97\108\51\56\77\53\51\53\56\55\51\57\103\65\51\53\112\101\51\51\67\85\51\53\50\106\51\51\107\90\51\54\55\56\51\55\51\110\51\55\118\86\51\55\77\99\51\55\86\49\51\57\57\54\51\55\55\79\51\57\57\56\51\57\69\65\51\55\109\108\51\57\51\100\51\56\114\78\51\56\74\90\51\54\97\100\51\57\57\71\51\56\87\108\51\54\109\97\51\54\85\57\51\57\51\76\51\53\52\102\51\57\101\109\51\51\56\66\51\56\57\48\51\57\57\79\51\53\52\112\51\51\67\117\51\55\110\54\51\51\55\65\51\57\51\87\51\56\81\78\51\54\99\85\51\57\51\80\51\55\79\102\51\53\115\115\51\56\88\53\51\55\48\67\51\57\98\117\51\57\52\66\51\56\50\83\51\53\53\117\51\54\108\106\51\57\102\67\51\55\71\83\51\56\101\101\51\56\79\98\51\56\107\109\51\57\100\122\51\56\120\82\51\56\114\55\51\57\101\50\51\55\71\97\51\55\80\98\51\57\103\102\51\55\105\65\51\57\66\50\51\56\83\118\51\53\118\50\51\55\55\57\51\57\103\107\51\56\57\86\51\57\98\55\51\56\109\81\51\57\98\57\51\57\53\57\51\55\105\70\51\57\98\68\51\57\55\108\51\54\53\98\51\53\76\65\51\57\71\88\51\54\101\103\51\56\85\111\51\54\55\50\51\53\97\104\51\50\112\66\51\57\57\50\51\57\57\52\51\57\53\77\51\53\84\77\51\54\88\109\51\53\68\50\51\55\119\116\51\56\51\117\51\55\104\121\51\54\54\116\51\56\116\73\51\51\103\53\51\52\122\70\51\57\54\55\51\57\104\74\51\55\88\111\51\51\67\50\51\56\51\79\51\55\98\65\51\50\81\112\51\55\97\53\51\56\85\118\51\57\68\50\51\56\116\81\51\57\70\73\51\56\53\51\51\54\51\49\51\50\112\110\51\51\102\102\51\55\55\103\51\56\56\102\51\54\56\66\51\54\102\108\51\57\104\118\51\56\57\87\51\54\111\51\51\57\110\106\51\56\117\90\51\51\48\49\51\56\86\49\51\56\48\101\51\53\78\114\51\54\78\111\51\57\73\57\51\55\81\122\51\56\84\79\51\56\110\99\51\57\53\83\51\56\66\90\51\55\51\112\51\55\101\90\51\56\78\55\51\55\99\70\51\53\109\56\51\57\54\105\51\54\55\87\51\57\73\50\51\55\99\77\51\57\105\52\51\55\89\68\51\57\50\121\51\55\107\121\51\56\67\70\50\55\55\51\56\74\101\51\56\112\110\51\53\80\52\51\57\68\76\51\56\53\118\51\57\68\116\51\54\89\77\51\55\80\121\51\57\53\101\50\49\56\51\50\49\48\50\53\57\50\49\99\50\51\54\50\53\68\50\51\48\51\52\90\103\50\49\56\50\50\100\50\54\81\50\54\85\49\112\50\52\71\49\90\50\50\109\50\53\52\51\57\68\70\51\55\89\117\51\55\76\54\51\57\49\121\51\57\50\48\50\101\48\51\57\56\55\51\57\48\56\51\54\48\68\51\56\101\83\51\49\99\99\51\54\77\74\51\49\52\81\51\54\48\73\51\56\114\103\51\55\79\107\51\55\116\117\51\54\68\52\51\53\74\118\51\56\50\115\51\53\106\86\51\54\76\106\51\54\85\75\51\56\120\72\51\54\49\48\50\50\51\51\55\116\51\51\53\70\99\50\50\113\51\50\55\84\51\54\122\54\51\57\68\57\51\54\109\89\51\57\56\65\51\56\107\80\51\55\112\55\51\57\52\84\51\57\77\52\51\56\51\86\51\53\70\99\51\56\102\103\51\52\77\115\51\57\66\79\51\57\52\73\51\54\49\122\51\55\118\49\51\53\53\105\51\56\87\99\51\56\82\106\51\56\101\50\51\56\49\118\51\56\49\84\51\56\87\72\51\54\97\56\51\54\85\53\51\54\77\55\51\57\69\72\51\55\118\50\51\53\85\97\51\54\85\66\51\57\108\97\51\52\67\120\51\51\68\120\51\57\70\50\51\51\52\65\51\53\106\118\51\56\57\53\51\51\69\84\51\53\81\106\51\57\48\122\51\54\98\99\50\50\52\49\54\51\54\98\103\49\90\51\56\76\107\51\54\98\106\49\57\51\54\51\97\51\56\55\79\51\57\107\48\51\56\81\52\51\57\107\50\51\57\97\53\51\57\107\52\51\57\102\118\51\56\76\82\51\55\117\108\51\57\70\121\51\56\108\118\51\54\99\97\51\56\71\49\51\56\113\71\51\57\103\51\51\57\50\117\51\56\89\73\51\57\50\87\51\57\103\56\51\56\56\100\51\56\53\75\51\57\109\54\51\57\103\72\51\53\86\50\51\55\80\105\51\57\108\89\51\57\98\53\51\55\65\97\51\56\89\116\51\56\53\76\51\54\76\115\51\57\53\56\51\56\121\89\51\57\109\105\51\57\71\83\51\57\98\103\51\55\65\116\51\55\119\77\51\54\53\71\51\55\104\121\51\57\77\112\51\55\53\50\51\55\52\66\51\57\54\111\51\56\50\122\51\54\119\97\51\57\48\109\51\56\98\67\51\57\79\53\51\53\110\49\51\56\53\107\51\57\72\89\51\57\48\98\51\54\55\116\51\57\105\49\51\55\99\75\51\57\73\66\51\56\53\104\51\57\48\73\51\55\114\116\51\57\102\72\51\54\54\116\51\55\67\50\51\52\70\122\51\55\114\108\51\57\110\120\51\52\84\53\51\56\84\108\51\57\111\49\51\57\54\66\51\53\111\76\51\54\101\103\51\56\53\51\51\56\65\69\51\56\122\81\51\54\79\55\51\56\122\115\51\55\114\52\51\57\48\81\51\57\105\82\51\53\68\50\51\56\108\101\51\56\73\57\51\56\117\112\51\57\110\57\51\55\100\54\51\55\98\51\51\50\113\112\51\56\66\88\51\56\100\117\51\54\87\117\51\57\104\97\51\55\112\50\51\57\53\82\51\56\86\52\51\56\97\100\51\57\105\106\51\56\110\79\51\55\74\84\51\56\53\76\51\57\73\87\51\54\56\107\51\51\69\84\50\54\103\50\52\49\49\68\50\52\55\50\51\106\50\53\51\50\50\55\50\53\105\50\51\111\50\50\49\51\53\115\74\51\53\69\103\51\56\99\80\51\57\68\101\51\57\55\121\51\57\74\51\51\49\75\112\51\56\118\72\49\48\51\55\101\57\51\55\83\118\51\53\111\119\51\57\79\80\51\56\67\74\51\55\122\112\51\54\113\82\49\57\51\56\99\110\51\51\109\117\50\50\115\51\57\112\66\51\56\74\108\51\54\86\74\51\56\83\55\51\57\75\77\51\51\55\97\51\51\114\78\51\52\90\102\50\51\101\51\51\83\72\51\55\116\100\51\56\57\100\51\56\49\102\51\57\81\57\51\56\49\72\51\55\71\57\51\55\116\75\51\55\80\102\51\57\81\105\51\53\71\98\51\55\110\99\51\57\114\99\51\57\82\101\51\54\115\110\51\55\78\72\51\57\65\50\51\56\55\82\51\55\85\101\50\56\54\51\57\50\107\51\57\82\111\51\56\81\65\51\57\102\88\51\56\121\65\51\57\70\90\51\57\107\66\51\57\71\49\51\57\75\68\51\57\50\116\51\56\109\49\51\57\50\86\51\56\77\52\51\55\79\97\51\54\52\106\51\57\65\112\51\57\101\53\51\56\50\77\51\49\67\67\51\57\81\109\51\57\57\57\51\55\109\108\51\57\69\70\51\57\101\100\51\53\84\84\51\57\51\71\51\57\81\117\51\56\49\90\51\54\122\79\50\50\69\51\54\108\89\51\50\78\84\51\56\50\52\51\57\81\90\51\56\52\118\51\52\56\102\51\57\56\105\51\50\82\89\51\55\110\53\51\55\118\112\51\56\87\122\51\54\65\68\51\56\85\57\51\53\76\71\51\56\75\68\51\56\87\85\51\57\101\81\50\49\89\51\57\119\84\51\56\101\121\51\55\79\109\51\53\84\49\51\55\79\111\51\57\52\57\51\55\57\89\51\55\79\115\51\57\56\83\51\57\56\85\51\54\49\55\51\55\88\76\51\53\110\51\51\51\98\71\51\54\49\84\51\52\77\115\51\55\87\48\51\57\54\68\51\57\83\66\51\57\115\51\51\57\118\79\51\55\73\51\51\57\115\54\51\56\115\78\51\57\77\67\51\56\89\118\51\57\77\55\51\56\51\65\51\56\77\82\51\57\71\112\51\54\118\65\51\56\84\48\51\55\50\90\51\57\71\86\51\56\67\82\51\57\109\77\51\54\53\71\51\57\71\110\51\56\50\75\51\56\66\71\51\54\108\89\51\57\111\72\51\55\74\68\51\53\100\57\50\105\51\51\56\67\97\51\54\120\88\51\54\102\51\51\57\72\109\51\57\120\83\51\54\79\50\51\56\99\51\51\56\110\108\51\54\120\101\51\53\68\76\51\55\117\50\50\50\51\51\55\85\52\51\55\75\65\51\53\99\86\51\53\71\116\51\57\104\111\51\54\80\88\51\57\89\114\51\55\106\49\51\57\72\50\51\57\110\66\49\52\51\56\122\73\51\56\90\75\51\55\119\90\51\53\68\111\51\56\52\65\51\56\51\117\51\57\111\55\51\56\90\110\51\53\110\53\51\57\89\122\49\50\51\55\81\78\51\57\67\102\51\56\116\55\51\55\75\101\51\57\84\66\51\57\73\56\51\54\103\115\51\54\102\68\51\56\66\82\51\57\67\54\51\57\100\88\51\57\111\56\51\56\97\75\51\54\103\84\51\57\73\48\51\56\65\110\51\55\107\110\51\54\86\83\51\55\106\113\51\57\66\120\51\57\79\71\51\54\119\56\51\53\77\110\51\57\85\65\50\55\55\51\55\108\106\51\56\80\77\51\54\73\106\51\55\69\54\51\57\106\50\51\56\54\49\51\55\65\118\49\106\50\115\50\50\55\50\50\49\120\50\52\102\50\51\115\50\54\57\49\118\50\50\102\49\82\50\52\55\50\50\87\50\53\66\50\50\76\49\80\51\53\49\52\50\49\52\50\50\87\51\54\69\120\51\53\90\111\51\53\122\57\51\57\49\116\51\53\48\72\50\50\103\51\56\80\115\51\53\81\50\51\57\72\80\51\56\98\51\51\57\52\106\51\49\56\49\51\53\57\89\51\54\107\119\51\57\104\119\51\51\98\120\51\52\80\67\51\57\112\108\51\56\69\85\51\49\55\107\51\54\48\105\51\55\116\83\51\56\108\50\51\57\112\82\51\57\120\102\51\49\105\73\51\56\50\115\51\57\88\74\51\53\71\51\51\53\82\87\51\56\66\48\50\50\51\51\55\114\57\51\56\56\71\51\57\80\112\51\57\119\74\51\57\75\89\51\57\51\99\51\55\77\78\51\57\87\78\50\106\78\51\56\101\52\51\57\69\71\51\57\87\82\51\53\74\108\51\55\86\70\51\57\69\107\51\54\103\69\51\57\75\119\51\51\55\55\51\56\113\81\51\55\79\70\51\55\56\56\51\53\106\121\51\57\120\50\51\53\117\78\51\55\48\85\51\57\76\73\50\50\51\51\57\51\121\51\53\102\99\51\57\74\111\51\51\55\114\51\57\72\54\51\55\110\98\51\55\110\68\51\55\56\77\50\49\97\49\55\51\53\81\69\51\57\118\86\51\57\106\90\51\55\78\75\51\57\75\49\51\55\70\65\51\57\82\109\51\54\75\49\51\57\107\53\51\57\82\112\51\56\55\122\51\56\102\121\51\57\75\97\51\56\121\99\51\57\87\55\51\55\57\67\51\57\114\87\51\57\87\65\51\57\114\121\51\57\119\67\51\57\97\78\51\56\121\114\51\57\86\104\51\57\52\113\51\57\118\74\51\56\100\113\51\57\86\109\51\55\49\55\51\56\52\100\51\57\120\86\51\57\71\110\51\55\80\106\51\53\86\48\51\56\89\80\51\57\121\48\51\57\66\54\51\57\120\119\51\57\83\67\51\55\119\70\51\57\53\97\51\65\51\83\51\54\53\57\51\56\122\50\51\57\77\108\51\57\85\83\51\56\103\88\50\50\51\51\57\48\57\51\57\105\75\51\57\122\111\51\53\98\65\51\57\84\69\51\55\66\114\51\53\79\108\51\57\90\57\51\54\54\116\51\55\48\87\51\51\119\76\51\57\78\53\51\57\105\74\51\57\115\77\51\51\51\109\51\53\86\75\51\57\54\51\51\56\55\52\51\54\80\88\51\54\56\66\51\53\78\56\51\51\77\106\51\54\80\48\51\57\54\53\51\53\68\111\51\54\77\115\51\57\85\49\51\56\122\74\51\55\113\49\51\57\53\114\51\55\104\121\51\55\120\56\51\52\122\56\51\57\89\112\51\57\105\81\51\55\82\53\51\57\84\80\51\53\68\111\51\57\90\107\51\57\54\101\51\55\89\53\51\57\79\97\51\57\122\88\51\56\117\100\51\57\84\49\51\57\79\69\51\97\48\50\51\56\97\115\51\97\53\55\51\56\53\108\51\56\53\51\51\65\52\80\51\51\110\101\51\55\67\53\51\56\90\120\51\57\116\84\51\55\88\81\51\53\65\104\51\50\114\74\51\57\89\86\51\57\89\88\51\55\100\68\51\56\53\110\51\56\65\52\51\57\66\101\51\49\75\112\51\55\122\101\51\53\49\52\49\71\50\50\56\51\57\80\101\51\54\73\120\51\54\121\79\50\81\69\50\54\72\50\50\74\50\51\49\50\50\71\50\52\100\51\57\100\69\51\56\118\102\51\57\118\48\51\53\122\53\51\54\89\68\51\49\52\80\51\56\86\73\51\55\101\107\51\53\69\52\51\55\101\112\51\53\81\50\51\56\116\57\51\56\120\108\51\52\77\83\51\54\54\118\51\55\85\51\51\54\53\81\51\57\108\122\51\55\49\50\51\57\77\49\51\57\101\49\51\56\88\116\51\57\81\67\51\55\121\113\51\55\71\68\51\52\56\70\51\56\101\86\51\55\79\73\51\54\82\88\51\56\108\50\51\56\101\90\51\54\68\52\51\56\81\121\51\57\120\72\51\52\57\71\51\56\82\48\51\56\76\65\51\56\50\118\51\56\120\105\51\57\113\48\51\56\102\57\51\55\86\119\51\57\86\98\51\55\118\90\51\56\50\50\51\55\87\49\51\57\87\71\51\57\69\55\51\97\49\87\51\55\118\54\51\55\104\54\51\57\81\81\51\56\114\79\51\65\50\50\51\57\76\52\51\57\113\118\51\57\108\55\51\53\102\83\51\54\97\100\51\56\56\120\51\54\117\68\51\57\76\76\51\57\114\48\51\50\84\120\51\56\83\49\51\55\118\112\51\57\112\120\51\55\56\102\51\57\108\88\51\57\120\90\51\54\51\52\51\56\112\88\51\55\110\69\51\56\113\49\51\56\88\122\51\97\50\119\51\55\85\67\51\97\50\122\51\57\70\84\51\57\82\110\51\56\89\55\51\57\107\54\51\57\82\113\51\57\119\52\51\57\114\83\51\51\101\117\51\56\81\70\51\56\49\51\51\57\119\57\51\57\107\102\51\57\103\54\51\57\114\122\51\57\75\106\51\56\49\98\51\55\87\50\51\54\69\56\51\54\88\87\51\97\56\57\51\53\75\77\51\54\117\120\51\56\77\73\51\54\69\107\51\56\103\108\51\56\109\111\51\55\73\66\51\57\89\52\51\57\77\104\51\55\99\89\51\56\109\117\51\57\103\84\51\56\84\52\51\54\86\104\51\54\53\71\51\56\116\57\51\57\104\100\51\53\57\89\51\50\80\66\51\55\66\53\51\57\53\113\51\65\52\86\51\54\49\119\51\57\115\120\51\97\53\65\51\57\115\90\51\56\73\110\51\97\53\100\51\57\48\103\51\55\82\106\51\56\65\83\51\56\104\113\51\53\78\53\51\54\102\54\51\50\112\66\51\56\118\48\51\54\49\72\51\97\53\110\51\57\104\49\51\56\51\79\51\56\67\56\49\52\51\56\88\110\51\55\75\97\51\65\57\122\49\50\51\56\90\118\50\50\51\51\55\119\121\51\57\99\57\51\57\77\87\51\54\113\50\51\54\55\75\51\56\65\73\51\57\78\90\51\55\120\121\51\55\66\112\51\57\79\50\51\57\53\54\51\57\115\85\51\53\120\109\51\57\99\48\51\56\51\85\51\56\66\109\51\55\52\102\51\97\52\105\49\52\51\57\78\112\49\50\51\56\52\74\51\57\84\109\51\56\53\108\51\54\54\84\51\56\104\73\51\56\72\122\51\53\85\86\51\65\48\54\51\55\69\73\51\65\54\105\51\53\112\49\51\55\122\73\51\55\89\118\51\57\56\50\51\53\118\77\51\57\55\78\51\65\54\68\51\54\121\56\51\56\67\107\51\55\122\81\50\82\97\51\56\53\120\50\73\54\50\50\107\50\54\114\50\54\120\50\52\83\49\116\50\55\49\51\57\74\103\51\53\90\79\51\57\106\75\51\57\110\114\51\57\57\53\51\54\84\83\51\57\107\87\51\55\104\48\51\65\55\112\51\56\49\86\51\57\87\77\51\56\49\85\51\56\101\54\51\54\109\54\51\55\55\122\51\57\108\53\51\57\87\115\51\57\119\117\50\51\73\51\57\51\109\51\97\55\90\51\52\56\55\51\56\101\84\51\57\101\114\51\53\106\89\51\65\56\52\51\52\122\49\49\122\51\51\75\90\51\50\114\48\51\65\97\122\51\54\99\85\51\56\87\84\51\54\97\84\51\56\50\108\51\57\120\67\51\55\79\107\51\56\120\56\51\53\116\49\51\65\55\56\51\56\108\55\51\97\55\65\51\49\50\88\51\54\108\74\51\57\56\116\51\51\100\103\51\57\56\87\51\57\55\57\51\57\56\121\50\54\107\50\51\53\51\53\78\79\51\50\82\48\51\97\97\49\51\57\104\57\51\50\113\120\51\65\51\104\51\56\100\80\51\57\52\83\51\97\51\75\51\56\68\84\51\56\52\97\51\53\81\54\50\50\90\51\97\56\98\51\55\56\109\51\55\117\56\51\54\83\110\51\56\81\50\51\97\56\102\51\57\50\104\51\57\114\76\51\97\56\73\51\97\51\49\51\57\87\49\51\55\57\50\51\57\75\55\51\57\114\82\51\97\51\54\51\57\82\116\51\97\56\81\51\57\65\102\51\55\111\51\51\57\114\88\51\57\75\71\51\57\103\55\51\65\56\87\51\57\65\79\51\55\84\99\51\54\83\67\51\57\97\114\51\51\68\103\51\57\65\117\51\52\122\70\51\57\97\120\51\56\68\77\51\54\122\54\51\57\120\118\51\97\57\49\51\57\115\97\51\56\57\82\51\97\57\53\51\57\53\53\51\97\57\55\51\57\53\106\51\97\51\86\51\56\115\120\51\57\83\102\51\57\48\49\51\54\101\118\51\57\89\57\51\57\98\70\51\65\57\102\51\65\53\77\51\56\68\109\51\57\110\121\51\55\53\56\51\56\97\76\51\97\53\66\51\53\109\68\51\57\122\122\51\54\55\90\51\65\48\49\51\57\116\51\51\57\54\79\51\55\74\87\51\56\53\51\51\54\103\76\51\50\112\98\51\56\111\120\51\55\89\51\51\53\81\54\51\54\104\54\51\55\81\66\51\56\99\53\51\56\51\111\51\53\56\117\51\50\113\80\51\57\103\100\51\54\102\51\51\97\102\66\51\53\89\119\51\56\56\85\51\57\113\100\51\97\53\56\51\56\98\79\51\55\74\79\51\54\120\116\51\97\102\54\51\57\79\51\51\57\110\49\51\53\121\55\51\53\80\120\51\65\99\77\51\56\78\49\51\54\112\107\51\50\55\88\51\52\54\50\51\57\73\117\51\97\52\83\51\56\115\112\51\65\52\118\51\57\115\108\51\97\102\103\51\56\97\119\51\56\98\118\51\97\57\76\51\54\108\52\51\57\53\114\51\56\53\75\51\56\79\52\51\56\66\102\51\56\116\119\51\57\89\71\51\56\65\84\51\56\52\83\51\65\98\54\51\54\121\111\50\73\54\50\53\57\50\54\120\50\49\89\50\52\67\50\54\106\50\50\72\51\57\111\81\51\55\69\104\51\57\85\114\51\57\50\50\51\54\121\55\51\57\49\90\51\53\90\83\51\65\53\90\51\57\117\83\51\56\77\119\51\57\55\78\51\65\98\99\49\48\51\57\86\56\51\50\110\104\51\54\82\54\51\55\54\115\51\57\107\78\51\54\82\66\51\65\101\68\51\54\82\70\51\53\54\52\50\49\85\49\56\51\54\98\71\51\56\55\75\51\53\113\101\49\55\51\53\113\100\51\65\100\80\51\57\102\113\51\97\56\104\51\57\50\74\51\56\113\55\51\65\100\117\51\56\48\86\51\55\57\52\51\65\51\53\51\57\50\112\51\57\119\54\51\57\65\69\51\57\71\50\51\97\101\50\51\65\51\66\51\97\69\52\51\97\56\118\51\57\87\68\51\55\105\50\51\65\55\48\51\55\84\112\51\49\50\88\51\54\108\57\51\54\50\87\51\56\108\50\51\55\57\85\51\54\68\52\51\55\56\56\51\56\50\83\51\55\56\56\51\54\115\54\51\53\53\121\51\56\114\109\51\57\120\54\51\56\70\97\50\54\75\51\65\101\65\51\51\55\114\51\57\121\108\51\57\99\48\51\57\81\56\51\65\51\74\51\56\114\57\51\57\113\67\51\57\53\81\51\55\77\100\51\65\99\82\51\97\55\79\51\56\56\108\51\55\104\54\51\65\99\50\51\57\113\114\50\74\110\51\57\57\102\51\57\87\81\51\56\101\98\51\55\79\106\51\54\65\109\51\55\109\122\51\65\99\67\51\52\76\122\51\97\67\111\51\55\79\82\51\56\81\83\51\65\67\112\51\54\50\120\49\83\51\51\110\68\51\50\114\48\51\97\100\50\51\57\103\89\51\57\65\89\51\55\80\99\51\97\56\122\51\56\121\79\51\57\109\65\51\57\71\74\51\56\87\57\51\55\105\50\51\65\57\54\51\56\83\117\51\57\53\55\51\65\51\87\51\55\55\110\51\57\83\56\51\56\51\70\51\65\104\53\51\56\90\51\51\56\84\53\51\56\122\114\51\55\99\84\51\65\57\112\51\56\79\108\51\55\99\74\51\55\82\71\51\97\97\110\51\57\48\72\51\57\54\79\51\56\72\117\51\57\84\115\51\54\87\76\51\51\110\81\51\50\112\66\51\57\90\56\51\55\113\49\51\57\72\48\51\55\113\99\51\53\111\57\51\97\102\75\49\52\51\56\70\69\51\55\51\83\51\51\78\76\51\53\114\89\51\52\114\51\51\53\121\83\51\56\104\103\51\56\105\86\51\57\53\114\51\56\122\98\51\56\53\51\51\55\51\85\51\65\102\67\51\50\55\116\51\55\121\50\51\57\110\102\51\65\49\115\51\56\66\50\51\57\53\82\51\54\101\75\51\54\56\66\51\65\108\51\49\50\51\55\107\55\51\57\112\105\51\65\53\51\51\56\52\85\51\57\73\84\51\54\112\65\51\53\68\68\51\56\98\53\51\51\48\49\51\50\80\66\51\56\111\49\51\53\110\51\51\97\52\55\51\57\48\87\51\97\53\101\51\57\67\54\51\97\49\84\51\97\48\54\51\55\119\74\51\53\101\118\51\65\54\69\51\56\99\108\51\55\101\68\51\55\53\83\51\55\83\87\51\57\85\83\49\74\51\57\50\53\51\51\80\75\50\73\54\50\54\74\50\52\48\50\51\119\50\49\71\49\107\50\54\122\51\57\100\104\51\51\120\77\50\50\67\51\65\48\120\51\54\113\117\51\56\106\100\51\65\49\48\51\50\71\53\51\56\87\49\51\56\105\52\51\56\75\76\51\53\107\72\51\51\98\71\50\111\117\51\65\101\66\51\57\65\86\51\65\101\101\51\53\102\99\51\56\48\51\51\51\55\97\51\57\90\74\51\56\56\70\51\65\54\116\51\56\107\111\51\65\105\86\51\57\56\100\51\54\49\71\51\54\69\103\51\51\99\68\51\49\73\73\51\53\52\109\51\97\55\50\50\122\119\51\97\67\82\51\54\48\108\51\54\97\111\51\55\48\70\51\65\72\69\51\97\67\119\51\55\48\73\51\57\108\84\51\56\76\65\51\53\71\52\51\51\68\71\51\57\55\51\51\57\73\81\51\53\106\77\51\56\68\121\51\65\98\121\51\56\56\107\51\56\119\101\51\56\49\86\51\65\50\50\51\65\50\48\51\55\56\76\51\56\114\81\51\65\99\55\51\53\106\76\51\97\99\114\51\55\86\103\51\56\82\119\51\65\56\49\51\97\49\68\51\57\76\69\51\56\87\120\50\49\110\51\53\65\113\51\56\73\71\51\57\83\113\51\53\54\52\51\57\50\66\51\53\71\103\51\56\108\105\51\54\66\106\51\57\106\121\51\57\82\105\51\65\50\120\51\57\114\107\51\97\72\83\51\55\117\102\51\57\70\117\51\65\56\107\51\65\51\51\51\97\104\120\51\57\97\66\51\97\56\79\51\55\70\78\51\55\57\65\51\65\69\49\51\56\56\55\51\56\49\54\51\97\73\53\51\65\51\68\51\55\50\54\51\54\122\52\51\54\57\87\51\57\88\118\51\56\57\112\51\57\53\49\51\56\103\72\51\57\53\51\51\56\57\115\51\56\89\85\51\65\51\116\51\57\71\78\51\57\115\100\51\55\105\69\51\55\80\82\51\65\107\50\51\56\116\49\51\54\53\68\51\65\107\53\51\55\76\98\51\97\52\51\51\56\71\73\51\55\119\81\51\56\51\117\51\56\57\106\51\57\48\80\51\56\104\110\51\55\114\55\51\57\67\119\51\54\102\51\51\56\104\105\51\56\110\119\51\56\106\115\51\97\107\57\51\57\66\115\51\65\107\98\51\57\48\70\51\65\75\68\51\65\57\118\51\57\116\52\51\56\84\70\51\56\53\51\51\53\83\77\51\52\112\121\51\56\109\122\51\97\107\77\51\57\116\83\51\65\65\52\51\55\68\54\51\54\51\49\51\50\87\78\51\54\109\114\51\54\110\54\51\57\116\68\51\55\88\122\51\97\97\110\51\53\75\100\51\56\86\52\51\65\97\86\51\56\72\49\51\65\106\78\51\57\99\56\51\97\52\118\51\57\57\52\51\53\75\72\51\54\54\116\51\55\66\51\51\52\49\72\51\57\73\54\51\97\103\55\51\56\110\112\51\56\104\71\51\57\105\101\51\54\108\52\51\65\54\81\51\57\121\87\51\54\53\81\51\97\76\119\51\97\54\48\51\65\54\50\51\56\53\120\51\57\117\80\51\65\75\52\51\55\54\107\51\55\54\72\51\57\111\109\51\54\73\76\51\53\49\53\51\65\103\90\51\55\115\82\51\51\68\52\50\52\88\50\54\119\49\85\50\52\103\50\54\51\51\65\49\51\51\52\122\70\51\97\53\55\51\51\66\71\50\50\53\51\53\57\121\51\55\118\115\51\57\53\105\51\53\53\66\51\56\50\74\51\54\82\84\51\54\48\73\51\97\78\67\51\56\120\55\51\53\102\85\51\57\52\55\51\65\78\71\51\57\70\57\51\55\79\81\51\97\78\106\51\56\88\102\51\54\76\77\51\50\48\53\51\57\80\122\51\57\113\49\51\97\49\117\51\51\102\52\51\97\74\49\51\97\110\116\51\56\101\54\51\57\76\48\51\97\110\87\51\54\85\51\51\65\55\85\51\65\50\52\51\97\78\66\51\65\67\57\51\57\87\119\51\97\74\68\51\53\117\103\51\65\49\69\51\56\75\88\51\53\74\89\51\57\51\115\51\56\75\73\51\51\55\82\51\97\49\114\51\65\49\116\51\65\54\79\51\50\78\82\51\97\65\56\51\57\81\105\51\57\115\66\51\97\73\117\51\65\68\69\51\97\73\119\51\57\118\110\51\53\85\89\51\57\50\97\51\57\106\85\51\53\71\103\51\56\102\77\51\57\106\120\51\57\50\102\51\54\83\114\51\97\100\81\51\97\111\108\51\57\118\90\51\97\104\85\51\97\79\79\51\57\87\50\51\65\100\119\51\97\56\110\51\65\100\89\51\65\56\80\51\57\107\99\51\65\51\57\51\97\105\51\51\97\56\116\51\56\109\51\51\56\56\66\51\57\115\48\51\54\107\82\51\97\66\48\51\65\51\78\51\57\109\57\51\65\51\81\51\57\115\53\51\97\51\82\51\56\83\115\51\97\51\116\51\97\112\52\51\97\106\122\51\65\69\81\51\97\57\98\51\56\71\84\51\57\115\72\51\56\71\118\51\97\52\50\51\57\121\67\51\97\85\49\51\54\53\83\51\54\71\53\51\97\112\82\51\55\115\49\51\56\78\49\51\54\70\76\51\56\52\112\51\54\120\51\51\56\79\102\51\97\52\118\51\55\119\84\51\97\81\104\51\65\65\109\51\57\116\70\51\53\77\77\51\97\81\88\51\56\110\105\51\65\53\73\51\54\55\98\51\97\85\109\51\56\104\74\51\57\110\119\51\54\104\53\51\55\98\48\51\65\113\66\51\55\51\99\51\54\104\99\51\53\82\75\51\57\122\49\51\54\102\51\51\97\81\54\51\51\110\114\51\56\80\117\51\57\48\51\51\55\89\106\51\57\73\79\51\57\122\116\51\97\112\120\51\57\79\98\51\57\48\101\51\56\73\112\51\56\97\113\51\97\81\50\51\57\54\111\51\65\97\116\51\56\52\76\51\57\53\82\51\57\54\100\51\97\97\118\51\55\51\75\51\57\116\89\51\56\90\66\51\97\98\54\51\57\111\79\51\54\121\56\51\53\90\83\50\113\69\50\52\118\50\53\49\50\49\57\50\53\52\50\52\74\51\56\106\65\51\55\108\100\51\57\86\90\50\50\56\51\55\80\121\51\54\48\55\51\97\77\50\50\101\49\51\54\89\79\51\65\114\103\51\56\67\116\50\49\66\51\55\73\74\51\97\72\57\51\56\48\48\51\54\80\49\50\50\90\51\57\114\97\51\56\48\73\51\56\48\75\51\54\115\110\51\57\82\71\51\57\86\119\51\57\50\105\51\97\79\109\51\65\56\74\51\55\117\73\51\57\65\56\51\65\84\78\51\57\50\79\51\54\116\55\51\57\71\48\51\97\105\49\51\57\119\56\51\65\51\65\51\65\116\117\51\55\57\105\51\65\84\119\51\65\69\54\51\56\115\99\51\55\97\99\51\56\75\120\51\56\57\49\51\53\53\71\51\54\76\117\51\54\48\76\51\54\108\67\51\57\112\83\51\56\48\52\51\65\78\104\51\53\53\83\51\57\80\118\51\56\76\65\51\55\71\82\51\55\50\99\51\57\101\86\50\54\107\51\56\55\55\51\51\55\65\51\57\117\55\51\97\107\89\51\55\109\100\51\56\74\117\51\97\115\102\51\56\114\75\51\55\72\54\51\54\97\57\51\65\74\53\49\52\51\55\77\83\51\97\50\51\51\97\74\57\51\54\76\85\51\54\65\77\51\54\48\110\51\56\82\119\51\57\88\56\51\65\99\102\51\50\82\121\51\57\114\52\51\55\86\80\51\54\109\111\51\56\57\55\51\56\57\57\50\50\51\51\57\52\119\51\97\84\51\51\97\116\53\51\57\77\50\51\97\54\88\51\57\118\110\51\55\101\90\51\57\71\66\51\51\68\71\51\57\51\50\50\50\51\51\57\51\52\51\56\77\101\51\97\106\114\51\65\106\89\51\57\51\53\51\57\117\50\51\55\50\106\51\65\80\56\51\97\74\120\51\57\83\65\51\57\98\56\51\53\57\49\51\97\85\57\51\55\120\51\51\97\57\99\51\97\117\67\51\54\101\121\51\55\65\116\51\57\53\104\51\55\101\121\51\55\66\90\51\57\66\107\51\56\78\76\51\97\53\107\51\65\81\111\51\55\99\54\51\57\83\66\51\56\51\117\51\65\52\53\51\97\52\55\51\57\67\51\51\53\110\119\51\57\99\53\51\57\79\51\51\57\122\57\51\54\56\98\51\53\103\55\51\57\84\107\51\54\119\101\51\57\116\77\51\65\52\100\51\55\81\49\51\65\78\78\51\56\51\87\51\55\53\48\51\56\110\115\51\57\72\50\51\56\90\71\49\52\51\97\50\79\51\56\110\49\51\53\89\50\51\55\120\51\51\97\66\118\51\57\104\121\51\57\54\104\51\65\102\50\51\55\53\100\51\57\98\85\51\53\120\70\51\57\54\77\51\65\107\101\51\56\73\71\51\97\53\55\51\56\53\51\51\65\122\118\51\57\78\52\51\53\50\98\51\57\78\54\51\97\52\54\51\97\103\73\51\53\88\52\51\57\48\82\51\54\53\118\51\97\53\104\51\56\51\117\51\57\90\84\51\97\52\86\51\57\90\57\51\65\114\53\51\53\101\71\51\56\68\101\51\55\68\104\51\55\115\106\51\65\48\69\51\49\67\79\50\53\48\50\54\104\50\49\51\50\50\67\50\50\99\50\52\83\49\81\49\101\50\51\101\50\54\102\50\51\55\51\65\72\56\51\53\86\79\50\49\48\50\50\83\51\97\77\105\51\57\56\53\51\57\105\122\51\55\101\97\50\101\49\51\56\86\103\51\97\82\100\51\56\68\74\51\55\65\54\51\56\117\119\51\97\84\65\51\54\66\71\51\65\50\83\51\57\50\101\51\65\87\84\51\97\68\82\51\65\104\84\51\97\111\110\51\97\87\120\51\97\56\108\51\65\51\52\51\65\79\114\51\65\84\80\51\65\79\116\51\56\56\52\51\97\73\50\51\65\79\87\51\56\89\104\51\97\111\121\51\65\88\56\51\65\73\55\51\65\48\52\51\57\50\90\51\97\73\108\51\57\86\68\51\53\50\98\51\57\118\70\51\54\49\51\51\97\68\99\51\57\69\48\51\55\116\72\51\57\113\66\51\57\118\110\50\51\70\51\52\67\54\51\56\68\119\51\55\111\74\51\65\120\121\51\57\81\111\51\56\69\54\51\97\121\52\51\65\78\87\51\57\76\48\51\65\83\76\51\97\106\57\51\55\71\120\51\54\109\67\51\97\67\66\51\53\74\83\51\56\56\121\51\97\79\52\51\65\50\100\51\54\90\89\51\57\76\102\51\55\118\80\49\99\51\52\67\54\51\50\114\48\51\97\73\115\51\57\67\100\51\57\107\115\51\54\118\50\51\51\66\103\50\51\97\51\52\57\74\51\55\54\118\51\55\54\90\51\57\51\51\51\55\54\122\51\53\53\98\51\55\86\75\51\55\57\122\51\54\55\79\50\122\119\51\66\51\55\51\55\79\107\51\55\48\68\51\97\78\102\51\57\56\80\51\97\110\105\51\55\48\107\51\56\76\97\51\57\52\100\51\56\114\51\51\65\66\86\51\97\112\51\51\54\52\82\51\97\51\85\51\56\57\82\51\57\109\98\51\65\85\53\51\57\115\57\51\57\121\50\51\57\70\105\51\65\69\80\51\57\121\53\51\65\101\114\51\65\51\122\51\57\106\103\51\57\121\65\51\57\66\72\51\54\120\72\51\54\79\50\51\57\90\85\51\56\79\107\51\97\80\89\51\98\48\71\51\53\87\81\51\65\90\82\51\57\54\78\51\56\105\71\51\97\85\120\51\98\48\116\51\65\117\105\51\55\67\97\51\65\117\120\51\56\52\52\51\97\90\80\51\98\48\105\51\97\117\117\51\54\102\104\51\54\87\73\51\97\90\103\51\54\55\50\51\55\120\74\51\52\69\108\51\57\74\108\51\56\50\72\51\65\122\103\51\66\48\52\51\56\51\111\51\54\119\53\49\52\51\97\103\69\51\54\102\51\51\55\97\53\51\52\66\117\51\54\54\74\51\56\78\49\51\55\98\65\51\55\88\69\51\54\70\55\51\56\110\54\51\56\51\117\51\56\73\85\51\55\87\81\51\97\113\115\51\53\121\55\51\65\86\48\51\97\122\74\51\65\81\120\51\54\49\87\51\65\52\118\51\56\67\67\51\56\53\51\51\98\53\84\51\54\56\67\51\53\79\69\51\54\83\98\51\98\49\50\50\73\51\51\97\104\55\51\65\119\100\50\50\51\51\57\55\114\50\52\53\50\53\48\50\49\116\49\110\50\53\103\51\54\57\53\51\55\122\77\51\97\66\103\51\57\118\49\51\54\89\68\51\57\86\52\51\54\105\115\51\54\48\54\51\97\109\107\51\97\66\56\51\54\81\121\51\54\121\79\51\57\68\118\51\54\70\88\51\57\80\106\51\97\78\49\51\57\52\114\51\97\89\78\51\66\50\116\51\55\49\55\51\57\57\52\51\97\55\104\51\57\51\48\51\50\114\48\51\65\77\122\51\56\70\102\51\54\49\108\51\97\86\71\51\53\78\66\51\97\88\67\51\57\52\49\51\56\57\50\51\56\108\48\51\49\50\120\51\54\48\76\51\57\102\54\51\53\116\49\51\53\115\83\51\56\50\83\51\53\115\115\51\54\108\106\51\56\57\54\51\52\109\83\51\65\55\101\51\97\115\99\51\57\83\98\51\55\77\68\51\98\52\48\51\98\50\122\51\57\51\66\51\56\87\70\51\56\114\109\51\97\110\87\51\97\89\52\51\98\51\53\51\56\107\54\51\56\79\55\51\50\110\116\51\54\122\82\51\56\114\119\51\97\74\102\51\97\110\97\50\50\67\51\53\83\115\51\54\50\120\50\49\106\51\53\52\108\51\56\55\57\51\57\78\82\51\53\71\98\50\50\53\49\55\51\56\70\108\51\56\55\110\51\53\54\69\51\54\48\111\51\98\50\50\51\65\84\73\51\54\115\119\51\55\117\104\51\54\83\90\51\98\50\55\51\97\79\81\51\57\107\57\51\97\104\90\51\65\51\55\51\97\88\51\51\97\116\83\51\66\50\101\51\57\103\53\51\65\84\118\51\56\71\57\51\65\84\120\51\54\52\106\51\56\57\106\51\98\52\98\51\65\57\56\51\57\53\50\51\65\80\54\51\98\52\103\51\56\71\70\51\97\85\103\51\57\71\111\51\65\57\97\51\56\65\49\51\98\52\71\51\97\75\51\51\65\48\100\51\55\87\108\51\56\90\52\51\97\101\120\51\57\78\55\51\56\65\119\51\98\53\112\51\66\53\70\51\55\73\88\51\56\50\104\51\54\56\66\51\55\99\81\51\51\107\48\51\53\77\87\51\53\109\121\51\56\72\48\51\56\72\71\51\65\108\70\51\97\52\52\51\98\55\50\51\65\86\105\51\66\48\70\51\65\86\107\51\56\85\70\51\97\113\49\51\56\111\82\51\56\57\84\51\66\57\82\51\56\73\97\51\57\116\85\51\55\51\67\51\57\84\87\51\57\90\55\51\51\73\55\51\55\51\88\51\97\52\88\51\56\86\51\51\54\76\82\51\65\52\86\51\55\82\80\51\53\110\53\51\57\48\48\51\66\48\66\51\56\51\54\51\53\56\107\51\56\53\51\51\66\57\121\51\98\48\112\51\57\105\105\51\97\81\88\51\56\111\105\51\97\102\83\51\54\120\114\51\57\105\65\51\65\108\116\51\57\79\51\51\57\117\56\51\56\111\51\51\56\84\85\51\57\116\111\51\56\72\111\51\53\100\50\51\57\68\98\51\56\73\88\51\53\111\114\51\57\79\76\51\97\48\97\51\53\112\52\51\56\106\65\51\65\104\52\51\56\74\71\50\50\71\51\98\49\79\51\97\54\51\51\53\112\57\51\49\48\108\49\82\49\103\50\51\52\50\49\115\49\100\50\54\52\50\54\79\51\65\57\68\51\55\68\71\51\97\86\122\51\55\68\105\51\97\54\76\51\56\121\119\51\55\86\49\51\97\106\48\51\57\57\55\51\65\66\122\51\65\74\50\51\56\56\112\51\53\52\103\51\65\110\87\51\97\99\53\51\56\56\82\51\65\115\77\51\54\122\112\51\57\81\88\51\56\56\119\51\66\51\65\51\54\117\68\51\65\67\69\51\97\74\71\51\50\116\120\51\55\56\56\51\54\50\120\49\65\51\55\54\90\51\54\66\49\51\54\66\51\51\97\50\74\51\56\81\111\51\51\98\71\50\51\100\51\51\105\119\51\50\78\82\51\57\113\104\51\65\49\54\50\80\88\50\50\122\51\65\72\106\51\55\85\55\51\55\56\114\51\54\83\110\51\65\104\79\51\98\56\115\51\56\121\51\51\97\87\118\51\97\68\84\51\65\84\76\51\97\100\86\51\97\56\109\51\65\88\48\51\55\57\55\51\65\68\122\51\97\116\114\51\55\85\83\51\55\57\69\51\97\111\88\51\97\56\85\51\97\79\122\51\57\115\49\51\54\49\105\51\97\73\57\51\57\108\109\51\54\85\103\51\57\52\51\51\53\115\88\51\54\122\82\51\54\48\112\51\65\105\104\51\97\55\57\51\55\48\105\51\97\105\106\51\56\108\65\51\97\56\54\51\50\78\82\51\66\65\52\51\97\52\53\51\57\52\75\51\51\55\114\50\109\106\51\54\74\50\51\53\102\57\51\65\116\52\51\65\68\66\51\57\77\48\51\57\56\98\51\57\77\51\51\57\118\110\51\65\89\118\51\56\103\68\51\56\77\102\51\53\117\88\51\66\57\104\51\97\122\48\51\56\89\113\51\54\78\50\51\97\101\77\51\57\66\49\51\57\89\51\51\57\109\71\51\57\115\101\51\97\117\97\51\57\77\106\51\97\57\68\51\57\121\57\51\51\79\108\51\97\52\103\51\55\53\55\51\56\66\79\51\97\76\83\51\56\85\103\51\65\113\75\51\54\56\105\51\98\48\78\51\51\103\52\51\50\112\66\51\65\88\117\51\54\102\51\51\57\78\84\51\65\102\77\51\97\101\89\51\52\84\53\51\57\122\70\51\51\102\107\51\53\71\55\51\50\80\66\51\97\79\97\51\56\105\105\51\65\113\84\51\54\56\73\51\65\75\76\51\65\76\72\51\97\97\103\51\65\76\74\51\65\53\72\51\65\113\81\51\54\108\114\51\56\51\85\51\65\116\57\51\65\113\65\51\65\107\79\51\53\99\114\51\57\122\54\51\57\78\68\50\50\51\51\98\98\49\51\97\97\118\51\97\71\51\51\66\69\52\51\98\55\50\51\57\122\68\51\55\66\122\51\98\52\84\51\57\104\90\51\97\57\82\51\65\53\99\51\65\107\99\51\65\86\109\51\98\65\67\51\53\50\66\51\65\53\55\51\97\71\79\51\97\82\68\51\56\80\112\50\73\52\51\66\66\75\51\57\56\52\51\57\80\98\50\49\56\51\65\48\99\51\53\80\83\50\50\75\51\98\66\79\51\54\56\110\51\97\103\120\51\97\48\101\51\56\53\115\50\100\57\50\53\111\51\49\50\118\50\50\111\50\50\70\51\54\73\57\50\51\48\51\53\81\50\51\98\98\49\51\66\55\51\51\97\51\73\51\97\84\54\51\65\110\52\51\50\110\72\51\98\50\118\51\53\73\53\50\50\117\51\55\84\87\49\56\51\66\50\77\51\50\78\72\51\98\50\111\51\54\66\99\51\55\85\54\51\56\112\122\51\57\82\104\51\53\54\69\51\55\117\65\51\65\72\113\51\65\50\121\51\98\100\57\51\65\84\106\51\66\50\53\51\98\56\119\51\65\111\80\51\56\108\116\51\54\84\53\51\65\111\115\51\55\78\90\51\97\51\56\51\66\100\74\51\57\65\72\51\55\117\86\51\97\88\55\51\98\57\55\51\97\120\57\51\57\122\84\51\56\49\109\51\56\79\118\51\66\67\54\51\97\110\83\51\65\120\122\51\57\113\112\51\53\97\56\51\97\110\119\51\65\55\84\51\65\106\56\51\54\97\73\51\97\89\55\51\56\87\79\51\97\74\99\51\66\67\73\51\52\56\55\51\55\52\49\51\57\56\72\51\51\99\117\51\55\118\110\51\49\99\67\51\54\50\88\51\98\51\72\51\54\49\85\51\97\49\98\51\57\65\89\51\97\121\82\51\51\55\114\51\65\89\116\51\66\101\72\51\98\55\104\51\65\55\48\51\54\99\90\51\51\68\120\51\56\54\116\51\97\115\50\51\53\84\49\51\54\108\101\51\66\100\89\51\53\53\83\51\53\102\77\51\54\108\74\50\49\107\51\51\100\88\51\50\110\114\51\65\53\50\51\57\52\88\51\98\101\106\51\53\79\108\51\57\83\54\51\66\52\102\51\97\121\122\51\57\120\87\51\97\122\51\51\97\98\118\51\56\89\88\51\97\112\100\51\66\57\75\51\56\57\117\51\57\115\103\51\56\116\50\51\98\52\79\51\53\76\56\51\97\90\100\51\65\114\51\51\57\99\112\51\66\48\51\51\57\54\84\51\55\88\113\51\65\97\54\51\65\116\50\51\66\66\50\51\56\53\57\51\57\98\114\51\65\118\106\51\55\53\57\51\66\52\120\51\98\48\74\51\65\118\78\51\56\73\71\51\56\103\67\51\66\101\98\51\98\65\116\51\97\90\120\51\97\113\120\51\97\90\78\51\57\109\118\51\54\103\53\51\57\53\111\51\57\70\103\51\66\70\48\51\56\78\56\51\57\54\65\51\97\52\65\51\55\52\68\51\57\116\109\51\66\53\99\51\55\53\50\51\56\53\53\51\56\97\101\51\98\97\122\51\56\78\49\51\53\87\48\51\57\67\73\51\50\111\106\51\56\99\49\51\97\113\120\51\55\107\117\51\56\53\51\51\57\68\55\51\56\53\54\51\55\73\50\51\54\54\84\51\53\88\116\51\51\118\83\51\97\118\57\51\56\78\49\51\98\76\97\51\65\83\89\51\65\108\57\51\55\52\70\51\65\98\54\51\66\71\89\51\49\70\76\50\90\72\50\50\89\50\53\49\50\54\99\51\98\52\111\51\53\112\116\51\98\98\110\51\66\66\71\51\55\69\53\51\57\111\78\51\66\49\81\51\57\85\88\51\56\53\89\51\97\108\122\51\65\98\105\51\56\106\98\51\51\112\75\51\54\57\50\51\97\119\100\51\56\99\113\51\49\75\111\51\54\114\52\51\53\50\98\51\55\101\115\51\53\105\53\50\51\103\51\51\48\49\51\50\78\114\51\57\103\120\50\50\80\51\54\54\48\51\57\70\105\51\97\67\80\51\57\69\80\51\53\53\103\51\56\54\83\51\57\52\53\51\54\115\48\51\54\68\52\51\54\115\50\51\98\106\66\51\55\79\81\51\53\107\48\51\65\105\107\51\51\100\71\51\97\100\57\51\56\72\108\51\65\89\109\51\97\54\87\51\98\55\54\51\56\68\84\51\56\77\55\51\54\74\74\51\54\83\74\51\55\70\50\51\57\122\105\51\54\66\106\51\53\71\110\51\66\68\56\51\56\48\81\51\65\68\83\51\55\56\90\51\66\100\99\51\65\72\87\51\98\104\120\51\56\48\121\51\98\50\65\51\66\105\48\51\98\57\50\51\66\105\50\51\57\71\52\51\66\105\52\51\57\65\107\51\54\99\80\51\65\88\57\51\54\49\87\51\56\107\118\51\55\109\68\51\54\76\117\51\98\56\48\51\57\69\98\51\56\107\51\51\65\110\119\51\65\74\55\51\97\99\54\51\57\81\118\51\55\109\120\51\54\65\77\51\54\77\101\51\57\119\88\51\66\105\112\51\55\111\102\51\57\88\48\51\65\55\48\51\54\50\120\51\97\120\111\51\57\82\55\51\55\54\114\51\54\49\114\51\57\81\51\51\51\55\65\51\55\112\49\51\97\80\56\51\65\74\113\51\65\51\84\51\65\69\73\51\66\52\105\51\56\83\113\51\97\101\76\51\57\103\76\51\97\97\111\51\56\57\120\51\97\112\99\51\56\97\48\51\56\103\82\51\65\51\121\51\66\57\109\51\65\112\104\51\97\114\97\51\65\122\67\51\54\53\71\51\54\85\117\51\56\72\56\51\57\105\55\51\66\53\50\51\55\52\50\51\65\117\74\51\55\88\53\51\98\75\88\51\51\51\77\51\66\48\97\51\57\83\84\51\56\122\76\51\55\99\86\51\51\102\107\51\55\81\55\51\51\57\115\51\57\122\109\51\56\110\49\51\55\113\116\51\97\53\108\51\57\100\51\51\65\75\84\51\56\112\121\50\73\51\51\97\103\49\51\54\114\71\51\98\48\68\51\98\75\97\51\66\97\56\51\98\75\67\51\56\53\70\51\98\71\101\51\57\105\53\51\66\111\69\51\55\51\55\51\56\51\109\51\57\54\85\51\55\68\54\51\54\54\118\51\57\99\117\51\55\88\102\51\65\108\55\51\57\72\105\51\98\98\50\51\57\67\50\51\56\78\57\51\55\52\79\51\66\52\121\51\53\107\68\51\98\81\56\51\56\53\51\51\98\80\75\51\97\75\83\51\57\72\81\51\65\53\84\51\56\118\53\51\57\79\106\51\53\111\115\51\56\54\54\51\55\53\116\51\98\108\122\51\54\73\120\51\53\69\117\50\68\57\50\52\54\50\49\119\50\52\50\50\52\112\50\53\48\50\51\71\50\55\49\51\53\80\106\51\66\77\50\51\57\118\50\50\50\49\51\97\77\102\51\66\52\112\51\53\89\57\51\57\74\73\51\66\49\51\51\97\109\108\51\53\48\105\51\97\54\67\51\55\68\72\51\55\90\90\51\65\77\79\51\53\105\53\51\54\115\69\51\51\55\82\51\98\55\67\51\65\101\111\51\66\78\48\51\66\50\83\51\97\100\102\51\56\120\86\51\54\49\114\51\57\81\70\51\50\110\114\51\98\48\49\51\97\85\72\51\57\119\90\51\98\105\82\51\55\84\82\51\56\57\52\51\57\70\53\51\49\56\121\51\97\120\105\51\66\52\52\51\65\120\108\51\49\55\107\51\98\55\115\51\55\65\51\51\66\55\86\51\56\70\57\51\55\77\100\51\57\113\108\51\66\73\98\51\56\87\68\51\66\73\68\51\65\83\72\51\97\49\122\51\97\99\51\51\53\106\57\51\66\56\53\51\66\73\73\51\53\85\55\51\97\50\54\51\97\55\88\51\56\114\87\51\57\76\99\51\65\121\67\51\52\50\53\51\57\52\52\51\65\115\119\51\50\82\48\51\66\111\73\51\65\112\76\51\54\49\89\51\53\103\66\51\65\119\111\51\97\50\114\51\97\50\84\51\57\82\70\51\98\72\110\51\57\50\103\51\65\72\114\51\66\104\115\51\98\56\85\51\56\121\54\51\98\50\54\51\98\72\119\51\57\107\56\51\66\72\89\51\66\78\74\51\57\114\85\51\65\56\82\51\97\88\53\51\66\100\108\51\66\57\54\51\57\107\105\51\66\50\73\51\66\57\65\51\57\52\121\51\56\57\111\51\98\52\67\51\65\51\111\51\65\51\117\51\57\83\56\51\66\57\103\51\97\117\56\51\98\52\76\51\65\80\69\51\57\71\82\51\97\69\115\51\98\98\121\51\65\69\116\51\66\75\48\51\66\112\50\51\56\111\97\51\97\97\101\51\66\75\110\51\55\52\50\51\66\75\112\51\56\117\52\51\66\75\50\51\55\107\51\51\54\103\76\51\56\111\48\51\65\102\81\51\56\57\74\51\56\51\117\51\66\98\55\51\56\52\76\51\54\54\84\51\55\73\87\51\65\52\81\51\53\115\78\51\65\71\102\51\98\112\115\51\97\107\65\51\98\52\119\51\66\112\119\51\55\53\104\51\66\107\102\51\53\87\89\51\57\90\101\51\57\72\88\51\65\97\75\51\56\52\53\51\98\81\67\51\57\54\77\51\53\75\100\51\57\74\109\51\54\56\66\51\57\98\109\51\57\89\106\51\56\53\49\51\54\111\103\51\55\73\117\51\53\51\78\51\57\55\56\51\97\74\111\51\56\110\49\51\98\86\52\51\98\103\48\51\66\104\54\51\65\52\118\51\57\74\77\51\98\53\73\51\98\75\52\51\57\72\50\51\55\98\67\51\54\54\55\51\55\67\90\51\97\98\54\51\55\108\74\50\73\54\50\51\50\50\51\120\50\52\116\50\49\84\50\51\110\50\52\54\51\55\69\77\51\57\49\50\51\66\81\81\51\53\79\86\51\98\109\56\51\49\107\112\51\98\49\116\51\98\98\72\51\53\122\50\51\55\76\103\51\98\114\65\51\56\53\116\51\57\56\51\51\97\109\103\51\55\54\81\51\65\51\80\51\97\50\76\51\55\77\54\51\57\74\113\51\53\50\66\51\57\106\83\51\57\87\103\51\57\75\118\51\55\86\52\51\57\81\110\51\66\56\49\51\56\49\86\51\54\50\65\51\66\83\70\51\53\52\48\51\98\115\104\51\98\111\49\51\66\99\101\51\66\83\75\51\56\119\80\51\56\107\65\51\65\115\81\51\56\50\54\51\52\77\56\51\57\52\50\51\66\67\76\51\57\69\115\51\57\120\52\51\65\50\73\51\97\50\107\51\53\54\52\51\57\118\114\51\55\56\77\51\50\48\55\51\97\50\117\51\97\87\113\51\50\103\50\51\97\84\71\51\98\84\51\51\66\78\67\51\66\50\52\51\65\119\87\51\66\104\86\51\65\84\77\51\66\100\101\51\97\104\121\51\97\88\49\51\97\73\48\51\97\79\85\51\98\50\100\51\66\100\75\51\98\50\70\51\66\100\77\51\98\50\104\51\65\51\101\51\54\106\51\51\54\101\69\51\51\66\103\51\56\106\111\51\52\77\115\51\51\113\57\51\52\90\70\50\50\85\51\51\114\51\51\57\113\105\51\57\69\114\51\65\73\65\51\53\83\86\51\66\114\120\51\50\78\84\51\97\55\54\51\97\49\108\51\98\115\49\51\55\79\81\51\65\49\111\50\53\56\51\49\115\79\51\54\83\56\51\51\98\80\51\57\110\71\51\66\72\55\51\65\100\100\51\98\55\53\51\98\82\110\51\55\71\98\51\53\56\57\51\97\117\48\51\65\74\118\51\56\111\98\51\66\87\56\51\57\102\73\51\66\74\81\51\57\115\52\51\56\103\79\51\98\84\115\51\66\106\117\51\56\109\109\51\66\84\86\51\65\90\97\51\98\114\54\51\54\110\73\51\98\107\48\51\57\74\109\51\57\83\66\51\98\85\75\51\66\52\118\51\56\53\100\51\98\75\68\51\66\80\120\51\65\48\51\51\55\114\51\51\54\56\66\51\97\52\69\51\51\90\57\51\52\122\70\51\57\50\57\51\57\54\116\51\55\75\51\51\66\80\107\51\98\53\110\51\57\54\56\51\98\85\117\51\57\99\52\51\98\85\119\51\53\111\108\51\55\101\90\51\54\54\84\51\66\54\57\51\57\101\90\51\97\97\112\51\53\68\50\51\65\112\49\51\57\100\53\51\54\55\66\51\66\122\99\51\98\54\51\51\56\111\100\51\57\68\49\51\57\69\53\51\57\87\121\51\55\87\87\51\54\120\78\51\98\122\65\51\53\78\53\51\56\104\49\51\98\82\106\51\57\72\113\51\55\87\121\51\66\118\101\51\57\67\114\51\55\51\99\51\97\107\113\51\98\103\53\51\57\49\48\51\55\121\84\50\49\56\51\98\103\77\51\57\106\72\51\66\103\111\51\57\100\114\51\66\54\103\51\65\82\99\51\98\87\48\50\114\83\51\51\100\88\50\54\116\51\53\49\78\50\54\106\51\51\74\121\50\54\84\50\50\118\51\97\66\115\51\56\86\56\51\54\89\66\51\66\82\50\51\54\121\68\51\56\80\116\51\53\50\66\51\66\88\82\51\98\52\74\51\55\103\50\51\56\120\51\51\66\56\69\51\66\68\83\51\55\77\69\51\53\83\120\51\97\67\84\51\57\56\78\51\54\82\116\51\56\50\115\51\56\88\101\50\53\56\49\108\51\51\80\113\51\50\78\82\51\98\102\78\51\54\49\82\51\56\55\67\51\65\56\55\51\65\73\110\51\66\114\76\51\56\107\81\51\97\89\111\51\55\49\55\51\65\53\55\51\56\88\88\51\55\56\109\51\57\65\48\51\54\83\78\51\55\70\53\51\98\88\56\51\55\70\55\51\98\88\97\51\57\65\52\51\66\110\100\51\98\56\118\51\55\78\83\51\98\120\70\51\66\50\56\51\98\56\122\51\66\120\73\51\98\57\49\51\66\120\107\51\65\88\52\51\97\116\116\51\66\84\70\51\66\73\53\51\66\116\104\51\65\51\69\51\98\109\99\51\54\49\114\50\51\70\51\51\105\55\51\54\66\65\51\66\79\78\51\55\109\100\51\97\49\86\51\98\83\97\51\98\119\104\51\57\101\98\51\97\89\49\51\56\82\111\51\56\56\113\51\55\86\68\51\56\119\109\51\54\109\67\51\65\115\112\51\66\73\78\51\55\56\55\51\66\56\73\51\56\120\52\51\56\75\71\51\97\73\68\51\52\122\49\51\56\55\48\51\51\55\97\51\97\52\108\51\97\49\53\51\98\111\75\51\98\52\104\51\56\69\82\51\98\121\83\51\66\73\120\51\66\106\118\51\97\85\54\51\57\53\48\51\66\84\114\51\66\57\74\51\53\86\74\51\65\117\66\51\98\74\88\51\98\121\121\51\98\74\122\51\54\53\103\51\65\65\114\51\56\111\97\51\56\122\98\51\67\48\67\51\98\81\50\51\55\51\99\51\53\121\112\49\52\51\66\99\122\51\98\103\57\51\98\48\101\51\66\71\66\51\57\54\74\51\98\90\55\51\66\117\79\51\98\103\70\51\57\55\70\51\55\75\65\51\55\51\117\51\57\76\48\51\57\88\54\51\54\54\116\51\57\115\79\51\57\99\111\51\56\110\49\51\53\83\77\51\50\76\116\51\98\75\55\51\57\53\114\51\98\48\90\51\55\81\51\51\97\97\50\51\67\48\50\51\57\67\97\51\54\53\118\51\98\117\121\51\53\78\53\51\67\52\99\51\54\84\107\51\56\116\54\51\57\70\105\51\98\112\57\51\56\90\90\51\51\110\113\51\57\68\56\51\55\105\109\51\55\119\81\51\66\53\54\51\66\81\66\51\98\90\77\51\98\53\57\51\65\118\50\51\65\53\85\51\55\107\90\50\115\50\50\53\100\50\52\56\49\119\50\53\70\50\49\66\50\50\77\50\54\83\50\53\112\50\51\122\50\52\52\49\102\50\55\51\50\82\111\51\51\66\84\51\97\48\118\51\57\80\98\51\56\112\50\51\56\118\101\51\56\53\86\51\67\48\107\51\66\87\53\51\65\98\84\51\97\114\100\51\53\90\51\51\67\49\50\51\55\53\113\51\56\87\48\51\53\81\50\51\57\57\52\51\67\49\115\51\57\81\97\51\98\121\74\51\98\104\73\51\57\86\71\51\98\52\74\51\55\109\100\51\55\77\88\51\98\110\119\51\55\109\108\51\98\78\89\51\66\87\108\51\57\57\98\51\57\76\57\51\66\56\54\51\99\51\48\51\53\117\97\51\56\114\86\51\57\119\88\51\65\114\120\51\66\51\68\51\57\52\66\51\54\50\120\49\68\51\51\115\72\51\57\81\53\51\56\55\97\50\54\107\50\51\55\51\51\107\90\51\50\78\114\51\51\83\65\51\52\90\70\50\51\103\51\51\116\57\51\54\66\99\51\97\79\68\51\53\113\66\51\99\49\90\51\53\54\101\51\97\79\72\51\99\50\50\51\57\102\80\51\66\104\114\51\66\88\98\51\66\68\97\51\98\110\69\51\66\84\55\51\67\50\57\51\66\56\121\51\98\116\97\51\66\57\48\51\66\100\72\51\66\105\49\51\56\56\54\51\66\88\109\51\98\57\53\51\67\50\73\51\66\78\113\51\66\50\105\51\55\72\89\51\66\73\122\51\98\51\82\51\55\54\88\51\66\51\85\51\98\100\48\51\67\49\57\51\56\119\86\51\99\49\99\51\97\67\83\51\98\106\56\51\99\49\102\51\57\52\56\51\65\88\75\51\97\83\54\51\66\52\54\51\52\90\49\51\54\56\82\51\57\75\111\51\53\100\99\51\97\56\89\51\99\51\75\51\66\57\67\51\66\57\69\51\55\105\54\51\66\57\102\51\55\80\69\51\97\112\66\51\65\75\48\51\98\116\116\51\66\111\119\51\65\112\71\51\97\90\98\51\98\111\89\51\66\80\48\51\67\48\49\51\57\89\105\51\98\117\71\51\52\102\65\51\53\53\56\51\56\85\119\51\57\115\66\51\55\52\70\51\56\72\114\51\56\68\121\51\98\122\122\51\56\117\65\51\67\52\52\51\55\67\73\51\66\117\109\51\57\54\76\51\98\90\56\51\56\65\83\51\55\119\121\51\97\53\48\51\54\55\53\51\66\48\56\51\66\113\48\51\56\65\87\51\56\53\53\51\98\90\115\51\57\72\113\51\97\118\104\51\66\117\84\51\66\53\55\51\55\52\112\51\99\53\56\51\56\74\114\51\98\107\108\51\57\80\74\51\54\56\98\51\55\98\104\51\50\76\116\51\55\66\106\51\65\103\109\51\65\108\55\51\66\122\50\51\66\117\50\51\56\111\54\51\55\119\120\51\55\121\102\51\98\90\103\51\53\89\107\51\99\51\121\51\53\79\57\51\99\52\48\51\99\49\78\51\67\53\65\51\98\81\77\51\67\53\119\51\55\54\48\51\97\119\71\51\57\50\54\51\67\53\122\51\98\71\118\51\97\119\72\50\51\48\50\102\74\50\49\121\49\57\50\50\53\50\50\81\50\50\115\50\54\67\50\53\86\50\53\100\50\54\74\50\53\121\49\85\51\56\99\90\51\57\56\49\51\66\77\55\51\53\49\52\51\54\121\54\51\66\67\50\51\67\49\53\51\98\101\65\51\67\54\54\51\57\86\108\51\97\116\55\51\55\49\55\51\67\50\108\51\53\53\66\51\65\89\66\51\99\49\97\51\53\53\103\51\57\69\55\51\54\48\108\51\66\121\54\51\99\49\102\51\65\99\118\51\97\83\53\51\56\50\107\51\54\108\106\51\49\103\78\51\51\68\71\51\98\76\48\51\54\52\107\51\65\52\72\51\65\68\74\51\56\80\89\51\53\71\103\51\57\82\68\51\97\56\68\51\98\110\66\51\67\50\53\51\66\88\99\51\66\68\98\51\67\55\72\51\98\68\100\51\99\50\97\51\99\55\107\51\99\50\99\51\99\55\77\51\98\110\108\51\67\55\79\51\98\105\51\51\56\77\50\51\67\55\82\51\54\84\107\51\98\57\56\51\65\112\115\51\97\101\102\49\53\51\51\98\103\50\51\74\51\54\48\121\49\56\51\56\108\68\51\57\70\104\51\65\105\79\51\98\55\97\51\97\83\50\51\66\112\105\51\98\50\88\51\66\55\122\51\67\50\84\51\57\87\75\51\55\72\51\51\67\50\119\51\55\104\51\51\53\85\48\51\99\54\75\51\56\50\48\51\56\50\50\51\56\87\111\51\54\65\79\51\66\56\98\51\56\50\55\51\98\83\112\51\65\56\51\51\98\55\108\51\55\86\112\51\99\49\75\51\98\73\87\51\66\52\97\51\98\116\75\51\66\69\75\51\98\121\110\51\57\88\121\51\65\117\52\51\67\51\74\51\99\51\70\51\97\51\70\51\67\54\98\51\65\57\57\51\98\69\84\51\65\122\56\51\67\51\112\51\97\117\100\51\67\51\113\51\97\69\87\51\53\50\66\51\56\110\73\51\56\53\51\51\54\54\118\51\57\90\48\51\53\103\56\51\54\112\120\51\98\90\51\51\57\54\102\51\54\103\83\51\66\117\76\51\54\71\88\51\65\48\48\51\57\122\82\51\54\79\120\51\98\112\121\51\56\66\49\51\67\57\81\51\54\70\81\51\54\104\55\51\54\104\54\51\55\88\81\51\57\99\116\51\99\53\48\51\56\54\109\51\57\48\51\51\98\122\67\51\98\75\55\51\57\99\108\51\51\77\48\51\50\112\98\51\99\67\105\51\66\107\82\51\54\54\66\51\65\102\85\51\53\78\119\51\65\70\87\51\54\120\119\51\57\122\57\51\55\105\110\51\65\103\74\51\57\109\120\51\55\114\56\51\66\108\107\51\97\118\113\51\98\49\48\51\55\113\49\51\56\122\111\51\51\72\106\51\57\78\81\51\55\80\66\51\56\51\85\51\57\77\111\51\65\71\66\51\56\90\121\51\55\75\55\51\57\78\75\51\65\114\112\51\56\56\70\51\98\54\100\51\66\71\110\51\65\119\70\51\66\114\65\51\65\98\97\51\54\89\54\51\99\53\117\51\66\99\48\50\50\54\51\66\98\106\51\98\86\86\51\57\50\49\51\55\54\110\51\97\119\56\51\53\48\108\49\106\50\70\106\49\48\50\50\87\50\54\71\50\54\70\50\50\56\50\50\89\50\50\80\50\49\73\50\54\67\50\51\50\49\53\50\53\55\51\53\81\50\51\57\121\100\51\98\99\70\51\67\54\101\51\55\104\51\51\97\74\52\51\56\114\111\51\99\67\86\51\66\83\105\51\57\108\54\51\56\119\110\51\50\110\84\51\57\113\121\51\66\87\84\51\98\109\76\51\57\88\57\51\55\104\76\51\99\51\56\50\53\56\51\97\68\48\51\51\55\114\51\66\77\89\51\66\50\80\51\66\69\100\51\57\118\107\51\57\56\67\51\56\49\74\51\56\68\84\51\57\119\70\51\53\53\98\51\98\67\107\51\54\65\118\51\54\122\56\51\99\49\68\51\99\56\52\51\57\101\82\51\67\49\104\51\55\71\111\51\52\122\49\49\116\51\65\49\57\49\56\51\67\57\51\51\65\101\57\51\57\97\83\49\56\51\65\86\118\51\54\87\117\51\55\103\50\51\99\49\88\51\57\102\108\51\55\110\70\51\54\51\99\51\57\86\116\51\67\55\98\51\57\82\106\51\56\121\50\51\99\55\101\51\66\72\84\51\66\120\100\51\99\50\56\51\67\98\90\51\67\55\106\51\98\78\73\51\67\55\76\51\97\84\113\51\67\55\110\51\57\107\69\51\99\50\72\51\98\110\112\51\67\67\57\51\65\88\57\51\97\115\90\50\54\75\51\66\109\69\51\51\55\97\51\66\51\107\51\55\99\116\51\98\57\66\51\97\69\111\51\56\57\114\51\54\101\71\51\57\53\52\51\98\79\81\51\99\68\66\51\57\51\53\51\98\111\84\51\57\98\98\51\56\115\122\51\65\122\57\51\98\57\78\51\98\121\90\50\109\50\51\98\75\48\51\56\97\117\51\99\65\51\51\56\90\121\51\97\107\86\51\50\85\108\51\66\65\100\51\57\122\65\51\67\69\54\51\56\78\49\51\66\48\111\51\97\112\118\51\98\53\79\51\99\56\121\51\57\52\71\51\67\51\120\51\55\120\113\51\57\54\119\51\65\97\55\51\97\103\53\51\55\113\104\51\57\48\51\51\65\81\117\51\53\78\54\51\98\53\86\51\67\56\103\51\55\52\48\51\66\48\85\51\65\53\53\51\56\50\121\51\56\73\105\51\99\52\51\51\66\80\84\51\99\52\53\51\99\57\55\51\57\98\118\51\66\75\69\51\99\52\57\51\56\105\104\51\54\79\71\51\66\48\79\51\65\108\80\51\57\122\110\51\56\51\85\51\56\116\57\51\97\122\111\51\67\53\54\51\97\90\113\51\66\122\110\51\56\100\107\51\66\65\79\51\67\52\79\51\56\118\52\51\65\66\54\51\56\112\76\51\67\70\78\51\55\69\66\51\67\54\49\51\97\77\49\51\66\113\111\51\97\109\51\51\99\100\79\51\67\56\114\51\98\103\78\51\99\102\81\50\55\55\50\51\48\50\51\48\50\79\115\50\50\97\50\51\55\50\49\74\50\54\73\49\70\50\52\88\50\52\75\49\53\50\50\74\50\50\57\50\50\73\50\51\52\50\52\57\50\101\50\51\99\102\70\51\98\54\88\51\53\48\104\51\65\109\110\51\55\113\118\51\53\73\85\51\53\71\66\51\56\102\75\51\56\108\104\51\65\104\80\51\54\83\110\51\56\70\111\51\66\104\81\51\65\111\107\51\98\84\52\51\56\89\53\51\56\76\81\51\99\55\73\51\66\78\72\51\56\121\98\51\99\99\51\51\99\50\69\51\66\57\51\51\99\55\80\51\66\78\79\51\57\75\72\51\67\55\83\51\65\51\69\51\98\78\52\51\54\83\99\51\97\88\115\51\97\105\82\51\52\57\106\51\57\99\99\51\54\67\117\51\97\82\88\51\54\67\121\51\56\113\116\51\66\51\102\51\54\50\78\51\54\55\121\51\67\49\102\51\55\65\48\51\56\70\50\51\51\68\52\51\55\48\108\51\55\48\78\51\57\52\102\51\99\53\51\51\54\57\119\51\65\122\53\51\54\57\89\51\66\67\53\51\97\110\114\51\66\115\98\51\98\51\48\51\53\74\57\51\65\115\105\51\99\54\104\51\65\110\120\51\65\89\53\51\54\97\105\51\56\114\116\51\56\119\79\51\66\56\97\51\57\87\88\51\57\57\110\51\67\68\51\51\51\52\65\51\56\69\109\51\55\86\112\51\98\52\56\51\51\55\114\51\56\57\56\51\52\90\102\51\65\89\107\51\57\100\121\51\97\54\117\51\98\101\101\51\99\49\117\51\56\100\116\51\55\111\88\51\51\98\104\51\65\73\108\51\98\108\106\51\99\56\101\51\99\100\103\51\98\84\110\51\56\103\73\51\65\90\49\51\98\101\111\51\67\73\72\51\97\89\121\51\66\111\83\51\67\56\109\51\98\89\86\51\97\112\57\51\66\52\110\51\98\121\121\51\97\69\118\51\66\90\48\51\54\53\103\51\98\48\77\51\54\55\98\51\53\99\118\51\56\73\51\51\66\54\98\51\57\122\110\51\66\54\48\51\51\78\76\51\65\118\98\51\67\106\87\51\98\48\50\51\55\75\51\51\57\116\74\51\52\49\115\51\99\56\84\51\55\88\50\51\54\111\48\51\65\105\121\51\56\116\85\51\67\69\117\51\98\98\98\51\53\68\111\51\56\84\70\51\99\75\48\51\98\75\84\51\57\48\121\51\98\117\73\51\98\85\54\51\67\65\52\51\55\120\113\51\54\70\76\51\50\113\80\51\67\72\67\51\99\74\109\51\99\69\48\51\98\112\118\51\67\57\56\51\67\52\56\51\99\101\53\51\56\110\53\51\65\113\88\51\66\48\82\51\55\82\113\51\53\117\86\51\98\55\102\51\97\81\120\51\98\54\55\51\57\90\103\51\55\52\54\51\57\52\103\51\97\98\54\50\69\90\50\54\51\51\52\90\76\49\121\50\49\110\50\49\68\50\51\121\50\49\87\50\50\106\51\98\54\86\51\99\75\65\50\69\49\51\57\106\53\51\99\102\103\51\57\100\69\51\97\87\55\51\98\119\53\51\67\97\69\51\67\48\113\51\98\103\81\51\51\76\111\50\50\111\51\98\87\55\51\65\85\107\51\53\102\99\51\65\109\115\51\52\77\83\51\98\75\55\51\56\119\52\51\56\119\54\51\67\52\104\51\98\50\88\51\66\87\102\51\56\106\87\51\99\67\82\51\65\55\113\51\98\105\70\51\99\109\79\51\66\79\48\51\98\99\100\51\97\74\57\51\99\109\115\51\50\110\116\51\99\54\78\51\99\71\106\51\56\56\90\51\67\51\53\51\66\87\120\51\97\99\71\51\99\68\53\51\52\122\49\51\56\50\100\51\55\101\119\51\67\111\97\51\65\56\50\51\53\106\87\51\57\88\97\51\56\113\85\51\56\76\50\51\66\100\86\51\65\55\55\51\65\73\76\51\99\56\55\51\67\66\73\51\65\55\99\51\65\73\108\51\98\82\115\51\66\68\48\51\66\121\103\51\98\50\114\51\99\49\84\51\98\78\50\51\53\83\101\51\54\71\103\51\53\71\66\51\97\100\75\51\53\103\103\51\98\120\53\51\54\98\74\51\97\68\111\51\97\111\73\51\97\56\71\51\67\76\71\51\57\119\48\51\66\110\102\51\56\55\89\51\67\104\87\51\99\76\108\51\99\72\90\51\99\99\52\51\67\73\49\51\66\120\110\51\98\116\103\51\67\108\115\51\55\50\54\51\66\106\78\51\97\89\119\51\65\80\97\51\66\69\108\51\66\79\106\51\67\78\74\51\55\73\55\51\67\110\108\51\66\99\51\51\98\69\83\51\66\74\84\51\98\79\86\51\98\57\108\51\99\56\80\51\57\71\117\51\57\79\83\51\57\89\98\51\99\52\120\51\99\80\50\51\53\106\75\51\65\102\100\51\57\48\51\51\67\110\121\51\52\48\118\51\66\107\118\51\54\102\51\51\53\119\48\51\50\80\98\51\67\57\73\51\66\113\57\51\55\106\110\51\65\50\78\51\99\69\80\51\99\69\51\51\57\48\110\51\55\52\54\51\57\122\102\51\53\100\56\51\54\70\85\51\57\78\85\51\55\121\80\51\56\72\76\51\66\80\53\51\57\89\102\51\54\103\55\51\55\52\121\51\99\70\55\51\53\99\108\51\97\102\105\51\55\68\54\51\56\105\101\51\99\73\97\51\66\122\116\51\53\100\79\51\57\122\116\51\98\112\51\51\99\101\56\51\55\107\51\51\53\110\56\51\50\112\66\51\67\113\53\51\67\79\98\51\53\76\114\51\56\98\77\51\57\72\89\51\97\102\49\51\67\106\79\51\67\69\49\51\65\70\53\51\67\83\86\51\98\48\75\51\56\79\83\51\56\107\85\51\56\52\76\51\67\112\65\51\49\52\113\50\50\53\50\53\66\50\50\97\50\49\69\50\51\115\50\51\51\50\49\81\50\53\88\50\51\111\51\54\57\53\51\55\76\74\51\98\54\90\51\99\53\86\51\99\112\108\51\98\86\120\51\65\48\70\51\99\107\67\51\55\122\114\51\56\53\83\51\67\102\81\51\98\54\85\51\51\66\116\49\87\51\67\112\87\51\53\113\50\51\66\109\105\51\67\103\115\51\99\78\55\51\67\103\117\51\98\101\70\51\55\49\55\51\57\68\120\51\99\55\86\49\53\51\66\106\73\51\67\103\90\51\97\115\83\51\56\104\79\51\65\82\90\51\51\67\76\51\97\78\100\51\56\101\55\51\66\83\48\51\55\50\99\51\67\98\104\51\53\53\99\51\98\83\51\51\57\120\75\51\51\117\98\51\65\53\115\51\54\53\81\51\98\83\119\51\57\82\66\51\98\120\52\51\55\56\79\51\53\103\108\51\65\87\83\51\99\108\69\51\67\104\81\51\67\66\86\51\99\55\102\51\99\50\55\51\56\81\57\51\99\72\86\51\99\76\75\51\57\119\53\51\67\50\100\51\66\50\67\51\67\50\102\51\66\57\52\51\67\76\113\51\97\101\53\51\98\50\73\51\67\71\89\51\99\114\54\51\66\78\117\51\56\56\73\51\99\67\81\51\97\49\88\51\55\86\97\51\54\97\68\51\65\83\106\51\56\82\109\51\67\99\87\51\65\67\56\51\54\77\99\51\55\104\101\51\67\113\106\51\66\111\55\51\66\115\79\51\67\86\66\51\56\87\120\51\66\106\70\51\67\100\56\51\55\73\50\51\51\66\71\51\55\84\53\51\57\112\89\51\56\70\56\51\67\105\66\51\67\68\97\51\66\74\76\51\99\68\69\51\65\101\106\51\97\57\52\51\55\50\78\51\99\83\53\51\66\79\110\51\99\77\103\51\55\50\83\51\66\89\85\51\99\51\111\51\66\69\86\51\66\79\90\51\67\68\78\51\56\97\55\51\56\51\74\51\56\72\103\51\65\65\118\51\53\88\82\51\98\102\105\51\53\87\89\51\97\111\66\51\54\54\116\51\54\102\54\51\55\67\51\51\98\86\54\51\57\67\56\51\99\84\104\51\57\66\80\51\56\105\76\51\66\90\53\51\55\89\57\51\98\97\97\51\99\57\57\51\57\84\52\51\67\74\122\51\65\65\117\51\66\70\119\51\56\122\101\51\66\65\104\51\49\52\81\51\50\113\112\51\98\112\113\51\54\111\51\51\55\66\104\51\50\80\66\51\98\70\99\51\66\101\82\51\57\76\107\51\98\102\80\51\65\71\76\51\97\57\72\51\54\55\66\51\99\89\51\49\50\51\99\57\86\51\56\66\106\51\98\65\110\51\99\69\109\51\57\111\48\51\97\81\105\51\67\57\79\51\67\79\73\51\65\52\118\51\97\113\52\51\53\110\53\51\56\65\69\51\99\102\51\51\57\88\119\51\98\103\73\51\66\87\48\51\66\71\75\51\67\73\80\51\53\49\53\50\115\50\50\52\48\50\53\120\50\53\56\50\54\48\50\53\116\50\50\97\50\54\54\50\53\81\50\52\118\50\53\116\50\49\107\50\50\89\50\52\89\51\66\87\50\51\67\76\51\51\55\53\88\51\97\48\85\50\50\87\51\98\103\79\51\99\48\75\51\53\90\79\51\56\74\65\51\55\101\69\51\57\112\72\51\57\84\122\51\65\104\68\51\51\100\71\51\67\116\68\51\56\112\87\51\99\66\113\51\53\81\98\51\56\81\48\51\99\82\72\51\97\56\101\51\67\82\74\51\65\84\104\51\67\114\108\51\65\116\107\51\99\66\89\51\66\110\71\51\66\116\57\51\67\104\120\51\67\99\50\51\99\114\82\51\99\108\78\51\66\110\109\51\97\69\51\51\66\120\79\51\66\105\54\51\66\50\105\51\98\78\115\51\54\49\89\51\99\81\84\51\66\105\81\51\53\53\71\51\57\112\112\51\99\118\54\51\56\81\88\51\67\82\48\51\67\118\97\51\97\55\66\51\97\115\87\51\54\85\51\51\65\105\110\51\67\120\50\51\50\110\77\51\99\54\68\51\67\87\55\51\97\67\48\51\56\101\54\51\56\119\103\51\56\114\79\51\55\86\98\51\99\119\100\51\53\74\108\51\57\80\80\51\97\74\66\51\54\113\51\51\67\51\51\51\51\55\55\51\55\116\79\51\55\79\70\51\99\77\50\51\56\50\75\51\66\111\98\51\55\118\114\49\53\51\67\78\51\51\53\50\66\51\67\78\53\51\67\82\55\51\65\54\86\51\98\82\109\51\67\66\53\51\98\110\51\51\56\83\100\51\65\88\114\51\56\55\56\51\98\81\105\51\66\69\73\51\97\121\120\51\57\88\54\51\66\97\117\51\97\80\53\51\57\77\56\51\67\56\106\51\57\52\122\51\99\74\103\51\99\88\51\51\67\51\110\51\57\66\67\51\66\106\87\51\55\97\86\51\57\53\69\51\66\116\88\51\67\120\97\51\67\111\78\51\56\122\89\51\57\55\99\51\67\79\53\51\54\87\97\51\53\120\84\51\67\53\50\51\97\98\118\51\65\52\86\51\57\84\72\51\54\55\98\51\53\121\97\51\50\76\84\51\67\48\57\51\99\73\89\51\98\85\53\51\67\111\54\51\99\79\111\51\57\104\50\51\56\97\101\51\50\81\112\51\99\69\76\51\99\88\78\51\55\53\57\51\99\79\117\51\56\111\78\51\67\74\113\51\99\120\83\51\57\54\79\51\66\72\54\51\67\57\90\51\54\113\49\51\66\117\52\51\66\66\49\51\57\84\55\51\53\56\83\51\98\70\106\51\57\116\98\51\54\56\66\51\100\50\104\49\49\51\57\109\84\51\55\88\87\51\99\57\108\51\99\75\49\51\66\53\56\51\98\75\117\51\55\87\111\51\99\80\48\51\57\73\106\51\57\117\57\51\66\66\101\51\56\53\111\51\67\122\72\51\67\49\48\51\55\54\78\51\67\107\108\51\67\48\112\51\98\108\120\51\53\90\50\51\97\82\57\51\97\71\89\51\66\87\51\51\53\69\85\50\79\115\50\49\51\51\66\54\104\50\54\112\50\49\71\50\50\54\50\54\69\50\54\54\50\52\84\49\56\50\54\100\49\76\50\50\118\50\49\101\50\54\50\51\97\82\79\51\99\66\49\51\67\117\115\51\65\78\50\51\66\72\57\51\99\103\119\51\53\83\69\51\56\52\100\51\65\68\73\51\57\57\89\51\53\113\98\51\57\102\77\51\57\65\49\51\99\86\110\51\57\65\51\51\57\118\121\51\98\116\53\51\67\76\73\51\99\118\116\51\68\48\50\51\99\114\113\51\66\50\98\51\56\108\89\51\99\86\121\51\99\108\80\51\99\67\55\51\99\73\51\51\56\113\77\51\98\75\75\51\54\49\82\51\54\75\85\51\51\100\71\51\99\110\69\51\54\49\82\51\99\99\76\51\98\122\106\51\98\89\48\51\97\111\53\51\52\56\102\51\56\82\90\51\98\68\84\51\55\79\75\51\65\78\101\51\54\68\52\51\56\50\114\51\98\109\84\51\57\105\82\51\54\108\74\51\56\88\71\51\52\109\115\51\100\51\98\51\65\110\111\51\99\50\83\51\67\109\74\51\67\50\85\51\57\107\122\51\66\115\101\51\97\89\50\51\97\115\75\51\99\71\69\51\54\90\111\51\55\72\67\51\66\79\52\51\65\55\121\51\100\49\52\51\55\72\104\51\57\114\49\51\98\55\73\51\50\116\88\51\57\57\114\51\65\50\71\51\99\119\78\51\65\51\85\51\98\121\109\51\98\74\79\51\99\78\105\51\98\69\110\51\99\83\52\51\57\77\68\51\66\52\68\51\67\68\106\51\67\83\56\51\53\57\56\51\66\84\85\51\99\78\82\51\57\83\105\51\98\98\89\51\57\71\120\51\57\89\68\51\99\48\51\51\97\103\107\51\54\53\118\51\57\99\48\51\67\53\52\51\98\117\116\51\99\69\111\51\53\65\119\51\99\101\113\51\53\107\68\51\67\79\105\51\56\51\85\51\65\85\120\51\56\51\85\51\65\79\98\51\97\117\121\51\53\100\56\51\57\56\119\51\53\52\57\51\99\118\102\51\67\116\73\51\54\54\49\51\54\104\57\51\55\68\54\51\65\86\55\51\55\56\108\51\55\106\72\51\100\55\69\51\56\122\121\51\56\117\89\51\67\115\73\51\56\78\49\51\100\55\66\51\57\105\103\51\66\101\122\51\68\50\115\51\99\84\114\51\67\57\54\51\67\116\84\51\55\67\108\51\99\69\81\51\99\84\87\51\66\122\69\51\57\67\68\51\99\121\109\51\57\99\88\51\53\121\55\51\67\120\105\51\52\117\53\51\97\52\82\51\56\78\49\51\57\122\104\51\67\48\103\51\57\79\73\51\57\49\49\51\97\77\52\51\99\112\85\51\51\105\88\50\50\71\51\57\100\75\51\99\85\102\51\67\117\98\51\66\54\103\51\56\74\65\51\67\48\110\50\55\66\50\52\98\50\68\56\49\68\50\55\49\50\49\103\50\52\86\51\57\106\74\51\67\53\122\51\67\98\48\51\66\107\81\51\57\53\106\51\98\68\81\51\65\99\80\51\54\48\105\51\98\52\48\51\65\88\71\51\55\67\75\51\57\73\82\51\56\54\88\50\56\54\51\54\108\74\51\56\101\111\51\52\77\83\51\67\51\99\51\99\100\87\51\65\55\104\51\65\50\109\51\57\57\118\51\98\52\105\51\57\57\120\51\52\78\81\51\53\71\103\51\55\70\51\51\100\52\80\51\99\90\87\51\99\50\52\51\100\52\115\51\67\76\72\51\65\51\50\51\67\108\106\51\68\52\87\51\67\86\118\51\99\108\109\51\99\86\120\51\99\76\79\51\99\99\54\51\57\87\98\51\98\88\80\51\55\50\54\51\56\90\66\51\56\55\98\51\53\70\70\51\97\72\107\51\54\50\76\51\57\104\72\51\55\74\105\51\97\66\87\51\56\82\72\51\57\69\57\51\68\48\85\51\53\106\57\51\53\97\57\51\97\110\119\51\57\101\70\51\100\48\90\51\66\51\122\51\53\66\50\51\67\77\84\51\54\122\83\51\57\87\120\51\65\50\66\51\99\51\54\51\57\73\82\51\54\50\88\51\99\51\65\51\57\51\86\51\98\99\83\51\66\120\49\51\100\49\71\51\67\110\56\51\67\114\97\51\54\49\71\51\65\53\72\51\68\54\69\51\56\57\88\51\66\69\109\51\98\57\100\51\99\68\70\51\55\115\48\51\65\85\55\51\67\73\74\51\99\110\79\51\67\88\53\51\68\50\49\50\73\51\51\57\109\75\51\67\56\83\51\98\112\122\51\68\50\107\51\54\87\102\51\98\90\52\51\66\107\66\51\100\50\118\51\68\51\70\51\55\67\78\51\98\117\80\51\66\55\49\51\57\48\51\51\56\104\49\51\67\97\56\51\55\82\52\51\99\111\102\51\65\117\106\51\65\52\53\51\67\52\122\51\98\108\69\51\66\75\106\51\66\54\53\51\67\52\79\51\66\65\81\51\51\70\107\51\54\112\116\51\52\72\57\51\97\118\68\51\99\52\73\51\54\76\52\51\67\121\69\51\57\98\74\51\99\105\116\51\53\99\108\51\67\48\68\51\53\79\57\51\53\65\106\51\57\116\88\51\51\110\81\51\56\98\121\51\55\98\109\51\53\65\114\51\99\57\77\51\66\113\100\51\53\111\108\51\98\85\68\51\54\78\121\51\56\51\117\51\56\105\48\51\53\100\56\51\100\99\49\51\56\104\50\51\54\56\102\51\55\115\50\51\68\51\108\51\51\112\114\51\99\80\82\51\67\78\116\51\99\97\72\51\100\56\101\51\98\109\53\51\51\67\117\50\53\67\50\50\111\50\52\53\49\80\51\66\76\119\51\57\55\80\51\68\51\117\51\57\100\73\51\56\67\105\51\98\54\113\51\65\54\70\51\55\53\113\51\57\56\54\51\67\103\54\51\66\57\104\51\56\54\114\51\54\97\48\51\68\53\117\51\99\113\57\51\56\49\118\51\57\57\99\51\67\77\79\51\56\75\51\51\100\65\103\50\49\121\51\57\101\106\51\56\107\57\51\56\114\119\51\100\97\109\51\54\113\50\51\67\113\110\51\56\87\88\50\69\74\51\51\55\65\51\66\118\65\51\56\117\119\51\97\116\48\49\56\51\99\82\53\51\57\73\114\51\57\82\50\51\57\56\106\51\49\52\81\51\55\84\84\49\51\51\100\48\106\51\66\121\56\51\99\82\50\51\52\122\49\51\98\69\50\51\65\115\97\51\67\119\115\51\98\114\107\51\98\101\67\51\67\117\84\51\97\78\51\51\68\52\73\51\54\49\103\51\57\55\65\51\55\55\66\51\51\109\48\51\50\114\48\51\99\52\50\51\99\72\105\51\67\66\112\51\65\104\108\51\57\106\87\51\53\54\69\51\99\114\105\51\67\104\111\51\65\111\106\51\67\86\111\51\68\57\111\51\67\114\109\51\100\48\48\51\67\82\111\51\67\86\85\51\98\72\122\51\66\116\99\51\97\79\86\51\68\53\49\51\100\57\89\51\68\48\97\51\97\51\101\51\57\83\50\51\67\87\85\51\100\49\82\51\98\84\79\51\57\77\102\51\65\74\116\51\100\49\118\51\66\116\108\51\100\49\88\51\98\57\73\51\99\100\107\51\68\66\56\51\98\89\120\51\67\73\111\51\65\57\101\51\55\97\86\51\65\52\51\51\67\68\114\51\53\110\53\51\57\115\111\51\100\53\57\51\57\90\76\51\66\53\97\51\65\53\110\51\97\75\73\50\73\51\51\99\118\48\51\98\52\74\51\56\122\65\51\54\87\117\51\98\97\55\51\67\116\115\51\67\88\113\51\57\116\50\51\67\101\52\51\97\48\51\51\53\117\89\51\54\120\55\51\57\66\68\51\98\121\112\51\65\107\110\51\99\120\88\51\53\111\57\51\54\80\84\51\57\78\99\51\56\117\85\51\98\103\49\51\56\85\87\51\57\55\53\51\55\98\90\51\67\57\69\51\57\116\110\51\97\112\81\51\55\67\65\51\54\103\56\51\56\79\97\51\66\113\56\51\56\105\86\51\56\53\51\51\57\115\79\51\99\52\50\51\97\117\115\51\56\116\78\51\67\57\79\51\56\99\99\51\99\85\48\51\99\122\99\51\66\82\66\51\57\79\82\51\54\57\53\50\100\57\50\54\77\50\52\82\50\50\83\50\50\53\50\113\53\50\53\98\50\54\76\51\99\85\100\51\98\67\48\51\66\49\54\51\67\102\114\51\65\48\56\51\67\80\76\51\54\56\111\51\53\86\109\51\54\113\101\51\68\52\68\51\54\79\76\51\99\88\98\51\65\119\110\51\67\118\73\51\67\66\82\51\99\72\110\51\67\86\108\51\98\116\49\51\66\120\57\51\67\55\100\51\67\118\112\51\67\72\115\51\67\66\120\51\66\120\101\51\100\52\86\51\65\100\120\51\67\104\121\51\100\52\89\51\57\114\118\51\67\50\71\51\67\82\117\51\67\67\56\51\100\53\52\50\51\99\51\52\57\57\51\65\116\51\51\99\50\82\51\65\83\69\51\68\48\116\51\98\67\56\51\68\48\118\51\66\56\51\51\99\77\79\51\98\99\99\51\99\50\90\51\54\109\97\51\66\73\107\51\50\110\116\51\99\68\48\51\57\87\88\51\68\49\54\51\56\50\107\51\53\74\89\51\97\89\69\51\52\90\49\51\99\71\80\51\50\82\48\51\51\79\87\51\52\122\102\51\67\98\55\51\99\78\54\51\100\52\71\51\66\89\73\51\68\49\106\51\53\115\69\51\67\87\51\51\98\73\90\51\54\100\102\51\52\109\66\51\57\121\72\51\57\112\107\51\52\109\56\51\98\111\57\51\56\56\104\51\67\72\51\51\54\48\80\51\57\112\116\51\100\53\109\51\67\119\75\51\53\116\57\49\70\51\52\57\57\51\97\49\97\51\57\110\82\51\51\66\71\50\49\120\51\51\112\81\51\50\82\48\51\98\104\104\50\50\51\51\98\72\106\51\54\82\103\51\100\65\122\51\55\73\51\51\68\54\71\51\100\98\50\51\98\121\87\51\99\78\103\51\98\57\72\51\99\73\75\51\57\71\81\51\99\56\79\51\55\65\82\51\97\101\116\51\57\83\74\51\97\85\79\51\54\111\103\51\56\52\79\51\99\83\108\51\97\107\55\51\68\50\115\51\57\115\89\51\68\55\118\51\100\71\97\51\98\66\53\51\98\52\90\51\57\66\90\51\57\67\68\51\67\88\118\51\55\98\48\51\54\55\50\51\99\73\86\51\67\114\53\51\54\80\115\51\55\74\105\51\68\50\106\51\56\104\77\51\66\53\51\51\100\54\119\51\57\67\100\51\68\99\78\51\55\103\86\51\65\52\86\51\67\57\98\51\53\78\53\51\68\75\74\51\98\112\67\51\57\70\73\51\54\54\116\51\66\80\107\51\67\84\77\51\68\103\73\51\98\97\103\51\100\67\66\51\51\99\85\51\51\98\107\51\98\89\69\51\57\111\52\51\68\67\103\51\97\65\76\51\68\72\52\51\68\51\71\51\56\90\87\51\99\84\101\51\99\73\90\51\99\65\57\51\55\100\102\51\98\71\80\51\56\53\86\51\53\69\117\51\54\121\111\51\68\72\111\51\56\86\73\51\57\74\48\51\98\86\119\51\56\74\106\51\99\117\77\51\55\101\72\51\99\97\71\51\52\57\53\51\57\100\74\50\66\114\50\52\55\51\50\53\109\51\49\119\116\51\66\114\97\51\99\76\53\51\50\110\72\51\100\106\55\51\57\118\113\51\65\50\113\51\53\71\71\51\97\72\109\51\54\98\74\51\65\50\86\51\100\57\77\51\68\73\51\51\100\70\50\51\67\90\90\51\100\105\55\51\100\48\49\51\100\105\57\51\100\48\52\51\68\73\98\51\66\84\100\51\68\105\100\51\67\55\113\51\68\53\51\51\57\50\120\51\97\88\65\51\67\74\72\51\52\109\56\51\68\53\103\50\49\121\51\67\81\119\51\67\109\53\51\54\48\112\51\57\120\103\51\99\114\49\51\98\87\88\51\99\77\98\51\98\52\57\51\55\80\66\51\97\55\104\50\50\51\51\53\75\52\51\55\100\55\51\100\74\71\51\66\50\106\51\100\101\73\51\55\116\69\51\98\72\56\51\68\74\97\51\98\72\97\51\100\50\108\51\66\50\120\51\57\51\55\51\99\71\57\51\55\104\54\51\66\87\75\51\97\89\50\51\56\119\74\51\100\100\80\51\99\113\103\50\51\105\51\57\101\76\51\99\81\106\51\65\82\88\51\98\56\100\51\97\50\102\50\53\56\51\65\121\103\51\51\55\114\51\99\104\71\51\66\50\75\51\56\120\77\51\99\74\65\51\97\51\77\51\100\70\70\51\97\82\86\51\57\70\105\51\56\115\112\51\65\69\75\51\67\119\122\51\100\54\106\51\100\66\53\51\99\78\78\51\65\122\55\51\68\70\80\51\68\54\112\51\68\50\50\51\66\106\121\51\57\53\103\51\54\53\103\51\99\101\83\51\99\53\53\51\67\111\107\51\55\106\114\51\53\111\76\51\100\70\86\51\51\70\107\51\54\70\54\51\54\52\70\51\99\52\120\51\56\52\101\51\98\108\54\51\100\50\109\51\55\51\57\51\99\65\53\51\55\74\51\51\51\77\48\51\50\113\112\51\99\74\50\51\66\102\100\51\56\53\51\51\68\112\51\49\49\51\68\50\57\51\100\50\75\51\99\82\89\51\56\52\116\51\97\97\71\51\98\85\52\51\65\111\98\51\99\52\122\51\53\65\49\51\67\57\85\51\56\52\113\51\99\57\119\51\99\106\48\51\51\103\52\51\50\108\84\51\98\70\57\51\68\108\116\51\68\71\111\51\66\107\114\51\98\107\57\51\68\50\117\51\66\48\104\51\67\57\110\51\99\111\88\51\65\48\51\51\99\120\103\51\53\121\55\51\54\72\99\51\51\100\103\51\99\75\52\51\67\48\104\51\54\72\81\51\97\114\56\51\49\55\107\50\49\56\50\51\50\50\54\122\50\55\51\50\49\86\50\50\79\51\57\86\52\51\68\56\70\51\55\115\109\51\57\117\86\51\54\81\120\51\55\69\76\51\65\77\52\51\100\100\56\51\99\97\104\51\68\76\90\51\99\53\122\51\100\99\90\51\55\53\111\51\99\117\105\51\55\116\48\51\67\117\113\51\66\109\74\51\68\97\117\51\67\85\85\51\67\110\57\51\68\106\67\51\65\69\56\51\97\105\111\51\67\105\56\51\52\109\115\51\65\101\67\51\53\50\98\51\97\77\118\51\56\50\73\51\100\54\55\51\100\73\90\51\55\111\105\51\68\57\50\51\66\77\80\51\56\102\48\51\68\101\99\51\66\51\88\51\54\100\98\51\98\56\72\51\66\77\88\51\57\110\118\51\67\52\80\51\54\74\74\51\99\108\57\51\100\57\106\51\98\78\56\51\67\108\67\51\66\68\53\51\68\101\90\51\67\114\75\51\99\72\114\51\68\52\116\51\100\57\113\51\68\73\56\51\65\116\111\51\100\73\65\51\98\78\75\51\100\48\54\51\67\67\53\51\98\78\110\51\100\53\50\51\99\108\114\51\67\105\52\51\98\50\105\51\57\109\117\51\55\118\49\51\68\53\116\51\98\87\103\51\68\100\107\51\97\67\52\51\54\116\90\51\97\89\50\51\99\50\121\51\57\51\105\51\53\117\55\51\98\52\48\51\65\121\56\51\56\82\109\51\99\113\74\51\57\52\48\51\99\109\88\51\53\74\121\51\99\77\122\51\100\74\50\51\55\84\57\51\99\54\118\51\68\106\118\51\67\78\99\51\54\115\102\51\66\85\97\51\97\108\113\51\56\107\118\51\68\107\52\51\56\83\113\51\100\75\54\51\67\56\72\51\100\75\56\51\100\98\52\51\67\51\108\51\100\66\54\51\68\111\112\51\100\50\48\51\100\70\81\51\67\120\56\51\67\56\113\51\57\103\87\51\97\85\70\51\65\53\51\51\67\111\102\51\97\76\106\51\67\52\84\51\53\86\122\51\51\66\69\51\50\112\66\51\99\112\52\51\55\105\90\51\53\119\49\51\54\55\50\51\57\110\116\51\97\65\99\51\65\97\69\51\56\52\52\51\100\55\48\51\54\56\48\51\67\57\79\51\56\66\77\51\97\80\110\51\97\76\113\51\67\74\89\51\54\115\98\51\54\54\116\51\67\83\75\51\68\101\48\51\100\113\49\51\57\90\86\51\67\111\117\51\65\70\52\51\68\55\120\51\67\84\118\51\68\66\76\51\66\57\86\51\54\70\51\51\56\98\118\51\100\70\121\51\99\84\78\51\56\52\50\51\55\65\99\51\100\104\48\51\65\108\110\51\56\66\87\51\68\67\101\51\67\122\77\51\68\116\85\51\97\70\72\51\100\55\103\51\55\51\67\51\67\74\56\51\100\99\54\51\57\116\98\51\68\72\55\51\100\81\113\51\97\54\74\51\68\72\57\51\65\104\48\51\67\75\106\51\97\54\49\51\57\55\111\51\55\69\54\51\97\48\57\51\50\69\50\50\51\51\50\50\50\49\84\51\50\53\109\51\57\85\79\51\99\48\79\51\57\85\90\51\68\100\98\51\65\109\48\51\55\108\65\51\55\97\118\51\66\77\97\51\56\104\51\51\57\53\106\51\53\71\66\51\98\110\54\51\99\104\75\51\53\81\101\51\98\78\65\51\100\52\81\51\57\86\120\51\57\102\115\51\99\98\119\51\99\55\103\51\68\109\116\51\68\102\53\51\68\57\115\51\68\70\55\51\65\69\48\51\66\88\108\51\68\57\88\51\97\51\67\51\100\57\122\51\56\56\68\51\66\69\72\51\66\69\54\51\50\114\48\51\66\69\56\51\100\52\69\51\57\87\71\51\100\48\83\51\100\68\106\51\99\119\56\51\56\49\118\51\56\75\48\51\68\105\81\51\57\81\116\51\66\119\79\51\97\106\57\51\68\68\82\51\54\97\78\51\54\65\112\51\68\79\52\51\68\82\103\51\57\87\89\51\53\74\89\51\54\117\105\51\55\86\112\51\53\116\66\51\57\76\72\51\68\97\115\51\56\113\79\51\99\49\57\51\65\110\97\51\68\100\113\51\100\101\56\51\100\114\75\51\98\77\82\51\53\70\88\51\68\106\112\51\98\77\86\51\56\76\97\51\98\99\80\51\51\100\103\51\56\69\81\51\99\68\72\51\57\56\122\51\51\68\71\51\49\114\71\51\52\122\102\50\51\106\51\52\51\88\51\65\89\108\51\100\69\74\51\68\106\57\51\66\78\49\51\99\54\56\51\65\81\89\51\99\78\102\51\66\84\81\51\68\54\70\51\54\85\111\51\99\115\51\51\100\102\107\51\65\69\78\51\67\121\54\51\98\89\84\51\68\49\90\51\57\89\55\51\57\53\70\51\65\119\106\51\54\110\102\51\97\52\51\51\57\67\56\51\99\120\86\51\55\106\48\51\67\101\65\51\57\72\50\51\99\111\113\51\54\51\120\51\68\112\53\51\68\117\48\51\67\115\84\51\100\55\49\51\99\115\118\51\55\66\115\51\56\85\53\51\54\55\66\51\66\118\52\51\100\88\70\51\54\101\107\51\98\90\81\51\55\66\122\51\100\118\48\51\68\80\122\51\97\105\116\51\67\52\111\51\55\101\122\51\56\117\54\51\55\75\99\51\98\112\79\51\53\50\66\51\98\113\56\51\57\121\114\51\54\55\50\51\55\67\113\51\50\76\116\51\68\53\99\51\98\52\74\51\67\84\113\51\57\90\119\51\68\71\57\51\100\117\70\51\100\89\73\51\100\50\120\51\56\105\103\51\56\52\88\51\53\110\53\51\100\80\82\51\54\55\67\51\66\114\102\51\100\112\90\51\100\55\56\51\97\112\112\51\98\75\111\51\57\99\98\51\100\114\115\51\66\113\108\51\68\56\67\51\97\72\48\51\100\113\85\51\100\99\119\51\49\75\80\51\65\66\102\51\57\49\122\51\65\98\104\51\57\86\50\51\68\81\78\51\66\49\77\51\100\56\72\50\99\90\50\49\106\50\50\75\50\50\50\51\49\105\107\50\52\109\50\49\120\50\52\87\50\49\72\50\52\49\51\100\113\119\51\99\48\113\51\56\53\83\51\68\68\101\51\99\56\68\51\54\49\114\51\97\109\120\51\52\109\115\51\68\120\106\51\53\50\66\51\68\120\76\51\55\65\67\51\68\119\67\49\53\51\66\88\119\51\53\50\98\51\66\88\89\51\57\106\116\51\54\98\103\51\67\122\116\51\97\116\69\51\67\98\117\51\68\109\82\51\98\72\85\51\67\72\85\51\100\77\85\51\68\83\53\51\100\109\87\51\100\115\55\51\100\57\86\51\68\48\55\51\97\105\52\51\100\48\57\51\67\50\74\51\99\114\120\51\68\68\103\50\49\89\51\67\99\112\51\68\87\73\51\68\97\66\51\54\109\49\51\57\76\57\51\66\105\71\51\100\65\107\51\100\68\80\51\56\107\55\51\67\113\104\49\57\51\56\114\87\51\68\73\121\51\67\118\51\51\66\51\101\51\65\79\55\51\53\97\113\51\66\88\48\51\68\88\50\51\67\81\107\51\52\77\56\51\57\108\110\51\66\55\75\51\53\115\88\51\100\53\106\51\53\116\49\51\99\56\54\51\99\86\65\51\65\83\55\51\56\87\121\51\97\105\76\51\68\51\54\51\99\99\99\51\68\82\52\51\100\69\76\51\56\75\83\51\65\110\53\51\54\85\79\51\97\101\104\51\53\85\86\51\68\49\115\51\98\121\110\51\53\117\121\51\98\121\114\51\99\100\72\51\66\55\120\51\100\54\108\51\66\79\85\51\68\116\71\51\68\79\82\51\100\98\65\51\98\69\87\51\98\107\48\51\99\48\54\51\51\70\75\51\97\86\48\51\65\98\52\51\54\111\71\51\97\118\48\51\67\103\82\51\99\48\48\51\54\54\112\51\53\109\78\51\67\52\122\51\66\48\111\51\99\83\113\51\99\101\84\51\67\74\105\51\67\79\103\51\56\84\75\51\100\51\68\51\100\111\121\51\56\98\115\51\56\117\110\51\100\99\56\51\98\53\74\51\55\100\54\51\55\105\87\51\66\81\53\51\99\106\70\51\100\55\112\51\55\67\54\51\68\84\84\51\57\121\73\51\55\89\106\51\68\71\115\51\57\53\82\51\99\51\68\51\68\98\103\51\98\80\85\51\100\66\73\51\68\81\53\51\100\66\75\51\99\74\115\51\100\48\99\51\55\106\75\51\54\69\109\51\56\51\85\51\57\106\109\51\97\98\54\51\68\56\76\51\98\119\51\51\98\114\53\51\54\81\69\51\65\77\54\51\97\53\87\51\56\118\55\51\98\49\80\51\68\109\50\51\98\49\114\50\50\51\51\55\76\106\50\100\57\49\119\51\52\54\116\50\54\85\50\54\77\50\53\68\49\114\50\52\50\51\54\114\51\51\97\54\77\51\54\83\98\51\65\78\55\51\68\110\53\51\57\57\112\51\57\69\54\51\66\73\84\51\56\76\50\51\69\50\50\51\99\49\70\51\66\109\115\51\100\110\99\51\68\88\66\51\52\122\49\51\98\55\84\51\56\70\55\51\53\50\98\51\65\83\67\51\100\69\50\51\68\57\66\51\53\73\53\50\50\79\51\51\71\104\51\68\116\48\51\100\110\71\51\54\106\53\51\68\88\79\51\98\55\52\51\68\88\81\51\100\74\98\51\68\65\88\51\97\78\48\51\55\77\100\51\53\85\57\51\68\110\86\51\56\49\86\51\100\48\119\51\65\49\121\51\65\78\121\51\57\113\118\51\57\101\55\51\57\57\75\51\97\50\56\51\55\72\71\51\99\77\120\51\57\51\113\51\100\119\119\51\54\48\107\51\55\86\80\51\68\65\81\51\50\114\48\51\68\116\89\51\54\88\98\51\56\53\108\51\100\86\82\51\53\71\69\51\68\86\116\51\98\78\57\51\55\56\79\51\98\116\50\51\100\109\81\51\68\118\89\51\99\118\113\51\98\84\54\51\100\87\49\51\57\50\78\51\98\88\104\51\66\100\71\51\100\48\53\51\69\49\54\51\100\83\57\51\100\48\56\51\99\114\118\51\68\83\100\51\97\51\69\51\98\84\74\51\98\106\75\51\57\103\71\51\100\54\75\51\57\103\73\51\55\112\107\51\66\101\80\51\67\83\54\51\97\90\54\51\99\88\52\51\100\54\110\51\100\107\68\51\69\52\66\51\65\112\105\51\68\70\116\51\68\84\76\51\67\48\50\51\98\66\65\51\65\85\106\51\57\122\57\51\68\108\104\51\55\120\81\51\57\90\54\51\57\72\71\51\98\81\70\51\55\99\87\50\73\51\51\69\54\54\51\97\81\120\51\66\90\112\51\57\105\109\51\54\79\50\51\65\82\50\51\66\113\75\51\97\97\118\51\55\75\55\51\97\122\87\51\54\87\102\51\97\52\118\51\57\73\100\51\53\110\53\51\66\53\101\51\67\121\53\51\67\83\82\51\68\108\80\51\68\103\98\51\54\120\119\51\57\88\84\51\67\115\89\51\57\48\52\51\55\80\69\51\100\85\52\51\56\79\65\51\65\122\78\51\100\54\89\51\97\53\57\51\99\111\117\51\57\111\100\51\97\57\117\51\67\74\83\51\66\49\49\51\100\99\85\51\100\98\98\51\97\119\57\51\68\89\53\51\67\112\80\51\68\82\48\51\98\109\52\51\65\48\55\51\98\54\71\50\113\101\50\54\74\50\50\57\50\51\55\50\53\78\50\49\65\51\69\48\102\51\68\104\112\51\68\104\75\51\97\72\50\49\78\51\98\82\69\51\100\87\102\51\53\53\66\51\67\77\87\51\99\98\65\51\56\50\76\51\55\104\99\51\98\55\77\51\66\82\90\51\53\116\49\51\68\53\76\51\68\110\99\51\57\56\82\51\52\122\49\51\55\119\78\51\50\110\114\51\101\51\49\51\53\70\67\51\50\71\49\51\100\54\99\51\68\98\88\51\68\110\111\51\98\121\104\51\101\53\74\51\68\110\82\51\56\111\50\51\66\115\118\51\56\48\71\51\100\57\105\51\99\55\55\51\67\122\118\51\53\54\69\51\56\48\77\51\100\86\87\51\65\87\85\51\68\73\53\51\100\119\48\51\101\49\49\51\68\119\50\51\68\109\118\51\69\54\109\51\68\77\120\51\68\70\57\51\100\87\55\51\66\50\71\51\68\70\67\51\55\50\54\51\67\117\82\51\54\49\114\51\100\114\97\51\55\117\49\51\66\53\114\51\68\121\48\51\53\105\120\51\98\115\57\51\69\49\102\51\68\105\110\51\98\115\71\51\69\49\79\51\57\108\49\51\66\56\50\51\69\53\84\51\98\99\69\51\100\54\50\51\100\65\106\51\69\49\112\51\57\57\48\51\66\79\56\51\66\82\118\51\100\97\79\51\55\86\80\51\66\55\84\51\66\55\98\51\57\110\108\51\56\56\101\51\100\88\116\51\55\112\101\51\100\111\110\51\68\107\53\51\97\112\55\51\99\78\75\51\100\54\106\51\99\56\108\51\100\116\70\51\99\73\109\51\67\68\109\51\101\50\115\51\97\52\49\51\65\112\74\51\54\53\103\51\66\104\54\51\100\72\51\51\101\56\51\51\100\55\51\51\57\55\52\51\54\55\66\51\53\80\88\51\68\90\54\51\66\103\51\51\52\122\56\51\100\55\79\51\100\70\122\51\99\99\66\51\57\72\113\51\100\80\76\51\66\103\57\51\68\107\78\51\57\48\68\51\100\107\80\51\69\56\103\51\67\111\121\51\68\66\90\51\55\87\75\51\69\50\57\51\57\121\105\51\100\56\53\51\101\55\104\51\100\97\55\51\65\80\109\51\56\111\65\51\66\48\82\51\100\108\50\51\98\80\54\51\55\67\97\51\56\105\56\51\97\86\52\51\98\102\88\49\53\51\68\50\80\51\56\78\86\51\57\55\69\51\99\57\80\51\56\110\49\51\100\75\106\51\100\53\82\51\68\56\98\51\99\48\73\51\100\122\116\51\55\54\48\51\66\54\87\51\68\86\51\51\54\57\48\50\100\57\49\72\50\54\122\50\50\106\50\49\67\50\51\109\50\53\53\50\54\88\50\50\72\51\54\81\68\51\98\114\56\51\55\69\72\51\67\117\76\51\55\108\70\51\56\53\86\51\54\121\111\51\68\104\84\51\65\76\56\51\68\52\70\51\69\53\105\51\68\49\73\51\100\110\82\51\54\79\56\51\67\82\68\51\67\122\114\51\53\54\97\51\57\50\100\51\67\122\85\51\69\48\121\51\69\54\71\51\101\97\50\51\99\86\82\51\57\50\77\51\57\119\51\51\66\68\70\51\55\102\76\51\98\120\74\51\101\54\111\51\99\114\116\51\68\110\48\51\100\83\99\51\68\53\52\51\68\52\107\51\55\55\65\51\68\84\50\51\98\106\48\51\98\51\115\51\65\121\117\51\99\55\121\51\51\98\71\51\52\57\119\51\51\100\71\51\67\55\49\51\53\50\66\51\99\55\51\51\100\53\83\51\100\105\76\51\101\65\77\51\97\83\71\51\53\74\69\51\67\113\66\51\68\115\109\51\54\65\81\51\100\54\48\51\65\50\53\51\53\100\78\51\98\56\57\51\68\97\107\51\67\81\74\51\66\51\119\51\99\54\81\51\57\119\89\51\54\50\88\51\100\53\112\51\101\53\69\51\65\51\117\51\67\49\56\51\101\57\55\51\53\52\77\51\55\97\48\51\65\49\72\51\98\121\52\51\56\76\51\51\66\109\113\51\65\67\117\51\68\48\75\51\57\52\65\51\57\119\121\51\54\76\106\51\53\117\111\51\51\68\103\51\69\51\111\51\100\49\80\51\67\115\48\51\99\68\67\51\101\50\104\51\57\115\55\51\68\54\79\51\68\84\67\51\100\70\77\51\100\75\98\51\57\89\54\51\67\105\110\51\100\116\105\51\68\90\85\51\97\52\51\51\57\117\56\51\57\81\55\51\99\52\111\51\55\120\49\51\54\56\66\51\57\56\87\51\68\122\53\51\54\104\76\51\57\54\112\51\57\84\66\51\57\122\51\51\68\89\66\51\56\51\111\51\68\103\76\49\52\51\69\57\106\51\66\75\56\51\100\85\68\51\67\120\112\51\68\90\66\51\68\117\50\51\100\113\54\51\56\65\83\51\56\71\105\51\56\51\117\51\100\122\49\51\99\116\56\51\54\55\50\51\68\50\98\49\49\51\67\114\53\51\69\99\103\51\67\65\48\51\54\120\78\51\100\50\70\51\51\70\107\51\100\90\52\51\100\122\105\51\99\79\48\51\66\122\75\51\100\117\49\51\100\55\50\51\56\52\57\51\97\76\108\51\54\55\66\51\69\103\52\51\98\86\49\51\55\51\72\51\57\55\48\51\53\121\55\51\100\107\74\51\100\89\111\51\54\110\54\51\56\51\85\51\54\79\56\51\67\102\68\51\68\113\118\51\56\106\99\51\100\72\80\51\67\80\110\51\68\104\56\50\50\71\50\111\83\50\54\99\50\50\68\50\53\48\50\51\75\50\54\122\50\54\50\50\54\90\50\52\111\50\54\50\50\52\65\50\54\107\50\51\67\50\50\82\50\49\114\50\50\116\51\53\49\52\51\55\54\79\51\99\83\100\51\53\101\103\51\69\57\48\51\54\89\57\51\99\102\108\51\68\114\48\51\99\49\52\51\53\102\55\51\66\101\65\51\65\100\105\51\98\56\77\51\101\48\86\51\98\72\78\51\53\71\76\51\98\56\114\51\69\65\48\51\98\50\51\51\101\54\104\51\100\52\117\51\69\49\50\51\69\68\122\51\57\65\100\51\100\115\56\51\101\69\51\51\99\119\48\51\97\73\54\51\97\51\101\51\97\83\67\51\57\102\49\51\56\101\74\51\97\74\72\51\100\78\55\51\99\109\52\51\50\100\68\49\97\51\54\48\112\51\66\55\112\51\100\106\112\51\98\55\114\51\56\108\97\49\78\51\54\49\76\51\101\72\69\51\97\106\112\51\67\66\51\51\99\103\118\51\101\50\100\51\100\109\104\51\55\101\116\51\54\83\67\51\56\70\67\51\50\110\82\51\55\98\97\51\97\90\69\51\53\105\53\51\97\82\115\51\65\120\84\51\51\106\77\51\68\104\85\51\101\101\75\51\68\97\57\51\57\107\88\51\101\49\71\51\53\116\90\51\101\101\80\51\56\82\79\51\67\81\100\51\68\73\115\51\54\90\79\51\100\111\49\51\67\81\73\51\68\54\53\51\67\103\75\51\57\105\82\51\53\74\89\51\66\56\70\51\67\68\54\51\100\74\121\49\53\51\68\117\77\51\67\51\69\51\68\120\85\51\100\98\48\51\67\83\50\51\100\54\104\51\68\120\89\51\99\78\77\51\54\80\121\51\69\102\116\51\97\107\49\51\100\54\111\51\66\111\120\51\68\116\106\51\99\112\114\51\99\51\115\51\97\117\118\51\56\110\49\51\55\105\87\51\50\108\116\51\68\85\66\51\100\80\56\51\68\67\57\51\68\112\97\51\56\48\107\51\53\111\67\51\100\108\77\51\99\74\122\51\68\111\88\51\98\117\86\51\67\57\79\51\57\79\55\51\101\51\85\51\100\103\57\51\101\51\119\51\66\52\89\51\68\55\90\51\97\98\86\51\54\77\89\51\56\51\85\51\97\53\104\51\68\51\48\51\56\50\107\51\53\68\50\51\101\57\78\51\54\79\48\51\69\55\110\51\51\78\108\51\98\90\82\51\98\108\53\51\57\72\114\51\54\111\103\51\101\107\87\51\55\114\122\51\100\111\72\51\97\114\48\51\54\55\53\51\100\111\66\51\66\70\100\51\67\52\90\51\53\110\56\51\50\76\116\51\69\103\116\51\66\48\121\51\53\78\98\51\68\118\50\51\55\83\79\51\97\49\49\50\100\57\50\49\78\50\49\83\51\49\115\57\49\54\50\50\74\51\50\48\83\51\100\77\56\51\54\81\69\51\68\113\70\51\99\107\69\51\97\87\69\51\68\56\86\51\67\53\120\51\68\51\79\51\67\105\79\51\55\54\48\51\98\55\48\51\66\74\114\51\66\99\52\51\51\99\76\51\69\53\112\51\57\57\69\51\54\97\80\51\66\67\66\51\100\119\78\51\99\81\101\51\54\97\73\51\68\115\81\51\56\119\79\51\99\51\50\51\97\50\57\51\51\56\66\51\98\67\75\51\101\101\122\51\56\107\72\51\54\50\121\51\56\75\106\51\69\76\52\51\54\83\98\51\98\88\84\51\51\66\80\51\50\114\48\51\69\51\55\51\101\74\102\51\67\117\86\51\56\68\84\51\97\54\90\51\101\70\54\51\55\111\70\51\55\116\113\51\68\65\72\51\56\50\79\51\69\57\66\51\99\49\102\51\56\120\65\51\100\78\99\51\67\49\105\51\68\100\89\51\98\55\117\51\65\115\98\51\97\55\71\51\54\49\89\51\68\101\50\51\101\108\90\51\54\101\69\51\67\72\106\51\68\52\78\51\67\72\76\51\53\113\70\51\67\104\110\51\69\54\101\51\67\76\70\51\100\115\49\51\100\57\112\51\97\104\86\51\69\65\53\51\101\49\51\51\69\65\55\51\101\49\53\51\68\52\122\51\100\57\119\51\68\115\65\51\100\70\98\51\69\49\97\51\56\56\68\51\57\99\56\51\68\84\55\51\56\57\82\51\67\68\100\51\69\54\122\51\99\120\48\51\57\109\101\51\100\49\116\51\100\49\121\51\68\102\79\51\69\50\81\51\69\107\81\51\101\75\115\51\97\69\117\51\55\112\122\51\66\76\49\51\68\76\79\51\97\52\56\51\67\121\106\51\68\76\114\51\100\78\109\51\69\98\89\51\56\111\57\51\55\51\80\51\98\122\50\51\66\53\90\51\66\65\118\51\53\78\53\51\98\48\111\51\99\72\67\51\54\54\116\51\55\89\74\51\69\103\116\51\68\90\77\51\69\67\72\51\98\48\119\51\56\56\102\51\101\66\84\50\73\51\51\69\99\56\51\57\78\83\51\53\110\51\51\100\66\112\51\69\55\101\51\57\104\50\51\101\51\106\51\53\74\65\51\68\81\67\51\100\107\109\51\97\57\81\51\100\75\111\51\69\56\102\51\66\97\66\51\67\111\89\51\99\110\87\51\53\100\56\51\66\48\79\51\67\90\112\51\100\85\110\51\69\51\51\51\68\113\68\51\53\79\82\51\55\90\76\51\54\121\70\51\99\65\120\51\68\72\65\51\99\117\78\50\50\111\51\65\72\49\51\101\73\65\51\69\99\89\51\101\109\56\51\53\101\52\51\68\77\56\51\68\67\120\51\65\114\102\51\49\52\113\49\98\50\52\57\50\49\50\49\102\50\53\81\49\104\50\53\115\50\54\51\50\50\57\51\55\84\50\51\53\54\51\51\53\71\66\51\98\104\108\51\53\103\71\51\97\68\77\51\66\72\79\51\100\69\87\51\101\79\57\51\68\70\49\51\101\100\85\51\68\83\50\51\101\111\68\51\101\54\107\51\98\50\57\51\100\83\54\51\68\70\56\51\100\87\54\51\69\79\107\51\68\87\56\51\101\65\67\51\56\56\100\51\67\110\98\51\57\51\48\51\57\65\116\51\65\77\85\51\65\72\72\51\69\73\90\51\98\106\52\51\55\79\105\51\65\83\48\51\97\55\88\51\55\84\86\51\68\82\77\51\98\74\100\51\98\52\55\51\57\52\69\51\68\108\99\51\69\50\66\51\100\52\72\51\101\74\72\50\50\51\51\56\114\67\51\65\110\79\51\100\78\85\51\68\73\77\51\69\69\78\51\53\52\48\51\99\54\103\51\97\121\50\51\100\65\102\51\69\101\83\51\65\83\78\51\54\77\67\51\98\73\77\51\101\78\53\51\98\89\49\51\101\65\121\51\54\109\76\51\101\52\120\51\52\122\49\51\56\115\51\51\51\55\97\51\68\117\109\51\65\82\114\51\65\82\84\49\53\51\69\81\57\51\67\56\122\51\97\112\50\51\100\79\71\51\98\89\80\51\56\103\74\51\69\50\109\51\100\79\107\51\69\107\107\51\97\122\52\51\68\70\73\51\100\121\49\51\69\79\88\51\68\89\51\51\100\107\70\51\100\54\114\51\54\53\103\51\57\53\81\51\68\121\103\51\57\122\113\51\99\57\79\51\69\103\79\51\54\70\82\51\54\80\74\51\98\48\85\51\69\66\86\51\55\99\48\51\65\97\65\51\99\84\109\51\54\56\98\51\67\70\57\51\57\98\114\51\52\90\102\51\100\55\56\51\98\102\85\51\65\106\85\51\68\112\90\51\97\85\120\51\97\52\118\51\69\55\105\51\68\80\50\51\52\87\100\51\54\88\70\51\65\55\75\51\57\120\116\51\68\89\57\51\99\69\57\51\67\84\65\51\65\118\54\51\50\79\74\51\53\114\69\51\68\55\83\51\56\85\97\51\68\55\85\51\101\67\50\51\101\71\105\51\68\55\89\51\100\117\73\51\66\97\76\51\68\84\109\51\101\51\57\51\97\76\74\51\97\52\99\51\53\121\55\51\68\99\113\51\101\55\113\51\65\82\52\51\69\56\106\51\54\48\54\51\66\81\83\51\51\100\88\51\49\65\71\50\50\102\50\52\49\50\49\53\50\52\100\50\51\55\51\97\66\82\51\101\73\56\51\67\53\122\51\69\104\77\51\69\99\122\51\54\81\89\51\68\51\78\51\97\119\73\51\101\68\97\51\68\68\65\51\100\122\120\51\66\54\114\51\55\53\113\51\69\109\82\51\69\73\69\51\101\100\106\51\100\78\112\51\69\57\113\51\68\101\109\51\69\74\105\51\57\65\89\51\68\57\104\51\100\101\118\51\53\81\101\51\101\57\90\51\100\109\112\51\101\79\65\51\68\105\52\51\101\82\100\51\99\114\78\51\69\82\70\51\99\50\66\51\101\79\71\51\101\114\105\51\100\53\48\51\101\97\97\51\69\49\57\51\67\114\119\51\56\56\100\51\54\79\56\51\51\98\103\51\100\53\55\51\52\109\115\51\69\70\75\51\101\82\84\51\68\100\118\51\100\82\73\51\51\100\98\51\98\82\89\51\56\54\118\51\68\82\109\51\69\57\70\51\54\108\75\51\65\115\57\51\69\99\84\51\98\88\115\51\69\69\57\51\56\115\53\51\100\79\69\51\66\80\52\51\55\86\49\51\100\119\72\51\68\83\73\51\68\87\106\51\56\69\54\51\99\71\66\51\56\56\77\49\54\51\69\65\115\51\66\51\54\51\100\65\73\51\68\105\118\51\68\87\83\51\69\107\54\51\55\48\106\51\52\77\56\51\101\69\90\51\100\54\65\51\67\49\74\51\101\107\67\51\69\83\51\51\101\111\80\51\56\109\105\51\101\79\82\51\57\53\74\51\69\50\108\51\69\98\56\51\98\52\107\51\68\89\50\51\101\102\86\51\101\98\72\51\68\54\81\51\65\117\69\51\68\90\106\51\101\98\87\51\56\111\98\51\54\56\66\51\67\83\75\51\101\83\120\51\69\56\67\51\54\86\77\51\69\113\49\51\101\67\50\51\69\113\51\51\68\90\68\51\53\119\121\51\56\53\107\51\67\79\50\51\69\76\86\51\56\116\106\51\65\51\117\51\69\104\103\51\57\84\77\51\54\56\98\51\98\112\107\51\101\56\48\51\101\71\117\51\98\48\118\51\54\120\78\51\55\89\81\51\65\65\118\51\100\98\118\51\100\121\83\51\55\114\89\51\98\122\105\51\69\71\54\51\69\84\69\51\98\85\116\51\98\102\50\51\97\113\74\51\99\119\86\51\65\65\51\51\101\99\76\51\55\67\113\51\101\51\107\51\69\98\120\51\68\50\107\51\65\111\66\51\99\107\56\51\99\85\101\51\101\52\101\51\57\117\120\51\55\90\118\51\68\109\54\51\65\48\101\51\99\76\50\51\69\118\54\51\65\49\49\50\79\115\50\50\122\50\53\65\50\49\80\50\53\49\50\54\48\50\50\79\50\54\52\50\52\51\50\49\121\51\50\70\53\50\52\76\50\49\69\50\51\78\50\55\50\51\99\75\74\51\51\80\75\51\99\122\74\51\101\113\103\50\73\52\51\55\54\112\51\53\113\50\51\56\90\66\51\65\73\79\51\98\82\104\51\50\110\82\51\68\49\111\51\98\49\121\51\67\118\74\51\98\50\49\51\101\105\109\51\66\56\84\51\69\79\99\51\101\118\118\51\101\100\89\51\101\54\108\51\101\69\48\51\99\86\87\51\101\111\73\51\69\49\55\51\65\120\54\51\68\110\49\51\67\99\65\51\69\50\77\51\69\102\53\51\100\111\53\51\97\49\71\51\55\111\73\51\66\109\111\51\100\110\57\51\97\115\51\51\68\82\77\51\69\50\54\51\65\110\76\51\52\109\83\51\66\83\84\51\54\85\79\51\55\77\100\51\65\55\78\51\101\115\98\51\98\83\99\51\67\109\109\51\68\53\120\51\68\48\88\51\57\76\51\51\69\115\104\51\97\74\65\51\67\99\90\51\69\88\50\51\69\83\108\51\101\49\120\51\56\107\89\51\66\55\106\51\99\54\82\51\57\51\84\51\56\55\56\51\101\49\118\51\53\73\53\51\100\57\101\51\55\104\113\51\101\76\82\51\69\84\121\51\69\53\104\51\69\86\105\51\101\100\108\51\69\118\107\51\97\89\74\51\56\57\66\51\69\107\102\51\56\83\109\51\69\102\79\51\69\98\122\51\66\52\101\51\52\90\56\51\69\88\102\51\100\116\100\51\68\79\111\51\69\55\51\51\101\116\97\51\69\55\55\51\101\120\107\51\69\55\56\51\69\117\99\51\100\50\75\51\56\73\56\51\69\116\74\51\55\53\50\51\54\112\84\51\55\107\54\51\51\73\87\51\65\108\103\51\69\51\50\51\68\67\102\51\57\105\107\51\56\53\51\51\55\48\87\51\67\52\107\51\101\87\79\51\67\121\104\51\57\90\80\51\56\98\81\51\99\57\111\51\69\90\83\51\101\112\108\51\101\103\118\51\53\68\50\51\56\116\102\51\54\54\84\51\66\97\83\51\101\80\114\51\57\53\82\51\68\103\89\51\100\122\56\51\68\85\69\51\67\77\54\51\100\90\99\51\69\71\75\51\97\113\51\51\55\120\71\51\101\71\57\51\101\117\56\51\53\79\57\51\55\81\69\51\55\109\77\51\55\67\90\51\54\56\98\51\55\66\51\51\99\52\68\51\68\111\72\51\65\117\89\51\51\70\75\51\70\50\68\49\49\51\68\71\52\51\69\72\105\51\99\73\80\51\53\90\111\51\49\99\79\50\51\49\50\50\110\50\55\51\50\51\70\50\54\66\50\51\120\49\77\50\49\65\50\49\109\50\52\51\50\50\116\51\100\122\116\51\53\86\77\51\69\48\49\51\68\90\87\51\55\122\111\51\68\100\67\51\53\122\55\51\101\113\101\51\57\85\66\51\101\121\121\51\54\73\120\51\67\54\51\51\100\69\104\51\65\51\103\51\67\103\84\51\69\50\67\51\57\69\51\51\101\115\55\51\56\114\100\51\57\118\112\51\101\57\117\51\65\87\112\51\69\118\80\51\98\56\112\51\69\82\65\51\100\52\114\51\69\114\67\51\102\48\50\51\100\70\52\51\101\118\119\51\99\99\49\51\101\86\89\51\100\87\53\51\101\87\48\51\69\82\107\51\69\97\98\51\101\111\77\51\53\56\55\51\67\108\117\51\56\75\87\51\100\53\69\51\97\88\68\51\56\50\76\51\68\78\56\51\51\54\70\51\54\68\51\51\69\57\99\51\56\54\119\51\100\74\112\51\101\87\104\51\65\120\111\51\54\76\110\51\69\80\90\51\98\50\88\51\98\110\118\51\102\48\116\51\67\109\76\51\53\52\48\51\97\110\118\51\99\109\79\51\68\78\122\51\70\48\122\51\68\111\49\51\97\89\57\51\100\97\108\51\53\97\81\51\100\82\104\51\101\98\48\51\101\115\81\51\56\115\52\51\98\56\74\51\67\87\79\51\69\119\109\49\53\51\69\75\121\51\54\75\116\51\54\75\118\51\55\79\77\51\99\67\110\51\101\102\76\51\67\100\103\51\98\74\77\51\69\116\87\51\101\107\104\51\101\50\107\51\69\55\48\51\67\88\49\51\101\116\55\51\69\79\87\51\68\54\109\51\70\49\87\51\101\98\105\51\67\75\72\51\53\48\76\51\65\52\51\51\56\105\117\51\69\84\70\51\70\50\73\51\69\80\55\51\56\116\57\51\70\51\49\51\100\117\120\51\53\79\57\51\54\54\54\51\55\53\51\51\68\78\108\51\55\87\116\51\101\89\49\51\57\110\51\51\101\115\120\51\70\50\76\51\68\51\49\51\68\122\111\51\97\70\57\51\53\110\53\51\70\50\53\51\69\103\115\51\57\99\86\51\67\79\90\51\68\80\90\51\54\119\121\51\54\54\108\51\51\84\117\51\98\108\52\51\98\65\48\51\97\81\88\51\101\55\118\51\99\52\111\51\102\54\77\51\69\103\112\51\55\53\50\51\100\90\104\51\101\71\101\51\98\71\57\51\101\117\101\51\55\121\56\51\69\117\71\51\68\117\72\51\99\74\115\51\56\66\74\51\67\57\48\51\54\55\98\51\70\55\50\51\69\80\82\51\67\89\83\51\68\51\83\51\55\101\55\51\102\52\52\51\100\109\52\51\51\98\116\51\56\80\106\51\66\71\111\51\101\122\110\51\101\77\75\51\69\122\48\51\101\109\111\51\66\103\87\51\98\119\51\50\116\48\50\52\109\50\51\97\50\54\68\50\49\84\50\50\70\50\50\84\50\53\99\50\52\86\50\52\74\50\52\48\51\54\57\53\51\101\86\70\51\101\54\120\51\53\84\73\51\69\97\76\51\101\119\115\51\101\74\120\51\55\109\77\51\57\51\69\51\54\85\50\51\99\119\67\51\70\48\122\51\69\78\50\51\67\77\53\51\56\114\87\51\100\83\117\51\68\106\113\51\101\75\57\51\66\74\54\51\55\86\80\51\66\79\67\50\119\76\51\101\67\80\51\57\74\77\51\57\52\66\51\54\90\119\51\53\53\103\51\68\114\74\51\53\52\68\51\101\78\82\51\99\81\84\51\98\55\113\51\51\100\88\51\54\76\106\51\65\106\107\51\97\100\49\51\99\88\75\51\97\122\107\51\69\103\48\51\69\57\79\51\99\114\56\51\99\54\55\51\69\53\75\51\57\69\52\51\53\102\99\51\65\105\81\51\55\84\55\51\55\84\57\51\65\101\55\51\54\51\52\51\69\73\72\51\66\78\55\51\53\81\69\51\69\73\76\51\69\118\82\51\101\114\98\51\57\107\51\51\68\105\54\51\101\97\52\51\102\52\111\51\100\48\51\51\102\52\81\51\66\100\105\51\69\54\80\51\101\49\56\51\69\54\114\51\100\53\52\51\57\53\81\51\97\55\104\51\56\48\57\51\51\55\97\51\70\55\106\51\101\50\71\51\55\119\54\51\69\116\51\51\67\87\121\51\101\116\53\51\102\54\57\51\69\79\86\51\100\102\110\51\70\54\99\51\69\88\106\51\69\112\48\51\68\107\103\51\98\80\109\51\69\88\79\51\101\89\107\51\53\97\81\51\101\56\50\51\100\107\81\51\53\75\68\51\70\65\121\51\69\88\85\51\101\56\69\51\97\57\116\51\69\113\52\51\97\48\51\51\54\87\70\51\100\76\54\51\54\79\103\51\100\113\97\51\51\72\107\51\97\113\56\51\69\121\80\51\68\71\74\51\53\99\114\51\66\97\105\51\98\75\55\51\97\65\118\51\55\112\68\51\67\98\77\51\98\48\82\51\54\54\84\51\65\86\66\51\101\83\51\51\70\55\82\51\51\102\107\51\70\98\67\51\101\85\113\51\97\113\120\51\97\113\82\51\69\80\69\51\53\110\100\51\56\50\72\51\100\112\89\51\56\68\119\51\97\53\52\51\69\51\65\51\68\53\53\51\100\76\118\51\57\55\107\51\97\82\54\51\100\86\57\51\53\80\52\51\65\48\122\51\69\104\78\51\69\77\106\51\57\49\122\51\65\54\52\51\51\100\52\51\51\86\108\50\51\98\50\52\110\51\99\53\103\51\100\86\106\51\101\86\67\51\102\52\48\51\100\118\77\51\65\119\104\51\101\56\77\51\57\117\115\51\100\118\79\51\53\113\51\51\69\105\102\51\53\56\75\51\68\120\51\51\70\48\71\51\101\78\80\51\55\111\107\51\56\81\119\51\68\88\56\51\68\82\109\51\101\53\51\50\53\56\51\69\57\104\51\53\48\56\51\68\112\116\51\56\66\74\51\101\78\105\51\100\114\54\51\54\49\71\51\56\116\70\51\69\54\57\51\98\56\111\51\100\86\117\51\101\54\68\51\100\105\50\51\101\118\83\51\69\48\122\51\67\72\84\51\67\118\115\51\69\105\113\51\70\48\53\51\69\105\115\51\69\69\50\51\65\56\115\51\99\105\50\51\101\69\53\51\100\110\50\51\101\97\101\51\53\102\67\50\50\83\51\51\70\52\51\100\57\102\51\56\69\82\51\51\98\71\50\51\105\50\87\68\51\50\110\114\51\57\52\109\51\53\50\66\51\65\104\99\51\69\50\97\51\98\73\57\51\101\74\86\51\66\67\55\51\101\115\99\51\97\74\54\51\101\109\88\51\99\109\79\51\68\115\110\51\57\57\72\51\54\122\79\51\70\56\87\51\53\115\121\51\66\99\104\51\102\49\51\51\70\56\90\51\100\49\56\51\55\79\71\51\56\87\120\51\99\98\107\51\51\55\114\51\101\67\66\51\101\66\54\51\68\49\87\51\67\73\100\51\56\77\73\51\67\105\70\51\97\90\50\51\70\54\56\51\69\111\85\51\67\51\109\51\69\116\57\51\102\97\116\51\100\70\115\51\101\75\114\51\66\101\89\51\68\85\74\51\68\85\86\51\56\97\119\51\65\70\79\51\70\98\85\51\100\80\102\51\53\78\53\51\99\121\67\51\68\76\67\51\69\116\113\51\51\105\87\51\69\85\51\51\57\55\104\51\54\111\71\51\69\84\114\51\102\101\114\51\102\70\55\51\56\99\52\51\70\54\111\51\66\102\89\51\55\51\69\51\66\65\106\51\102\98\101\51\102\50\57\51\99\80\89\51\68\71\53\51\56\79\97\51\57\85\56\51\98\71\55\51\99\115\74\51\54\53\105\51\69\55\76\51\101\72\50\51\68\121\72\51\69\71\74\51\99\79\76\51\55\53\76\51\67\48\50\51\68\116\110\51\65\103\108\51\67\57\75\51\65\70\48\51\68\122\57\51\68\75\111\51\102\55\110\51\69\88\89\51\70\54\49\51\97\66\54\50\105\54\50\50\110\50\53\81\50\53\56\50\54\72\50\51\53\50\52\57\51\67\65\100\51\57\55\110\51\69\100\68\51\53\100\120\51\101\90\79\51\100\111\115\51\53\69\71\51\66\86\90\51\102\55\87\51\65\86\89\51\69\57\49\51\101\57\51\51\101\118\103\51\55\55\48\51\57\86\105\51\69\57\112\51\102\49\73\51\69\115\54\51\57\54\68\51\101\110\101\51\51\100\103\51\70\101\51\51\65\72\66\51\57\52\79\51\67\117\121\51\102\102\108\51\53\53\98\51\97\74\102\51\99\56\49\51\70\57\98\51\97\99\97\51\102\57\100\51\68\74\81\51\57\112\117\51\67\86\99\51\52\122\49\51\99\87\109\51\57\81\71\51\69\78\99\51\56\120\87\51\100\104\87\51\54\98\71\51\68\57\75\51\97\87\114\51\100\73\49\51\67\50\51\51\101\54\70\51\70\97\52\51\69\97\51\51\70\68\107\51\69\111\101\51\101\73\114\51\65\120\50\51\101\73\116\51\70\68\80\51\100\105\101\51\102\48\98\51\66\105\55\51\55\107\70\51\98\110\84\51\55\86\49\51\101\83\97\51\69\101\77\51\70\48\85\51\70\53\103\51\100\97\75\51\98\51\51\51\55\109\78\51\68\68\80\51\70\69\72\51\69\107\53\51\102\49\51\51\65\82\120\51\101\70\56\51\65\89\100\51\66\83\113\50\53\56\50\49\105\51\97\49\69\51\101\88\65\51\69\84\48\51\98\121\79\51\68\70\104\51\102\97\81\51\97\106\87\51\70\69\121\51\69\50\77\51\100\48\81\51\69\107\78\51\98\101\85\51\100\66\57\51\99\115\99\51\66\52\111\51\54\53\70\51\70\70\115\51\54\119\97\51\99\52\86\51\69\53\97\51\100\112\90\51\69\122\115\51\101\89\49\51\56\104\73\51\70\67\48\51\55\99\48\51\101\103\122\51\100\80\74\51\70\54\78\51\97\53\112\50\77\49\51\50\81\112\51\100\117\77\51\68\122\50\51\55\53\50\51\98\108\97\51\69\50\89\51\102\102\66\51\69\71\89\51\54\84\115\51\101\87\107\51\68\71\116\51\100\122\110\51\54\53\118\51\98\81\75\51\68\80\54\51\65\51\85\51\102\50\85\51\101\103\104\51\102\50\119\51\70\103\52\51\57\111\70\51\56\65\83\51\70\75\51\51\57\110\48\51\53\65\52\51\102\54\74\51\65\70\86\51\68\89\106\51\101\107\76\51\101\52\53\51\68\82\48\51\98\54\84\51\54\113\117\51\70\99\97\50\102\48\50\53\103\50\51\117\50\52\74\50\54\89\50\51\73\49\111\50\53\82\50\51\118\51\68\109\49\51\68\81\113\51\68\77\51\51\67\70\79\51\67\70\114\51\98\49\52\51\68\72\108\51\53\49\52\51\99\85\79\51\65\87\106\51\55\76\48\51\66\49\117\51\100\100\102\51\65\78\111\51\69\53\111\51\102\53\69\51\98\119\73\51\56\101\54\51\68\119\76\51\101\83\70\51\56\75\97\51\100\100\80\51\65\55\119\51\70\72\74\51\102\56\121\51\57\82\54\51\69\78\110\51\65\73\98\51\70\105\114\51\56\119\88\51\55\87\78\51\98\99\114\51\55\78\57\51\56\113\111\51\67\86\104\51\69\118\79\51\66\116\48\51\101\100\84\51\70\105\48\51\69\100\119\51\65\87\89\51\66\88\103\51\101\114\71\51\69\49\52\51\101\118\90\51\101\79\74\51\69\54\81\51\100\73\102\51\68\110\50\51\70\69\53\51\98\119\57\51\51\55\65\51\101\48\114\51\50\110\104\51\69\48\84\51\69\65\102\51\66\109\70\51\53\103\104\51\52\48\66\51\50\110\72\51\55\77\65\51\67\67\99\51\67\49\57\51\68\74\107\51\97\55\52\51\98\121\53\51\57\88\69\51\99\49\70\51\68\106\79\51\100\78\99\51\97\120\77\51\52\90\49\49\107\51\51\81\107\51\101\57\73\51\100\82\82\51\69\89\48\51\56\49\100\51\102\49\71\51\102\72\52\51\99\82\57\51\68\88\82\51\102\100\84\51\70\54\50\51\55\115\48\51\70\54\52\51\68\102\109\51\102\106\49\51\69\79\84\51\70\74\51\51\70\54\97\51\102\97\82\51\69\50\80\51\70\54\68\51\99\107\103\51\70\49\121\51\99\105\81\51\54\53\103\51\57\109\122\51\56\79\65\51\97\57\120\51\53\68\56\51\56\52\122\49\49\51\67\121\49\51\99\79\84\51\67\88\112\51\69\108\67\51\99\106\114\51\99\79\121\51\97\49\84\51\67\79\106\51\69\76\55\51\69\112\55\51\98\107\104\51\101\76\103\51\56\111\65\51\55\107\85\51\54\54\84\51\54\54\77\51\55\88\65\51\100\85\117\51\102\67\49\51\99\52\114\51\54\120\78\51\97\49\116\51\67\52\90\51\66\86\52\51\68\108\67\51\99\74\54\51\57\104\50\51\97\65\54\51\101\103\101\51\56\52\121\51\54\55\68\51\101\76\118\51\101\116\49\51\65\52\118\51\56\71\67\51\54\56\66\51\98\76\51\51\53\109\65\51\102\49\69\51\53\109\121\51\56\73\86\51\98\86\107\51\102\103\116\51\100\99\89\51\69\68\102\51\101\77\77\51\70\52\51\51\102\107\89\51\98\49\114\51\56\67\81\51\57\55\78\51\101\81\112\51\54\78\71\51\54\57\53\50\73\54\50\49\84\50\49\67\50\52\119\50\49\113\50\52\56\51\100\78\105\51\100\109\70\51\53\113\50\51\98\107\104\51\56\83\106\51\101\101\56\51\70\49\99\51\67\115\113\51\53\103\98\51\66\100\51\51\98\104\109\51\65\72\78\51\99\76\98\51\68\114\122\51\99\90\88\51\69\111\66\51\68\102\51\51\101\54\74\51\70\48\52\51\102\109\51\51\102\97\57\51\99\73\48\51\102\73\55\51\69\101\52\51\99\87\49\51\65\51\69\51\56\90\98\51\66\106\51\51\97\114\89\51\66\82\119\51\57\108\80\51\66\100\87\51\70\53\90\51\68\110\99\51\66\69\48\51\53\107\50\51\51\110\113\51\50\78\82\51\68\71\83\51\51\66\71\50\50\121\51\65\49\77\51\99\77\68\51\101\109\115\51\51\98\88\51\100\106\76\51\57\69\56\51\69\74\119\51\69\65\110\51\53\52\48\51\70\108\102\51\56\114\79\51\102\53\106\51\100\119\79\51\55\118\101\51\69\101\85\51\53\117\98\51\53\74\82\51\70\49\51\51\66\99\75\51\69\78\79\51\102\49\52\51\56\50\67\51\56\50\55\51\102\49\97\51\102\72\50\51\66\50\113\51\100\49\104\51\102\78\53\51\70\57\81\51\57\108\121\51\102\65\107\51\57\53\106\51\68\79\74\51\70\97\110\51\68\98\51\51\101\66\55\51\102\49\84\51\101\107\109\51\100\98\55\51\101\111\121\51\99\83\66\51\69\81\113\51\57\89\56\51\98\75\48\51\102\54\73\51\99\100\89\51\100\50\84\51\70\78\118\51\68\113\52\51\69\76\100\51\69\85\73\51\101\100\73\51\101\107\90\51\69\51\104\51\55\51\99\51\98\53\76\51\67\116\109\51\65\97\70\51\102\75\49\51\70\111\68\51\65\108\57\51\65\52\118\51\99\74\90\51\56\51\117\51\67\112\54\51\51\70\107\51\69\71\82\51\102\53\120\51\100\80\107\51\54\54\57\51\69\51\99\51\102\79\49\51\102\103\53\51\100\76\78\51\57\105\107\51\99\52\122\51\54\102\108\51\50\76\116\51\102\79\76\51\53\110\53\51\69\72\56\51\101\103\84\51\70\54\85\51\54\115\98\51\69\121\103\51\55\99\48\51\69\104\56\51\102\51\70\51\100\67\117\51\67\48\74\51\68\104\80\51\67\107\106\51\55\54\48\50\81\101\50\54\55\51\49\80\51\50\53\84\51\49\48\118\51\99\112\111\51\68\118\104\51\101\109\107\51\66\109\49\51\100\86\107\51\65\66\105\51\102\107\108\51\53\50\50\51\100\56\69\51\68\86\56\51\97\98\117\51\102\104\49\51\101\57\75\51\56\55\49\51\53\82\120\51\53\119\67\51\102\83\49\51\56\66\69\51\55\104\80\51\57\52\66\51\55\71\71\51\53\83\88\51\57\52\54\51\53\84\49\51\54\48\70\51\56\50\83\51\54\48\70\51\98\77\119\51\52\77\83\51\100\50\74\51\53\103\66\51\54\98\101\51\57\86\83\51\53\81\101\51\54\66\76\51\102\48\48\51\99\90\89\51\101\49\48\51\102\105\50\51\102\65\55\51\68\52\120\51\101\111\72\51\68\105\99\51\67\118\90\51\100\83\98\51\102\81\53\51\101\49\66\51\101\74\69\51\102\110\51\51\102\57\79\51\99\98\52\51\68\110\82\51\68\74\55\51\97\73\79\50\50\52\51\97\106\76\51\57\120\53\51\70\51\65\51\67\119\53\51\102\101\56\51\66\73\67\51\102\53\70\51\54\90\106\51\69\97\113\51\66\119\74\51\57\87\112\51\102\113\89\51\53\85\55\51\69\65\117\51\70\57\99\51\57\57\109\51\65\78\56\51\65\50\67\51\57\80\78\51\54\97\87\51\99\86\53\51\101\107\98\51\54\108\49\51\69\121\106\51\65\103\70\51\102\114\71\51\54\101\101\51\70\82\105\51\53\107\106\51\98\111\112\51\101\98\67\51\100\107\65\51\102\82\79\51\69\66\70\51\67\88\54\51\102\110\106\51\102\106\56\51\65\107\54\51\57\75\113\51\100\103\49\51\55\53\50\51\54\54\79\51\99\69\75\51\57\70\70\51\57\84\53\51\99\83\78\51\68\84\82\51\53\57\52\51\55\67\122\51\69\112\118\51\101\71\66\51\51\70\52\51\102\74\81\51\102\84\114\51\102\78\122\51\55\74\108\51\70\82\86\51\101\67\49\51\57\84\48\51\66\103\68\51\102\50\121\51\57\54\111\51\55\48\53\51\56\53\51\51\53\79\68\51\67\120\69\51\101\116\116\51\98\102\107\51\53\121\55\51\57\84\56\51\69\79\50\51\101\56\49\51\101\112\53\51\65\85\116\51\101\80\55\51\56\71\105\51\69\108\74\51\65\97\72\51\53\100\111\51\70\87\108\51\53\110\53\51\102\87\110\51\99\116\49\51\57\56\56\51\100\112\90\51\100\103\89\51\68\50\101\51\54\85\79\51\56\51\85\51\55\119\84\51\66\76\108\51\102\116\50\51\99\102\77\51\102\55\121\51\54\56\78\51\102\116\53\51\102\80\57\51\53\101\97\51\100\56\71\51\70\76\50\51\101\57\49\50\50\54\51\49\48\108\50\51\52\50\53\69\50\49\88\50\52\82\50\54\79\50\49\56\50\52\97\51\57\100\101\51\70\51\118\51\53\90\48\51\70\108\56\51\68\106\54\51\69\74\74\51\69\115\52\51\68\110\113\51\70\49\106\51\70\68\66\51\53\54\53\51\97\116\66\51\53\113\98\51\101\82\55\51\53\103\76\51\99\55\65\51\102\52\74\51\100\118\120\51\102\76\90\51\101\54\105\51\70\65\54\51\102\80\90\51\101\86\88\51\102\48\54\51\68\57\117\51\102\48\56\51\102\97\98\51\70\48\65\51\102\68\82\51\102\48\67\51\70\52\120\51\53\75\72\51\67\49\57\51\69\49\122\51\69\52\87\51\54\100\49\51\70\53\52\51\67\56\53\51\97\115\52\51\101\102\70\51\101\50\54\51\70\53\57\51\102\54\48\51\98\118\50\51\68\53\65\51\55\104\80\51\70\78\84\51\70\105\99\51\70\81\112\51\102\76\66\51\70\105\102\51\70\86\49\51\70\56\114\51\102\118\51\51\102\76\69\51\102\48\121\51\102\118\54\51\67\99\88\51\66\51\56\51\57\108\57\51\68\115\84\51\102\108\109\51\100\57\48\51\69\49\83\51\57\101\115\51\70\69\112\51\101\70\51\51\53\85\89\51\69\69\69\51\98\106\71\51\53\54\66\51\54\53\103\51\70\110\55\51\70\49\77\51\57\71\77\51\67\83\49\51\68\116\57\51\99\56\73\51\102\82\75\51\70\90\90\51\102\70\48\51\68\54\109\51\70\86\83\51\70\74\55\51\102\70\51\51\99\89\86\51\102\102\53\51\57\53\88\51\100\85\67\51\67\68\90\51\70\107\55\51\56\97\80\51\102\87\74\51\56\105\71\51\68\89\87\51\54\55\98\51\97\97\97\51\102\71\49\51\102\67\49\51\102\71\56\51\54\53\86\51\55\101\90\51\102\106\78\51\57\72\50\51\102\115\53\51\70\54\115\51\55\66\119\51\65\71\57\51\53\65\52\51\56\51\85\51\57\90\67\51\56\79\65\51\101\52\48\51\55\113\75\51\69\50\119\51\52\57\106\51\97\57\75\51\102\86\105\51\70\50\103\51\56\66\112\51\102\107\71\51\67\57\79\51\65\52\90\51\97\57\89\51\101\117\50\49\50\51\68\71\52\51\102\74\83\51\51\51\77\51\57\121\84\51\67\52\50\51\101\121\49\51\53\112\120\51\69\103\101\51\102\55\86\51\54\105\107\51\99\89\117\51\69\122\109\51\69\56\79\51\99\80\117\51\101\90\49\51\68\72\110\51\98\54\103\51\99\53\87\51\70\103\81\51\53\49\53\50\105\54\50\50\85\50\54\88\50\51\49\50\51\57\50\54\112\50\50\73\51\70\52\54\51\68\111\104\51\66\99\118\51\66\67\120\51\54\49\109\51\70\104\82\51\57\87\71\51\99\109\73\51\102\56\112\51\70\113\84\50\106\78\51\69\87\86\51\55\72\54\51\70\81\120\51\101\110\48\51\70\86\55\51\57\51\107\51\102\56\120\51\98\111\54\51\70\116\85\51\68\114\78\51\51\52\65\51\100\111\55\51\66\73\118\51\98\101\55\51\52\54\110\51\102\84\110\51\98\68\48\51\100\109\74\51\54\66\71\51\65\111\102\51\57\118\85\51\98\88\55\51\102\121\68\51\69\65\49\51\69\86\85\51\70\52\110\51\102\89\73\51\70\52\112\51\70\89\75\51\69\54\110\51\70\121\109\51\69\73\117\51\102\85\107\51\69\73\119\51\102\85\77\51\70\114\65\51\102\52\57\51\69\83\53\51\102\52\98\51\66\72\99\51\57\53\74\51\51\98\71\50\49\118\51\52\54\110\51\99\55\119\51\56\48\67\51\99\55\89\51\57\56\71\51\57\108\68\51\69\57\56\51\57\52\52\51\53\106\112\51\68\69\65\51\55\111\110\51\70\81\109\51\100\78\99\51\98\121\65\51\56\50\118\51\100\56\65\51\67\114\90\51\70\54\51\51\99\87\119\51\67\50\81\51\102\114\106\51\68\84\66\51\99\56\75\51\102\118\81\51\69\98\69\51\65\112\70\51\57\121\56\51\69\105\55\51\67\100\112\51\57\116\108\51\65\113\120\51\69\50\86\51\52\57\97\51\53\74\75\51\102\87\116\51\56\66\65\51\53\117\86\51\67\83\113\51\56\53\51\51\57\90\72\51\103\48\77\51\65\52\54\51\102\107\70\51\99\83\117\51\99\57\79\51\67\82\67\51\99\84\56\51\57\90\52\51\56\51\111\51\57\72\52\49\52\51\69\75\101\51\102\75\54\51\66\75\66\51\70\103\101\51\103\48\104\51\53\87\121\51\99\121\108\51\99\52\79\51\66\79\77\51\101\51\56\51\54\71\53\51\65\108\74\51\68\55\52\51\56\79\65\51\69\89\100\51\70\55\71\51\51\51\77\51\57\78\84\51\70\102\69\51\99\112\55\51\53\78\55\51\57\54\121\51\57\100\120\51\70\79\121\51\70\84\101\51\70\52\50\50\55\55\51\101\118\56\51\68\81\80\51\69\81\78\51\100\86\53\51\70\71\85\51\99\105\111\51\67\117\111\51\69\81\75\51\53\122\83\50\101\90\49\49\50\50\107\50\53\118\51\50\72\53\49\52\51\50\53\72\49\103\51\101\100\104\51\99\103\55\51\100\115\72\51\99\81\56\51\101\87\116\51\68\65\99\51\66\99\65\51\67\77\79\51\68\48\89\51\102\48\122\51\66\87\81\51\67\71\73\51\69\120\51\51\102\105\80\51\98\51\89\51\68\106\81\51\98\73\117\51\66\51\105\51\55\109\55\51\102\77\74\50\50\51\51\102\109\108\51\54\114\56\51\54\82\97\51\68\87\101\51\71\50\119\51\102\76\118\51\67\76\97\51\53\113\69\51\99\118\77\51\102\97\50\51\102\52\107\51\70\89\70\51\101\105\80\51\70\105\51\51\70\68\109\51\70\105\53\51\70\68\111\51\98\116\69\51\70\73\56\51\70\89\112\51\65\120\57\51\102\78\49\51\52\122\75\51\56\75\118\51\102\100\56\51\68\65\87\51\66\104\98\51\66\50\87\51\54\115\67\50\75\84\51\51\55\97\51\66\74\49\51\71\51\82\51\54\117\101\51\103\51\84\51\69\102\57\51\102\116\88\51\101\70\99\51\70\109\83\51\65\120\106\51\99\86\65\51\70\109\86\51\69\78\65\51\70\72\81\51\101\88\78\51\70\78\56\51\102\114\76\51\68\102\74\51\98\106\79\51\100\80\108\51\101\50\108\51\69\66\100\51\101\55\51\51\71\48\55\51\68\84\104\51\102\102\52\51\98\101\120\51\53\108\98\51\57\98\73\51\103\48\100\51\98\71\97\51\69\81\50\51\102\66\54\51\102\103\70\51\69\72\49\51\66\97\69\51\56\110\76\51\54\87\109\51\67\116\108\51\103\48\85\51\66\54\52\51\99\84\121\51\98\90\119\51\66\102\103\51\98\70\55\51\71\49\101\51\101\85\52\51\66\52\83\51\102\87\90\51\65\108\106\51\99\121\65\51\71\49\51\51\53\74\75\51\101\74\78\51\68\78\115\51\68\50\107\51\56\90\66\51\68\108\101\51\54\88\98\51\102\83\104\51\102\119\56\51\55\68\54\51\98\53\108\51\100\76\49\51\100\108\56\51\54\88\66\51\56\53\51\51\97\97\120\51\101\51\55\51\102\119\101\51\70\97\90\51\70\87\86\51\100\108\81\51\70\83\77\51\55\119\89\51\65\118\120\51\68\56\105\51\102\56\48\50\50\81\51\98\66\110\51\68\77\48\51\98\54\103\51\102\88\73\51\56\80\51\51\69\72\110\51\49\65\90\50\55\51\50\51\113\50\54\112\51\50\114\76\50\50\55\50\51\67\50\52\78\50\51\111\51\102\51\121\51\100\122\89\51\98\54\115\51\53\76\65\51\97\72\97\51\100\88\115\51\100\118\113\51\70\72\84\51\67\49\121\51\69\57\88\51\100\105\48\51\102\108\121\51\97\51\48\51\70\105\49\51\69\68\120\51\97\119\122\51\71\55\97\51\101\101\49\51\71\51\66\51\102\113\51\51\101\73\118\51\66\100\78\51\53\56\55\51\70\117\83\51\99\54\99\51\100\68\105\51\71\50\101\51\70\69\65\51\56\87\110\51\100\65\101\51\70\76\104\51\102\48\122\51\102\76\74\51\67\87\71\51\101\120\51\51\67\66\57\51\98\119\119\51\68\106\49\51\98\89\98\51\71\51\111\51\101\48\81\51\51\82\51\51\102\77\101\51\98\88\90\51\69\74\75\51\53\114\119\51\69\69\104\51\50\78\72\51\69\101\74\51\54\49\82\50\49\84\51\51\82\51\51\71\51\112\51\98\51\116\51\69\86\72\51\70\78\52\51\70\57\80\51\100\78\82\51\67\49\54\51\56\57\107\51\101\74\48\51\69\88\53\51\70\86\68\51\67\104\50\51\55\79\107\51\102\116\89\51\71\55\89\51\100\114\77\51\71\56\49\51\99\68\55\51\52\109\115\51\101\106\68\51\66\106\74\51\68\49\81\51\70\81\111\51\65\117\51\51\71\99\102\51\69\120\101\51\70\74\50\51\103\56\98\51\68\49\90\51\71\56\68\51\101\50\114\51\102\86\86\51\69\109\112\51\69\80\50\51\66\79\74\51\55\52\70\51\57\99\121\51\55\67\54\51\69\112\75\51\66\98\57\51\56\72\78\51\66\117\52\51\57\53\113\51\66\85\99\51\97\107\121\51\71\52\117\51\70\50\88\51\70\83\109\51\99\88\108\51\56\111\97\51\99\48\54\51\53\100\56\51\57\53\85\49\49\51\69\71\69\51\71\48\82\51\56\51\111\51\70\51\52\51\70\74\122\51\67\68\120\51\70\71\66\51\70\50\86\51\71\48\103\51\101\51\89\51\67\111\121\51\56\48\49\51\103\49\71\49\52\51\56\52\48\51\99\52\87\51\55\89\69\51\57\53\84\51\101\77\85\49\49\51\70\83\89\51\99\57\67\51\52\121\86\51\99\52\76\51\65\52\118\51\57\55\65\51\65\98\54\51\67\107\74\51\54\89\54\51\56\53\120\51\70\56\51\51\102\67\68\51\70\55\122\51\97\104\48\50\102\106\50\54\75\49\112\50\49\69\50\49\114\50\54\112\50\69\67\51\49\100\108\50\50\57\50\49\57\50\52\69\51\54\57\53\51\69\105\57\51\53\49\50\51\57\49\115\51\68\72\56\51\68\77\71\51\57\105\80\51\103\51\103\51\100\101\75\51\71\51\73\51\57\81\67\51\102\52\120\51\97\120\87\51\51\67\85\51\101\109\118\51\101\69\111\51\102\56\83\51\67\54\73\51\101\87\121\51\54\65\73\51\102\76\106\51\102\53\109\51\100\119\84\51\52\77\56\51\56\101\107\51\57\69\82\51\68\49\97\51\101\57\109\51\52\90\56\51\68\101\53\51\97\49\102\51\53\53\103\51\70\77\80\51\101\102\98\51\56\76\53\51\100\82\109\51\99\49\73\51\56\82\50\51\52\77\115\51\102\106\114\51\54\51\53\51\57\102\75\51\69\57\87\51\57\102\78\51\103\55\53\51\70\121\101\51\71\97\79\51\70\77\48\51\66\56\88\51\100\70\54\51\66\116\98\51\102\52\82\51\102\77\54\51\70\65\99\51\70\109\56\51\70\48\99\51\66\88\49\51\101\115\117\51\51\100\103\51\55\116\56\51\52\122\70\51\99\87\51\51\69\115\121\51\66\51\78\51\102\53\118\51\101\115\120\51\102\118\107\51\68\111\105\51\70\65\77\51\70\118\78\51\68\111\108\51\57\121\49\51\99\51\104\51\70\110\103\51\67\105\76\51\71\52\68\51\68\121\52\51\69\116\67\51\68\56\48\51\67\106\51\51\53\106\107\51\71\68\88\51\67\52\111\51\70\55\55\51\51\69\89\51\54\70\53\51\102\55\52\51\67\111\105\51\103\57\110\51\65\102\116\51\70\103\51\51\69\72\52\51\55\67\90\51\65\66\50\51\52\122\56\51\70\106\118\51\57\72\113\51\56\66\74\51\103\53\52\51\66\80\85\51\71\53\54\51\71\68\74\51\65\48\51\51\57\48\79\51\67\79\101\51\101\117\108\51\65\71\76\51\101\56\57\51\55\68\49\51\54\108\114\51\101\85\54\51\56\84\98\51\49\52\81\51\50\80\66\51\100\80\101\51\54\53\90\51\101\85\55\51\70\70\111\51\51\55\66\50\119\100\51\56\51\114\51\71\100\113\51\55\107\65\51\56\85\55\49\50\51\100\122\54\51\71\57\116\51\70\88\103\51\99\75\102\51\100\100\57\51\100\113\89\51\97\98\55\51\101\90\52\51\99\122\100\51\65\77\52\51\103\57\89\51\70\56\52\51\66\114\99\51\51\75\71\49\50\50\55\50\50\53\80\51\67\112\81\50\67\90\51\53\81\50\51\57\115\76\50\50\90\51\98\88\51\51\57\57\122\51\103\97\76\50\49\65\51\100\109\79\51\102\112\117\51\100\57\78\51\70\52\108\51\102\80\120\51\70\89\72\51\71\97\82\51\102\113\48\51\103\51\57\51\101\97\56\51\101\114\74\51\102\77\55\51\102\73\57\51\66\50\105\51\68\75\50\51\57\70\105\51\103\51\77\51\71\66\70\51\103\66\109\50\50\51\51\103\98\111\51\66\50\88\51\101\119\114\51\103\54\69\51\102\56\81\51\99\67\116\51\100\110\119\51\70\118\53\51\71\50\107\51\100\73\116\51\54\97\76\51\69\110\51\51\69\87\88\51\57\119\88\51\97\106\70\51\69\69\122\51\68\79\55\51\100\87\90\51\103\50\85\51\98\101\57\51\103\66\85\51\102\85\80\51\101\74\71\51\70\52\98\51\55\106\116\51\68\74\101\51\65\72\70\51\68\114\68\51\69\114\83\51\102\69\78\51\55\56\57\51\56\50\76\51\65\120\70\51\56\108\50\51\66\52\50\51\71\51\121\51\100\114\77\51\66\121\97\51\99\54\116\51\100\78\70\51\101\70\52\51\69\115\90\51\69\54\118\51\66\52\105\51\103\103\106\51\101\50\105\51\103\48\51\51\98\111\114\51\102\82\110\51\71\52\67\51\69\75\80\51\99\115\98\51\71\48\57\51\70\114\82\51\103\56\104\51\69\112\51\51\68\50\75\51\56\72\57\51\100\54\90\51\103\72\49\51\102\107\72\51\102\106\98\51\53\77\111\51\102\50\51\51\51\51\109\51\67\84\48\51\102\106\69\51\68\50\65\51\53\78\79\51\99\121\52\51\57\107\112\51\97\108\75\51\99\74\88\51\56\111\65\51\56\49\76\51\103\104\70\51\103\53\68\51\65\71\108\51\101\85\48\51\103\71\118\51\53\57\51\51\71\68\101\51\67\69\90\51\100\55\108\51\67\116\57\51\71\72\115\51\56\105\69\51\103\53\76\51\53\100\56\51\53\120\116\51\98\102\56\51\69\106\83\51\103\97\104\51\57\121\105\51\66\90\67\51\71\52\51\51\69\71\70\51\103\48\101\51\71\53\53\51\70\75\56\51\101\117\72\51\67\74\83\51\68\103\121\51\53\107\72\51\102\51\71\51\55\54\48\51\57\106\55\51\51\68\88\50\53\85\50\52\73\51\52\86\53\50\50\113\50\49\114\50\52\90\50\54\48\51\67\117\107\51\67\80\115\51\100\51\115\51\98\103\75\51\70\51\73\51\101\72\76\51\70\79\122\51\67\80\114\51\69\52\57\51\98\114\100\51\100\82\50\51\56\55\72\51\101\57\86\51\53\54\65\51\99\66\115\51\68\57\108\51\103\73\82\51\70\72\122\51\71\70\84\51\70\89\71\51\102\85\69\51\103\51\55\51\102\97\56\51\71\73\89\51\102\85\72\51\68\109\121\51\102\85\74\51\101\111\76\51\69\87\51\51\53\56\55\51\98\122\50\51\71\55\75\51\100\88\114\51\67\76\85\51\71\106\90\51\71\71\54\51\55\84\97\51\68\82\56\51\102\121\115\51\103\50\113\51\102\53\48\51\68\101\55\51\69\78\81\51\101\87\70\51\67\86\57\51\69\70\70\51\69\119\72\51\55\48\49\51\65\120\80\51\69\55\49\51\54\57\89\51\54\50\50\51\70\108\99\51\57\101\66\51\103\50\104\51\66\99\57\51\71\70\49\51\53\117\55\51\68\87\113\51\98\79\53\51\99\81\74\51\98\99\107\51\66\56\100\51\69\120\55\51\102\57\52\51\70\83\54\51\65\55\104\51\55\111\122\51\51\55\114\51\67\52\76\51\101\120\98\51\100\75\55\51\71\103\101\51\101\66\66\51\103\71\105\51\70\78\101\51\102\65\81\51\70\106\53\51\99\100\76\51\102\86\84\51\101\102\119\51\55\105\75\51\97\52\51\51\97\49\53\51\103\100\77\51\54\54\118\51\102\50\69\51\97\113\87\51\102\102\77\51\103\76\109\51\55\88\113\51\56\117\83\51\100\80\106\51\69\71\51\51\51\111\50\51\69\77\51\51\103\71\120\51\98\53\119\51\56\111\65\51\55\119\84\51\65\52\86\51\70\78\122\51\102\54\120\51\101\76\107\51\53\100\79\51\57\57\52\51\71\68\49\51\102\107\57\51\56\66\115\51\70\110\90\51\103\72\57\51\68\122\65\51\103\109\49\51\102\55\79\51\67\79\121\51\98\55\56\51\65\118\113\51\56\51\85\51\66\81\75\51\99\69\105\51\55\80\114\51\57\81\54\51\53\56\107\51\54\54\84\51\67\73\118\51\100\50\106\51\56\53\51\51\69\72\56\51\70\48\80\51\69\81\99\51\100\100\48\51\70\108\51\51\101\86\51\51\101\48\69\51\98\87\51\51\57\100\83\51\69\56\111\51\49\48\108\50\50\110\50\50\109\50\54\74\50\49\67\50\54\103\51\50\101\109\51\66\86\84\51\97\109\52\51\56\53\88\51\99\75\106\50\112\55\51\99\80\88\51\56\51\75\51\98\100\50\51\68\97\52\51\67\82\102\51\99\118\107\51\65\50\115\51\70\80\84\51\103\51\51\51\69\105\110\51\69\68\86\51\103\110\48\51\103\97\81\51\102\109\50\51\102\89\74\51\102\68\110\51\71\65\85\51\103\55\68\51\102\113\52\51\71\51\69\51\56\56\100\51\102\117\83\51\102\122\56\51\53\116\105\51\69\49\69\51\103\66\50\51\70\73\103\51\55\77\114\51\101\97\112\51\97\78\87\51\102\101\69\51\97\78\90\51\103\99\51\51\101\53\87\51\56\114\119\51\67\119\105\51\101\57\55\51\53\106\89\51\98\67\110\51\55\86\80\51\68\106\51\49\53\51\71\54\90\51\102\99\83\51\100\111\67\51\52\109\115\51\70\83\54\51\71\110\67\51\70\82\69\51\67\119\51\51\69\115\77\51\68\83\118\51\65\55\51\51\56\120\54\51\70\48\106\51\53\116\49\51\66\100\88\51\102\81\69\51\51\69\56\51\56\76\65\51\103\99\57\51\68\74\85\51\70\53\85\51\103\51\78\51\57\118\99\51\51\83\72\51\67\54\57\51\67\87\116\51\103\75\103\51\67\51\103\51\70\56\77\51\100\49\117\51\103\99\72\51\102\110\100\51\69\88\103\51\66\106\83\51\102\110\72\51\70\70\50\51\71\56\71\51\68\121\54\51\54\53\71\51\97\122\110\51\71\76\75\51\68\55\84\51\102\103\99\51\69\117\70\51\71\80\76\51\103\56\78\51\101\121\84\51\57\53\82\51\71\48\90\51\55\51\80\51\103\53\66\51\71\72\76\51\56\97\119\51\68\51\57\51\70\104\101\51\54\111\51\51\57\54\49\51\71\100\84\51\102\68\54\51\56\79\102\51\71\80\98\51\57\119\121\51\102\50\78\51\100\56\51\51\51\78\108\51\98\122\99\51\69\115\51\51\103\112\70\51\103\72\50\51\55\81\48\51\54\111\103\51\53\97\104\51\69\103\53\51\68\56\55\51\71\104\81\51\68\85\87\51\55\120\113\51\68\67\99\51\54\55\51\51\65\76\53\51\56\65\72\51\54\70\51\51\71\84\82\49\49\51\71\57\55\51\55\69\122\51\69\109\55\51\100\81\82\51\53\69\52\50\116\48\50\54\111\50\50\65\49\118\50\49\84\50\50\100\50\54\110\50\52\116\50\52\66\51\52\112\83\51\68\109\53\51\70\56\54\50\105\52\51\70\88\70\51\70\112\52\51\101\89\122\51\56\80\105\51\56\80\107\51\68\76\89\51\71\109\105\51\100\68\55\51\97\87\68\51\99\122\108\51\68\69\111\51\65\55\73\51\50\78\82\51\70\87\84\51\70\117\54\51\54\66\70\51\98\83\121\51\102\85\57\51\100\82\87\51\71\109\120\51\102\100\104\51\103\105\116\51\100\109\115\51\71\73\86\51\103\81\90\51\71\51\56\51\71\114\49\51\70\85\73\51\100\102\65\51\69\82\76\51\102\52\86\51\65\56\88\51\54\49\82\50\50\103\51\52\51\88\51\69\110\71\51\70\111\86\51\54\67\117\51\102\82\52\51\70\76\111\51\54\50\74\51\101\54\50\51\70\77\113\51\54\48\80\51\70\85\48\51\68\74\80\51\70\117\50\51\99\114\51\51\57\108\87\51\97\73\110\51\103\82\56\51\54\57\89\51\103\114\97\51\71\106\100\51\103\50\102\51\56\73\70\51\103\74\77\51\69\77\89\51\71\111\49\51\54\109\65\51\100\49\49\51\69\97\86\51\70\53\78\51\100\106\74\51\101\97\90\51\54\113\50\51\54\50\88\51\57\76\86\51\51\55\114\51\101\48\108\51\50\110\72\51\101\48\78\51\71\101\113\51\68\88\80\51\102\72\53\51\102\52\66\51\57\67\48\51\56\83\107\51\103\83\105\51\71\111\75\51\98\89\110\51\102\101\87\51\71\111\73\51\99\56\70\51\102\69\117\51\67\115\55\51\103\83\113\51\69\66\103\51\103\67\78\51\102\54\102\51\54\73\117\51\97\52\51\51\56\73\48\51\70\115\70\51\53\78\79\51\70\50\54\51\100\66\77\51\69\55\65\51\71\67\119\51\100\122\79\51\68\103\87\51\55\51\80\51\57\88\116\51\71\116\78\51\71\107\121\51\67\100\81\51\70\111\119\51\103\80\74\51\102\71\100\51\71\84\48\51\71\53\55\51\70\51\54\51\54\55\66\51\69\71\114\51\102\98\74\51\71\53\73\51\65\121\51\51\57\119\105\51\101\72\57\51\71\69\80\51\54\87\97\51\66\76\97\51\102\106\106\51\97\98\49\51\68\113\57\51\53\109\89\51\67\72\99\51\71\100\98\51\55\100\54\51\53\103\55\51\69\121\83\51\70\55\53\51\66\112\100\51\55\52\71\51\99\52\79\51\68\55\54\51\56\79\65\51\65\49\53\51\102\51\71\51\57\100\71\51\51\68\52\50\50\100\49\68\50\81\51\50\53\104\51\57\68\69\51\67\53\119\51\102\84\76\51\68\81\120\51\71\85\114\51\54\121\49\51\70\84\67\51\55\76\98\51\65\119\67\51\102\116\69\51\101\68\72\51\100\77\105\51\54\74\107\51\54\106\109\51\101\82\54\51\100\82\89\51\53\71\108\51\98\104\80\51\71\102\114\51\71\51\52\51\102\52\109\51\102\112\121\51\103\73\119\51\103\114\48\51\71\55\66\51\103\82\50\51\100\109\90\51\103\65\87\51\100\87\57\51\53\56\55\51\101\82\111\51\97\73\76\51\66\109\104\51\68\114\51\51\103\82\120\51\100\78\82\51\67\108\117\51\100\48\101\51\70\108\78\51\98\77\110\51\65\105\100\51\57\87\118\51\70\89\120\51\55\84\89\51\56\50\115\51\69\83\48\51\52\122\49\51\67\110\49\51\103\83\66\51\70\105\122\51\65\74\112\51\100\73\107\51\70\117\90\51\99\77\75\51\102\76\68\51\71\54\103\51\103\69\122\51\55\72\55\51\67\109\113\51\53\117\55\51\98\79\51\51\56\119\111\51\103\79\52\51\69\120\51\51\65\111\52\51\98\87\87\51\55\86\111\51\55\103\113\51\100\49\98\51\69\81\57\51\66\51\111\51\98\51\113\51\70\53\119\51\100\71\78\51\66\72\54\51\71\103\68\51\69\84\50\51\65\57\51\51\71\103\71\51\102\65\111\51\71\71\74\51\103\111\109\51\99\115\57\51\99\68\102\51\101\111\90\51\71\48\57\51\103\111\81\51\54\53\71\51\67\48\66\51\71\120\116\51\54\54\79\51\57\98\110\51\71\50\98\51\54\119\97\51\98\118\48\51\100\112\106\51\70\75\52\51\56\53\75\51\99\88\109\51\55\82\121\51\98\118\48\51\69\56\48\51\99\52\70\51\54\49\73\51\70\50\114\51\66\98\56\51\65\49\99\51\66\66\97\51\98\85\52\51\69\71\120\51\52\65\82\51\103\112\84\51\55\105\77\51\102\120\98\51\55\98\87\51\71\88\104\51\67\57\111\51\103\53\104\51\100\89\65\51\70\51\50\51\56\73\68\51\52\54\50\51\55\88\84\51\54\76\79\51\57\57\51\51\68\51\67\51\71\68\71\51\103\48\70\51\99\101\50\51\103\116\49\51\101\107\105\51\53\57\65\51\102\84\50\51\71\69\75\51\54\89\97\51\66\121\121\51\98\76\117\51\71\121\78\51\102\84\52\51\69\113\114\51\68\104\56\51\65\98\65\51\55\54\48\50\68\57\51\52\97\49\50\52\80\50\54\117\50\51\83\50\52\118\50\50\55\50\50\76\51\103\113\56\51\102\116\71\51\57\118\50\51\69\105\100\51\103\115\75\51\53\105\88\51\103\54\68\51\57\51\57\51\71\54\70\51\70\81\117\51\67\119\97\51\67\109\79\51\101\83\103\51\102\90\72\51\54\122\79\51\104\48\98\51\71\50\110\51\67\113\106\51\101\49\81\51\70\105\113\51\97\74\105\51\55\118\80\51\100\88\68\51\68\65\82\51\70\108\116\51\53\105\53\51\55\55\67\51\51\68\103\51\67\121\49\51\101\53\90\51\68\49\55\51\54\90\120\51\100\68\104\51\54\76\66\51\68\57\52\51\70\49\52\51\97\105\105\51\71\115\56\51\100\101\69\51\102\77\104\51\102\83\72\51\103\98\122\51\70\112\80\51\71\113\80\51\101\79\53\51\102\80\83\51\71\65\78\51\99\50\54\51\103\81\88\51\102\109\49\51\67\99\48\51\103\110\51\51\103\86\67\51\103\78\54\51\103\86\69\51\102\52\85\51\103\110\57\51\54\52\74\51\55\121\81\51\69\48\112\51\103\49\106\51\102\110\50\51\102\57\110\51\70\82\67\51\103\66\119\51\70\49\74\51\98\69\104\51\70\122\89\51\100\70\108\51\103\87\121\51\100\116\65\51\100\51\72\51\71\75\107\51\100\120\90\51\67\100\105\51\103\87\90\51\57\66\98\51\70\110\73\51\103\53\89\51\103\88\51\51\69\107\84\51\53\50\98\51\57\79\55\51\99\89\71\51\69\75\122\51\54\55\50\51\70\51\56\51\98\76\98\51\69\121\52\51\102\102\87\51\71\68\48\51\102\83\75\51\99\53\55\51\69\112\55\51\69\56\66\51\56\52\108\51\102\111\73\51\71\100\99\51\51\106\77\51\50\113\112\51\101\80\82\51\54\54\116\51\69\55\116\51\67\106\101\51\69\89\116\51\99\100\115\51\51\72\106\51\57\54\50\51\56\55\51\51\97\49\53\51\68\89\88\51\54\55\53\51\71\104\54\51\103\76\89\51\102\114\87\51\68\66\104\51\70\82\89\51\102\78\120\51\97\48\51\51\57\99\56\51\68\48\81\51\57\73\114\51\102\50\77\51\56\84\89\51\55\67\54\51\99\70\49\51\54\55\53\51\100\98\112\51\70\75\52\51\97\52\53\51\70\75\106\51\104\50\86\51\65\54\71\51\99\122\98\51\103\105\55\51\71\53\88\51\67\70\114\51\67\53\119\51\53\108\56\51\66\71\79\51\68\113\117\51\67\53\89\51\67\121\84\51\54\57\53\51\49\90\50\50\66\90\50\50\89\50\49\52\51\53\81\50\51\55\88\49\51\55\118\120\51\97\72\101\51\70\80\111\51\102\121\55\51\70\52\71\51\65\79\103\51\65\84\102\51\102\72\121\51\103\86\54\51\71\55\55\51\68\115\51\51\102\100\76\51\71\105\88\51\72\52\97\51\101\97\57\51\102\52\116\51\69\119\50\51\69\54\83\51\71\51\102\51\53\102\99\51\103\98\81\51\71\55\81\51\101\101\66\51\104\52\79\51\103\87\48\51\53\73\88\51\102\122\65\51\103\114\98\51\70\122\99\51\68\78\88\51\99\71\67\51\53\65\56\51\100\100\112\51\68\73\85\51\69\102\98\51\70\108\76\51\103\67\49\51\65\79\54\51\57\69\83\51\103\87\72\51\50\82\48\51\70\77\100\50\50\51\51\102\109\70\51\70\52\56\51\71\101\82\51\102\121\52\51\101\83\54\51\71\119\113\51\70\99\85\51\68\106\113\51\55\48\56\51\65\88\69\51\102\57\50\51\67\103\104\51\72\51\83\51\101\50\52\51\70\90\48\51\99\56\57\51\69\50\55\51\103\118\89\51\102\51\65\51\104\48\113\51\65\90\49\51\104\48\115\51\55\87\57\51\72\52\117\51\101\107\108\51\69\120\72\51\69\79\120\51\103\67\76\51\104\48\122\51\71\115\115\51\98\57\80\51\101\113\66\51\57\53\74\51\68\112\103\51\52\87\68\51\56\111\119\51\103\84\90\51\97\57\120\51\69\85\49\51\54\55\53\51\71\99\66\51\54\119\65\51\56\53\53\51\70\115\89\51\97\52\55\51\101\72\51\51\103\120\73\51\99\106\107\51\71\108\108\51\103\52\90\51\100\55\72\51\101\85\65\49\52\51\103\89\52\51\71\88\84\51\104\53\56\51\100\90\54\51\70\107\52\51\100\55\56\51\104\49\75\51\54\67\117\51\104\49\109\51\68\90\79\51\56\71\105\51\71\120\76\51\103\115\90\51\103\100\105\51\102\107\65\51\57\84\52\51\69\103\109\51\56\79\65\51\57\57\52\51\68\55\53\51\98\65\49\51\53\121\55\51\98\97\120\51\68\98\112\51\69\104\73\51\56\106\48\51\68\56\75\51\101\56\79\50\70\74\50\51\101\50\50\107\50\51\122\50\52\108\50\52\55\49\72\50\55\51\50\50\77\51\49\108\50\49\108\50\49\72\51\54\48\54\51\98\82\53\51\54\121\54\51\67\75\57\51\71\73\50\50\101\49\51\101\122\76\51\57\111\107\51\70\112\105\51\71\74\116\51\71\51\108\50\54\107\51\101\69\102\51\56\55\80\51\57\114\56\51\53\102\67\51\66\67\119\51\51\100\103\51\72\49\74\51\101\53\71\51\104\52\107\51\100\65\86\51\100\120\114\51\54\69\107\51\103\51\83\51\102\116\86\51\101\50\48\51\102\67\121\51\57\56\77\51\56\107\88\51\99\77\57\51\54\100\66\51\65\111\56\51\51\100\103\51\71\108\88\51\67\76\56\51\55\56\108\51\53\71\71\51\69\48\119\51\55\56\80\51\68\114\121\51\103\113\85\51\70\48\49\51\103\73\85\51\71\110\49\51\103\90\57\51\103\86\98\51\103\122\98\51\103\118\68\51\69\87\49\51\102\65\68\51\68\78\50\51\102\87\121\51\69\109\84\51\104\48\51\51\100\53\118\51\56\114\76\51\72\48\55\51\71\50\74\51\69\75\50\51\53\74\76\51\101\49\109\51\54\109\68\51\68\54\52\51\70\69\75\51\102\90\77\51\69\49\82\51\56\75\120\51\54\50\88\51\102\48\78\51\50\82\48\51\101\102\107\51\104\52\112\51\67\73\105\51\69\107\72\51\71\48\49\51\99\105\88\51\71\56\65\51\103\52\98\51\71\56\99\51\103\71\77\51\101\116\98\51\67\88\55\51\100\116\107\51\99\79\65\51\103\80\50\51\53\74\75\51\72\53\121\51\103\112\122\51\51\111\50\51\97\108\111\51\68\84\52\51\71\49\55\51\104\57\71\51\67\57\111\51\69\55\114\51\103\52\121\51\69\71\97\51\55\68\54\51\55\48\87\51\69\117\98\51\66\48\113\51\100\51\106\51\66\51\109\51\54\119\114\51\56\111\97\51\65\122\116\51\53\110\53\51\55\66\67\51\71\108\55\51\69\48\72\51\101\85\100\51\71\83\121\51\70\55\109\51\71\120\110\51\71\72\99\51\56\97\83\51\66\102\118\51\71\76\49\51\66\48\55\51\49\73\105\51\50\112\98\51\72\51\89\51\97\97\115\51\55\52\54\51\99\84\52\51\68\54\118\51\54\120\78\51\68\103\101\51\53\89\55\51\57\48\77\51\69\103\84\51\97\52\118\51\66\81\75\51\72\54\71\51\102\67\76\51\68\118\108\51\57\86\51\51\54\48\54\51\49\48\108\50\53\51\50\53\100\50\54\67\50\51\87\50\53\112\50\54\50\50\49\49\51\98\82\53\51\56\106\72\51\66\49\53\51\57\85\81\51\103\89\116\51\55\54\110\51\70\67\67\51\57\112\102\51\72\65\120\50\56\54\51\71\65\71\51\99\52\78\51\72\66\99\51\100\114\53\51\71\55\108\51\102\52\99\51\102\76\65\51\55\55\110\51\104\55\82\51\104\48\53\51\66\119\77\51\71\114\101\51\104\51\53\51\103\98\54\51\72\51\55\51\56\56\84\51\67\87\102\51\102\82\50\51\69\53\89\51\102\49\52\51\65\78\57\51\70\99\119\51\69\70\48\51\55\118\112\51\101\115\82\51\57\101\117\51\102\119\55\51\100\69\117\51\97\68\108\51\103\122\50\50\49\97\51\100\101\121\51\104\98\120\51\70\117\67\51\70\100\74\51\103\81\121\51\104\52\56\51\70\85\103\51\70\109\53\51\102\48\57\51\102\68\81\51\102\117\108\51\56\109\54\51\55\84\109\51\68\56\90\51\101\119\98\51\72\51\81\51\67\56\51\51\100\101\66\51\71\110\112\51\55\57\89\51\100\48\77\51\57\101\116\51\50\78\82\51\101\88\83\51\99\77\70\51\101\69\56\51\67\99\108\51\98\87\98\51\50\110\72\51\66\87\100\51\53\70\67\51\98\51\80\51\51\100\103\51\102\114\57\51\71\52\52\51\69\75\71\51\101\66\57\51\70\65\76\51\71\87\87\51\67\100\71\51\71\115\79\51\69\50\79\51\104\52\121\51\70\97\84\51\71\75\114\51\100\50\52\51\66\57\81\51\56\78\106\51\98\107\51\51\68\99\97\51\53\67\82\51\104\100\74\51\72\101\51\51\100\85\111\51\68\112\122\51\72\100\81\51\55\52\118\51\103\88\86\51\68\76\67\51\54\54\84\51\66\53\101\51\103\84\65\51\102\75\52\51\104\57\56\51\57\116\57\51\52\121\86\51\104\51\89\51\101\76\54\51\72\53\69\51\70\83\77\51\102\82\117\51\55\53\56\51\67\57\53\51\69\67\50\51\70\78\87\51\104\50\56\51\98\122\50\51\98\102\70\51\103\52\107\51\52\121\118\51\69\70\107\51\99\52\90\51\55\106\121\49\49\51\72\57\114\51\69\99\100\51\55\51\80\51\98\85\49\51\56\84\85\51\70\79\99\51\53\100\50\51\69\52\52\51\102\84\50\50\100\57\50\53\50\50\52\87\50\52\67\50\51\71\50\50\86\49\118\50\50\86\50\53\120\51\71\97\48\51\100\118\98\51\103\85\84\51\71\89\119\51\102\75\75\51\69\86\65\51\97\119\103\51\103\49\84\51\53\49\53\51\70\56\108\51\65\53\104\51\70\112\108\51\65\49\67\51\71\114\108\51\70\104\104\51\69\119\68\51\102\57\67\51\103\86\84\51\54\100\54\51\67\118\97\51\103\118\119\51\72\48\73\51\51\100\103\51\102\87\116\51\68\65\56\51\102\113\114\51\70\101\57\51\103\114\67\51\101\120\50\51\67\87\98\51\103\119\56\51\102\69\103\51\101\88\48\51\68\119\114\51\72\55\90\51\71\75\52\51\53\106\89\51\54\65\88\51\104\70\83\51\102\53\83\51\70\110\84\51\71\122\108\51\70\49\74\51\101\115\56\51\54\98\67\51\70\117\55\51\103\86\50\51\54\98\74\51\70\117\65\51\103\122\53\51\71\81\118\51\71\51\53\51\71\122\56\51\71\118\65\51\72\52\57\51\104\67\51\51\72\52\98\51\72\67\53\51\103\71\49\51\97\120\57\51\103\110\101\51\97\68\53\51\65\68\55\51\70\117\87\51\66\121\80\51\51\98\71\51\100\78\105\51\71\75\68\51\55\50\101\51\70\73\120\51\56\51\51\51\72\50\121\51\101\76\102\51\69\102\113\51\71\56\54\51\104\52\82\51\69\116\56\51\70\97\115\51\71\120\49\51\72\49\48\51\97\53\120\51\102\54\72\51\54\118\121\51\54\56\98\51\71\85\50\51\102\74\109\51\72\68\71\51\72\49\89\51\70\49\100\51\50\82\110\51\70\115\86\51\70\98\120\51\66\112\108\51\100\80\120\51\103\108\116\51\70\50\50\51\68\84\118\51\57\115\78\51\51\48\49\51\103\116\115\51\99\79\77\51\71\120\66\51\70\115\56\51\53\100\50\51\99\54\53\51\71\103\116\51\70\83\74\51\71\57\79\51\104\68\68\51\101\80\55\51\56\111\84\51\98\118\53\51\72\53\120\51\97\56\56\51\55\71\118\51\69\88\84\51\50\117\53\51\71\108\122\51\71\72\97\51\72\68\121\51\72\65\50\51\57\54\79\51\72\65\54\51\103\53\103\51\54\49\105\51\71\72\52\50\73\51\51\72\57\101\51\72\65\55\51\71\113\50\51\68\99\118\51\103\49\113\51\72\54\104\51\55\53\81\51\70\107\120\51\57\117\119\51\70\52\53\51\72\101\90\51\52\104\51\50\50\117\51\70\67\56\51\53\69\56\51\67\48\122\51\69\86\57\51\65\77\52\50\102\106\50\53\87\50\52\67\49\79\50\54\65\50\54\100\50\50\97\50\52\99\50\49\53\50\54\69\50\50\118\50\53\51\50\52\113\51\102\56\108\51\57\79\55\51\101\70\53\51\65\79\52\51\100\110\54\51\69\82\119\51\102\104\74\51\101\114\121\51\72\71\105\51\52\57\71\51\103\122\119\50\53\56\51\71\50\84\51\50\110\82\51\71\84\97\51\101\114\52\51\103\90\48\51\53\81\66\51\101\68\114\51\54\115\78\51\103\90\52\51\103\118\53\51\102\97\51\51\71\77\122\51\71\55\56\51\102\85\102\51\100\57\84\51\103\51\97\51\72\99\52\51\104\55\70\51\72\99\54\51\102\48\67\51\103\51\75\51\66\50\120\51\103\110\87\51\102\122\98\51\104\102\69\51\55\55\120\51\103\54\104\51\97\89\50\51\101\107\49\51\68\115\79\51\54\109\65\51\97\111\49\51\103\74\108\51\56\114\119\51\67\54\112\51\71\67\50\51\100\53\101\51\54\65\89\51\70\49\57\51\100\88\49\51\53\73\53\51\70\68\118\51\104\107\112\51\102\54\53\51\57\74\110\51\55\77\54\51\104\57\98\51\68\106\56\51\69\100\75\51\70\114\68\51\100\110\82\51\68\49\70\51\99\105\99\51\69\97\74\51\72\52\116\51\72\99\87\51\102\74\50\51\104\104\52\51\104\52\88\51\56\77\84\51\104\76\48\51\72\57\48\51\101\88\77\51\104\53\51\51\55\98\122\51\54\54\116\51\53\112\88\51\70\106\106\51\103\100\109\51\56\78\90\51\71\88\119\51\57\90\116\51\72\73\100\51\57\115\118\51\56\104\108\51\72\57\90\51\72\68\88\51\104\97\49\51\97\53\70\51\57\116\52\51\102\55\48\51\51\70\75\51\68\90\72\51\104\104\85\51\103\107\119\51\101\116\71\51\69\80\55\51\55\104\89\51\70\107\52\51\103\49\66\51\102\106\88\51\72\108\121\51\97\73\110\51\56\51\85\51\69\56\53\51\101\112\69\51\53\68\56\51\68\122\104\51\67\79\115\51\71\84\103\51\66\85\52\51\67\73\83\51\104\49\88\51\103\72\115\51\54\55\102\51\97\70\76\51\103\108\56\51\55\120\49\51\103\73\49\51\103\85\110\51\55\90\85\51\103\69\74\51\98\103\74\51\57\100\101\51\53\69\85\51\69\86\53\51\71\53\87\51\54\81\90\51\71\81\52\51\71\121\117\50\79\115\50\49\79\50\52\52\50\54\72\50\52\54\50\53\79\50\49\50\50\49\118\50\52\57\50\54\85\50\53\65\50\52\110\50\51\67\50\54\50\50\54\84\50\51\55\51\68\77\56\51\55\54\79\51\99\80\120\51\56\78\105\51\102\113\107\51\70\113\77\51\104\53\121\51\71\98\122\51\101\54\56\51\71\81\79\51\54\66\71\51\67\114\71\51\98\100\54\51\103\81\116\51\70\68\71\51\72\110\117\51\104\52\53\51\72\78\119\51\103\110\50\51\104\71\54\51\103\102\121\51\72\103\56\51\103\55\69\51\72\103\65\51\55\117\90\51\69\49\67\51\103\74\67\51\104\51\49\51\103\106\69\51\68\83\76\51\56\114\111\51\68\100\111\51\102\56\118\51\104\74\81\51\100\111\51\51\101\88\51\51\71\82\76\51\66\111\57\51\70\82\54\51\102\57\51\51\100\49\66\51\55\77\56\51\70\109\107\51\54\100\113\51\72\111\86\51\102\49\72\51\104\79\120\51\70\49\106\51\71\90\78\51\103\78\107\51\104\51\79\51\70\57\65\51\104\106\57\51\66\119\114\51\102\81\67\51\100\114\77\51\70\81\102\51\104\56\78\51\52\109\115\51\70\113\106\50\54\75\51\103\55\112\51\51\55\82\51\51\115\68\51\52\90\102\51\104\79\52\51\103\56\53\51\102\101\116\51\71\78\85\51\67\51\73\51\71\52\57\51\71\48\52\51\68\84\101\51\104\67\90\51\71\75\79\51\57\53\100\51\68\79\116\51\66\107\48\51\101\51\70\51\56\78\107\51\54\55\50\51\99\57\116\51\69\72\48\51\98\121\102\51\72\72\118\51\67\107\50\51\67\57\79\51\66\90\50\51\101\76\97\51\68\107\111\51\72\105\50\51\103\120\79\51\71\88\74\51\65\81\88\51\57\120\84\51\98\86\99\51\56\74\83\51\99\102\53\51\102\48\113\51\104\73\103\51\100\112\110\51\68\122\111\51\68\112\49\51\52\49\66\51\54\55\53\51\100\107\89\51\53\78\53\51\53\82\121\51\68\50\99\51\103\107\74\51\99\56\85\51\56\50\72\51\70\55\74\51\67\88\86\51\57\99\113\51\101\108\49\51\72\81\71\51\55\75\52\51\100\75\104\51\55\107\65\51\53\120\82\51\104\108\76\51\54\81\52\51\69\67\85\51\54\72\113\51\103\77\72\51\103\121\72\51\99\48\113\51\104\77\75\51\56\118\106\51\71\69\54\51\104\53\48\51\102\110\75\51\52\53\78\50\51\50\51\98\66\110\51\56\106\65\51\50\101\66\49\57\50\49\55\50\54\55\50\52\68\50\49\108\50\54\53\51\49\50\53\50\51\48\50\52\53\50\53\57\50\50\66\49\88\50\54\83\50\52\105\50\55\48\51\102\56\108\51\55\120\53\51\103\71\52\51\52\77\83\51\72\114\73\51\101\70\53\51\103\114\76\51\68\110\54\51\70\53\50\51\98\55\110\51\99\49\102\51\68\110\98\51\67\86\97\51\71\52\49\51\67\110\68\51\102\87\99\51\97\108\57\51\102\48\114\51\104\72\108\51\104\70\100\51\57\101\66\51\72\55\84\51\67\67\115\51\101\109\122\51\72\67\70\51\56\69\99\51\56\101\69\51\97\50\55\51\56\82\87\51\101\69\89\51\72\79\74\51\100\79\55\51\69\70\73\51\72\51\72\51\57\51\88\51\56\81\79\51\65\73\111\51\102\49\67\51\71\81\49\51\54\98\99\51\71\73\77\51\53\81\98\51\66\50\48\51\68\109\110\51\71\51\50\51\104\114\81\51\71\55\54\51\72\78\86\51\104\55\65\51\71\55\57\51\104\55\99\51\72\107\68\51\104\55\69\51\71\74\49\51\103\55\102\51\68\48\98\51\53\56\57\51\104\106\90\51\101\83\54\51\68\79\70\51\103\87\115\51\72\107\115\51\98\84\110\51\103\56\57\51\103\99\105\51\72\67\121\51\71\67\107\51\104\68\48\51\102\49\88\51\103\48\65\51\71\75\83\51\68\67\83\51\70\74\119\51\104\72\115\51\70\70\72\51\57\72\98\51\55\67\116\51\100\103\54\51\97\81\120\51\68\108\57\51\53\68\56\51\57\72\69\51\71\118\49\51\68\55\75\51\71\79\88\51\72\57\107\51\55\51\99\51\98\86\104\51\99\86\55\51\70\54\49\51\102\55\107\51\104\68\87\51\57\90\121\51\104\77\53\51\72\112\81\51\57\54\111\51\54\101\107\51\71\100\77\51\103\56\82\51\98\81\98\51\104\72\72\51\103\48\78\51\71\104\103\51\54\53\118\51\97\52\85\51\67\52\111\51\102\120\50\51\104\80\116\51\66\48\117\51\99\84\77\51\54\54\84\51\98\48\65\51\102\78\116\51\104\49\117\51\69\80\55\51\55\48\53\51\71\49\110\51\55\69\54\51\104\74\48\51\54\81\117\50\80\121\50\49\48\50\49\51\50\54\83\50\53\113\50\51\104\50\53\113\50\54\80\51\53\80\104\50\50\120\50\84\74\50\52\54\51\50\100\103\51\101\104\107\51\104\65\87\50\50\51\51\100\56\69\51\54\56\84\51\102\108\54\51\70\80\56\51\71\121\86\51\103\101\53\51\53\48\113\51\67\122\76\51\99\103\55\51\70\48\83\51\72\79\55\51\57\101\66\51\70\81\86\51\101\53\115\51\72\48\57\51\71\119\57\51\54\50\76\51\98\105\76\51\68\49\51\51\102\49\51\51\66\115\110\51\72\71\69\51\54\114\84\51\56\115\50\51\102\53\115\51\71\72\112\51\56\81\80\51\102\53\111\51\69\120\52\51\56\50\108\51\68\48\104\51\65\73\69\51\71\122\116\51\67\49\103\51\100\106\80\51\67\49\73\51\70\122\50\51\72\106\104\51\102\57\109\51\102\72\51\51\71\74\86\51\69\78\106\51\53\115\69\51\72\107\49\51\102\52\69\51\55\102\49\51\53\103\103\51\104\87\82\51\99\50\48\51\69\111\56\51\72\119\117\51\71\70\83\51\72\114\115\51\104\119\120\51\104\110\120\51\100\119\52\51\70\65\65\51\71\51\67\51\103\78\56\51\104\55\72\51\104\103\66\51\53\73\53\51\102\65\104\51\99\71\113\51\70\110\48\51\54\49\73\51\104\75\78\51\70\113\72\49\56\51\72\57\82\51\103\103\68\51\104\117\68\51\55\105\51\51\102\54\55\51\70\78\100\51\103\67\74\51\72\56\88\51\104\88\103\51\104\100\50\51\71\120\50\51\104\68\51\51\102\51\65\51\65\52\118\51\56\52\97\51\71\57\50\51\65\103\108\51\70\70\120\51\56\79\65\51\68\98\102\51\101\121\108\51\98\66\52\51\98\70\51\51\101\104\53\51\68\117\112\51\101\98\81\50\109\49\51\65\107\75\51\98\65\107\51\97\52\87\51\70\118\89\51\53\67\51\51\49\67\99\51\70\119\49\51\68\67\51\51\71\56\80\51\97\118\53\51\70\54\80\51\53\110\111\51\57\54\120\51\70\54\49\51\72\108\53\51\105\50\48\51\97\65\66\51\51\103\104\51\100\108\115\51\57\89\73\51\100\108\66\51\57\52\103\51\70\111\83\51\102\87\53\51\104\57\101\51\100\103\56\51\103\56\76\51\70\119\73\51\72\100\122\51\57\116\52\51\73\49\82\51\71\120\70\51\98\52\115\51\70\120\100\51\97\53\86\51\68\108\120\51\99\102\107\51\72\121\118\51\69\52\68\51\72\81\108\51\53\112\57\51\104\90\71\51\104\65\84\51\53\122\76\51\98\54\111\51\69\113\70\51\70\116\101\50\70\106\51\52\80\120\50\49\84\50\54\87\49\76\50\55\50\50\54\100\50\50\51\50\49\104\50\50\115\50\49\122\50\50\111\51\53\113\50\51\72\84\121\51\102\117\111\51\72\52\76\51\102\117\81\51\70\49\74\51\97\85\120\51\72\100\78\51\51\57\98\51\98\83\56\51\55\77\102\51\72\90\78\51\55\77\76\51\100\97\100\51\99\77\111\51\98\51\52\51\102\48\90\51\104\51\57\51\70\53\51\51\66\83\77\51\99\81\76\51\98\119\87\51\68\79\55\50\49\48\51\50\79\106\51\70\122\114\51\52\122\56\51\99\85\121\51\71\55\114\51\72\51\106\51\55\55\68\51\50\78\119\51\70\53\98\51\66\120\50\51\100\77\75\51\72\119\113\51\66\83\90\51\71\51\49\51\72\52\52\51\100\118\90\51\103\70\85\51\98\84\56\51\101\97\54\51\71\78\52\51\104\103\55\51\102\121\110\51\72\71\57\51\103\82\53\51\71\110\65\51\56\50\104\51\72\66\103\51\103\107\51\51\97\105\67\51\53\83\88\51\55\71\106\51\103\75\57\51\104\78\71\51\55\48\73\51\98\121\97\51\71\110\115\51\50\110\82\51\104\51\121\51\104\112\48\51\71\67\69\51\71\115\108\51\54\101\101\51\72\99\120\51\103\48\53\51\69\50\112\51\72\56\121\51\71\107\80\51\69\112\49\51\57\53\101\51\57\71\120\51\56\86\52\51\66\76\68\51\57\116\77\51\69\80\114\51\103\100\109\51\53\121\122\51\54\102\86\51\70\50\55\51\66\97\53\51\65\108\55\51\54\119\102\51\104\69\57\51\99\101\118\51\67\53\57\51\70\87\85\51\72\108\85\51\70\115\109\51\70\66\57\51\56\79\65\51\104\121\106\51\66\48\66\51\104\100\116\51\56\52\70\51\65\101\111\51\101\108\72\51\69\112\79\51\104\76\56\51\103\76\78\51\72\50\48\51\104\117\108\51\103\56\105\51\55\75\65\51\65\71\51\51\70\74\106\51\105\50\78\51\104\100\54\51\72\108\122\51\71\56\74\51\102\55\76\51\104\121\53\51\104\80\80\51\65\102\55\51\68\90\101\51\56\72\76\51\73\50\89\51\55\107\90\51\71\49\83\51\56\112\82\51\101\56\79\51\53\69\85\50\80\121\50\52\65\50\51\48\49\82\50\119\90\50\49\75\50\50\113\50\53\87\50\49\119\50\53\107\50\51\49\50\52\50\50\53\71\50\54\56\51\70\106\57\51\70\88\74\51\54\56\83\51\54\56\85\51\72\85\87\51\70\107\90\51\55\53\118\51\69\52\55\51\70\121\48\51\71\50\55\50\54\75\51\56\115\102\51\52\109\83\51\56\55\101\51\52\122\102\51\103\101\85\51\104\99\57\51\104\74\74\51\70\86\48\51\104\111\56\51\71\88\117\51\104\48\55\51\98\73\104\51\104\102\106\51\57\69\105\51\54\76\111\51\57\108\56\51\102\86\65\51\55\71\69\51\103\118\112\51\103\54\113\51\55\118\80\51\101\70\50\51\100\49\99\51\97\121\73\51\99\78\53\51\70\57\56\51\55\111\70\51\72\51\100\51\100\88\53\51\105\53\53\51\67\77\54\51\67\77\88\51\70\104\77\51\56\50\85\51\97\105\76\51\67\81\50\51\68\49\77\51\69\110\98\51\103\56\52\51\103\55\49\51\73\48\110\51\73\52\79\51\53\54\101\51\71\55\52\51\72\78\116\51\104\119\86\51\105\48\116\51\101\82\101\51\104\114\85\51\104\110\121\51\103\105\122\51\102\52\115\51\104\120\50\51\72\114\122\51\103\118\72\51\72\56\56\51\103\119\78\51\72\83\109\51\69\83\54\51\56\52\107\51\55\55\75\51\103\119\114\51\103\67\68\51\70\69\90\51\68\88\118\51\104\52\83\51\105\53\105\51\104\84\99\51\72\120\70\51\72\84\101\51\69\55\54\51\105\49\74\51\72\53\50\51\55\112\50\51\101\51\53\51\54\80\88\51\72\51\89\51\105\54\49\51\102\99\51\51\103\100\76\51\101\51\103\51\98\86\70\51\71\53\48\51\51\48\49\51\50\84\81\51\56\88\49\51\66\71\56\51\105\51\118\51\65\101\122\51\56\66\111\51\68\99\105\51\99\75\51\51\101\51\76\51\99\57\52\51\99\106\78\51\104\84\84\51\72\54\50\51\72\50\56\51\56\48\49\51\104\100\56\50\105\51\51\103\108\74\51\99\52\79\51\71\53\102\51\55\51\112\51\99\51\100\51\57\72\56\51\54\49\105\51\72\100\53\50\56\54\51\99\83\113\51\99\120\72\51\55\120\71\51\105\48\50\51\72\53\119\51\54\53\55\51\57\78\82\51\71\53\81\51\72\90\105\51\105\55\111\51\72\50\106\51\70\56\107\51\72\69\88\51\51\98\84\51\56\118\65\51\71\113\74\51\68\122\117\51\67\85\72\51\72\77\73\51\54\105\80\51\100\56\117\51\67\48\81\50\80\89\50\51\56\50\50\120\50\70\82\50\52\76\50\51\55\50\51\78\50\54\81\51\53\49\86\50\54\111\49\115\49\116\50\53\71\51\53\113\50\51\99\49\54\51\66\56\76\51\98\56\110\51\104\70\88\51\70\65\48\51\105\56\89\51\72\103\49\51\70\112\87\51\103\118\56\51\72\99\48\51\72\75\98\51\104\82\118\51\105\48\88\51\71\97\86\51\71\51\68\51\103\97\120\51\54\52\106\51\56\116\70\51\72\51\78\51\101\114\85\51\50\79\113\51\69\70\97\51\65\49\75\51\67\49\102\51\69\74\55\51\68\78\67\51\101\106\57\51\52\90\49\51\102\101\80\51\103\122\90\51\71\49\49\51\56\68\78\51\105\51\113\51\104\98\68\51\70\114\69\51\70\78\55\51\103\106\122\51\105\56\83\51\56\87\53\51\56\115\103\51\103\56\116\51\104\107\88\51\53\105\120\51\70\73\101\51\72\87\52\51\55\77\108\51\72\90\112\51\55\72\54\51\105\52\51\51\73\56\53\51\55\55\77\51\54\122\81\51\101\69\87\51\69\88\51\51\69\49\113\51\70\69\109\51\101\75\65\51\101\57\103\51\51\112\101\51\56\120\48\51\67\111\65\51\104\67\83\51\66\69\81\51\104\52\119\51\104\52\83\51\67\105\103\51\102\86\80\51\105\53\74\51\71\71\76\51\105\57\113\51\65\52\48\51\102\86\117\51\73\57\116\51\69\98\53\51\68\80\122\51\54\117\117\51\104\116\79\51\68\98\106\51\100\111\90\51\66\53\71\51\68\85\107\51\54\49\73\51\103\112\49\51\54\55\98\51\68\70\120\51\72\87\48\51\101\85\107\51\68\76\51\51\54\120\110\51\104\77\56\51\55\51\112\51\99\120\85\51\66\85\101\51\53\121\55\51\99\56\118\51\68\50\114\51\73\97\69\51\100\81\51\51\67\52\55\51\105\50\116\51\72\77\55\51\98\70\53\51\53\78\53\51\57\48\77\51\103\57\68\51\100\99\56\51\54\102\84\51\55\71\86\51\67\106\53\51\73\65\49\51\104\104\68\51\56\87\55\51\51\98\112\51\72\100\107\51\103\75\116\51\70\107\52\51\72\73\52\51\53\56\75\51\72\121\116\51\53\112\52\51\98\109\54\51\102\116\69\51\105\51\50\51\70\56\50\51\72\73\121\51\105\49\106\51\56\80\74\51\102\108\54\50\116\48\50\51\48\50\52\100\49\101\49\68\51\65\48\76\50\50\87\50\54\66\49\75\50\53\98\51\69\48\71\51\53\50\66\51\70\78\55\51\73\98\87\51\71\50\122\51\102\112\84\51\101\73\107\51\105\99\48\51\105\48\114\51\71\122\54\51\104\98\122\51\72\71\52\51\67\114\112\51\73\57\54\51\103\78\53\51\104\88\49\51\71\103\48\51\71\106\50\51\99\76\84\51\72\71\67\51\98\87\88\51\56\82\121\51\69\52\118\51\57\88\66\51\102\86\102\51\72\56\105\51\69\74\54\51\102\90\117\51\105\99\75\51\70\57\71\51\65\120\78\51\67\109\99\51\101\115\51\51\104\88\54\51\70\52\98\51\56\103\67\51\56\115\69\51\55\48\85\51\102\115\54\51\72\54\54\51\67\71\56\51\71\78\120\51\55\77\76\51\68\68\109\51\69\101\81\51\72\74\79\51\97\111\48\51\97\99\57\51\101\115\107\51\72\102\110\51\66\67\107\51\104\51\100\51\101\57\55\51\54\50\88\51\56\70\53\51\55\48\50\51\102\50\70\51\99\67\67\51\71\78\70\51\102\57\118\50\50\51\51\71\103\56\51\71\79\102\51\72\52\115\51\101\116\50\51\72\104\50\51\69\102\82\51\73\68\48\51\103\103\75\51\72\112\55\51\103\79\111\51\72\86\48\51\103\107\81\51\71\67\80\51\103\80\101\51\105\49\85\51\65\52\57\51\102\115\77\51\66\65\81\51\53\76\119\51\55\88\71\51\104\57\69\51\103\84\103\51\97\117\106\51\102\111\69\51\65\75\104\51\102\55\72\51\52\122\56\51\103\52\115\51\57\53\114\51\66\70\118\51\101\99\75\51\70\66\103\49\53\51\65\53\81\51\67\69\68\51\99\108\54\51\57\90\110\51\98\65\112\51\97\113\122\51\70\88\51\51\54\83\66\51\100\76\49\51\105\50\81\51\101\120\119\51\71\56\109\51\72\116\118\51\68\108\85\51\54\79\51\51\68\56\53\51\102\50\82\51\70\75\100\51\55\97\67\51\66\97\50\50\105\51\51\71\76\120\51\102\51\71\51\54\113\101\50\68\57\50\54\75\50\53\88\50\50\74\50\51\57\50\50\102\49\98\50\51\83\50\54\110\51\103\105\97\51\73\66\51\51\98\49\115\51\105\70\98\51\103\89\85\51\69\56\121\51\104\97\119\51\56\67\81\51\53\108\52\51\55\122\88\51\103\121\114\51\65\119\75\51\104\66\49\51\54\69\69\51\104\71\100\51\69\78\79\51\69\74\50\51\66\68\117\51\69\106\53\51\73\53\55\51\65\49\78\51\49\73\73\51\54\108\106\51\103\83\65\51\102\100\53\51\72\85\109\51\73\57\67\51\72\111\87\51\104\52\109\51\101\115\54\51\70\121\54\51\104\87\80\51\54\72\56\51\66\120\54\51\105\52\113\51\69\105\79\51\73\48\85\51\105\57\53\51\105\48\87\51\70\81\50\51\71\114\51\51\71\90\101\51\69\114\77\51\103\97\89\51\101\106\74\51\51\66\103\51\104\79\112\51\51\55\82\51\72\111\85\51\71\66\122\51\102\68\90\51\102\101\49\51\102\90\86\51\52\90\102\51\102\122\120\51\105\51\120\51\104\67\97\51\100\115\74\51\57\69\69\51\56\75\65\51\97\78\87\51\104\83\55\51\73\100\56\51\68\111\49\51\72\83\65\51\104\122\119\51\67\81\108\51\102\69\109\51\68\111\55\51\102\90\81\51\97\50\113\51\104\88\87\51\104\103\89\51\71\52\97\51\69\70\78\51\71\67\103\51\105\53\104\51\104\80\52\51\70\114\77\51\104\56\87\51\72\107\122\51\73\72\110\51\73\49\107\51\101\70\120\51\54\53\71\51\104\80\53\51\72\57\86\51\103\120\99\51\54\53\86\51\102\78\122\51\72\109\69\51\68\80\90\51\71\79\115\51\105\54\71\51\55\120\81\51\71\121\55\51\101\80\121\51\53\50\66\51\105\72\114\51\72\50\53\51\71\109\48\51\73\54\85\51\68\103\99\51\56\65\83\51\73\73\49\51\104\69\50\51\54\104\67\51\50\108\84\51\102\50\114\51\65\52\86\51\103\107\118\51\72\76\116\51\103\75\120\51\67\57\79\51\105\54\57\51\66\76\97\51\103\76\88\51\54\56\66\51\68\112\72\51\99\79\83\51\70\55\82\51\73\72\119\51\54\55\53\51\100\80\74\51\104\121\78\51\55\81\73\51\69\113\57\51\72\81\75\51\72\109\76\51\54\113\57\51\71\121\81\51\72\81\85\51\97\48\101\51\50\109\80\50\55\98\50\99\73\51\51\77\72\50\54\68\50\54\97\49\51\50\52\49\49\50\50\49\112\50\49\118\50\52\79\50\54\81\50\52\107\50\52\69\49\84\50\54\81\50\54\54\49\102\50\52\72\50\53\98\50\52\99\50\53\110\50\54\85\50\52\78\51\101\56\110\51\105\98\100\51\67\117\74\51\72\77\78\49\48\50\49\107\50\51\99\51\66\71\116\51\103\73\51\50\105\52\51\100\56\119\51\101\76\83\51\54\49\114\51\70\49\67\51\72\103\82\50\50\51\51\72\71\84\51\99\49\55\51\101\57\84\51\99\55\54\51\53\54\97\51\71\51\48\51\67\55\57\51\104\55\54\51\67\55\67\51\104\55\56\51\104\119\87\51\73\57\52\51\72\67\49\51\72\107\67\51\71\65\116\51\104\79\48\51\73\57\57\51\73\52\122\51\54\52\106\51\103\54\119\51\56\56\103\51\67\81\55\51\72\83\51\51\103\87\52\51\103\106\70\51\65\67\49\51\72\70\105\51\103\74\105\51\54\90\111\51\101\53\86\51\56\119\111\51\71\54\77\51\72\67\107\51\71\70\54\51\97\106\104\51\105\48\53\51\57\76\71\51\104\119\73\51\57\76\106\51\54\49\114\51\70\113\108\51\55\112\48\51\53\87\50\51\65\78\54\51\71\107\51\51\69\102\55\51\98\51\89\51\57\87\104\51\102\113\98\51\70\48\107\51\105\53\56\51\53\53\83\51\69\50\54\51\49\51\114\51\51\100\103\51\69\51\114\51\73\103\109\51\57\81\99\51\72\107\113\51\103\87\115\51\70\110\97\51\105\104\107\51\102\78\99\51\68\79\77\51\73\108\69\51\71\83\112\51\72\104\54\51\72\108\48\51\71\71\110\51\72\80\97\51\103\103\106\51\55\67\56\51\101\121\66\51\53\68\50\51\73\65\81\51\56\79\65\51\56\52\97\51\69\98\77\51\102\98\49\51\53\79\108\51\65\122\78\51\101\109\53\51\97\70\110\51\56\104\71\51\69\71\84\51\100\107\117\51\55\68\52\51\105\73\57\51\55\88\115\51\104\72\71\51\53\67\87\51\99\115\88\51\104\76\100\51\99\111\56\51\71\52\77\51\53\121\55\51\104\53\79\51\100\49\111\51\72\54\101\51\66\97\54\51\102\87\102\51\101\120\118\51\102\119\72\51\65\113\48\51\72\50\56\51\105\76\115\51\100\107\118\51\55\53\50\51\97\53\107\51\71\80\121\51\54\55\66\51\56\72\49\51\70\115\121\51\72\65\99\51\71\85\107\51\103\85\115\51\100\86\65\51\72\50\104\51\51\80\75\50\101\51\50\54\109\50\78\82\50\52\75\50\54\104\49\52\50\51\112\50\51\104\50\49\81\50\52\86\50\51\55\50\54\122\51\54\48\55\50\51\101\50\53\89\51\50\55\48\51\99\102\106\51\102\88\78\51\101\52\54\51\73\98\53\51\51\98\116\51\55\76\54\51\55\80\89\51\70\99\114\51\56\48\49\51\70\113\56\51\71\102\55\51\98\67\70\51\57\56\76\51\54\83\49\51\68\120\57\51\69\53\50\51\54\115\53\51\100\120\99\51\55\54\90\51\50\110\82\51\69\84\77\51\73\107\108\50\54\75\51\103\86\74\51\103\102\97\51\54\83\105\51\101\54\65\51\53\113\98\51\71\77\86\51\54\115\110\51\100\86\118\51\104\107\55\51\72\66\89\51\105\99\51\51\73\103\48\51\103\70\119\51\101\82\104\51\104\82\87\51\73\52\120\51\72\114\89\51\105\111\106\51\71\98\116\51\57\119\103\51\105\100\50\51\103\119\51\51\71\98\51\51\73\52\49\51\97\121\50\51\66\119\78\51\105\79\84\51\53\74\108\51\102\118\56\51\100\111\50\51\69\53\120\51\56\56\89\51\104\74\55\51\57\101\81\51\103\107\51\51\54\50\120\50\49\71\51\70\68\87\49\53\51\103\119\74\50\50\51\51\103\119\108\51\57\81\50\51\50\55\116\51\53\105\72\51\57\88\78\51\103\106\85\51\105\51\82\51\71\74\119\51\57\81\99\51\103\77\52\51\54\101\77\51\105\104\102\51\97\85\50\51\73\84\88\51\105\76\67\51\105\49\102\51\104\120\101\51\105\49\72\51\73\68\83\51\66\116\87\51\55\51\50\51\54\53\71\51\104\57\116\51\56\52\76\51\71\100\86\51\50\76\84\51\73\69\105\51\69\81\65\51\70\118\109\51\99\121\55\51\104\76\79\51\53\68\79\51\73\81\52\51\57\111\54\51\68\89\76\51\53\100\56\51\56\53\53\51\102\102\97\51\104\57\99\51\51\73\119\51\100\50\73\51\101\66\52\51\98\48\120\51\56\79\97\51\66\90\70\51\72\117\73\51\67\79\112\51\52\57\106\51\105\70\48\51\67\66\110\51\57\48\51\51\53\118\75\51\72\87\110\51\98\80\114\51\102\82\118\51\104\105\48\51\55\89\56\51\104\116\85\51\73\101\77\51\56\73\103\51\69\51\116\51\104\53\100\51\72\84\112\51\101\112\55\51\104\89\57\51\73\69\115\51\55\53\50\51\68\50\56\51\104\100\66\51\72\117\82\51\101\81\68\51\104\113\111\51\73\114\120\50\51\53\51\97\119\66\51\71\117\109\51\105\109\83\51\54\56\78\51\102\88\89\51\101\52\99\50\51\48\50\69\51\50\52\53\50\54\54\50\52\52\50\50\54\49\121\50\49\108\50\50\90\50\50\103\50\52\69\50\51\87\50\55\50\51\105\55\54\50\51\56\51\49\78\121\50\49\49\50\54\106\51\56\53\117\51\73\51\49\51\72\98\48\51\68\98\68\51\97\105\111\51\57\101\120\51\70\83\104\51\73\53\50\51\67\54\113\51\101\49\68\51\72\115\115\51\99\113\89\51\70\116\90\51\104\74\99\51\101\70\70\51\72\74\101\50\53\56\51\70\48\78\51\57\102\101\51\73\50\56\51\56\56\103\51\97\88\88\51\105\71\117\51\55\72\51\51\104\87\54\51\103\50\105\51\99\54\106\51\104\83\56\51\101\115\106\51\72\90\86\51\72\70\78\51\98\51\119\51\102\121\117\51\103\119\102\51\72\115\102\51\105\104\56\51\71\79\87\51\68\120\110\51\72\70\55\51\70\52\97\51\71\69\84\51\55\84\77\51\71\118\48\51\56\88\89\51\103\86\51\51\73\75\54\51\71\81\87\51\72\82\84\51\73\79\69\51\73\99\54\51\105\75\66\51\71\90\100\51\73\67\57\51\71\90\70\51\54\52\106\51\54\69\107\51\105\103\112\51\98\111\72\51\105\80\56\51\101\50\70\51\102\73\88\51\105\80\113\51\72\80\49\51\105\112\115\51\71\111\74\51\73\76\108\51\104\75\121\51\71\88\48\51\73\108\72\51\71\52\69\51\104\57\49\51\55\88\118\51\97\81\120\51\71\104\56\51\105\72\115\51\101\112\54\51\103\100\51\51\97\122\107\51\105\104\122\51\55\67\97\51\67\110\87\51\102\98\121\50\73\51\51\72\76\67\51\52\90\75\51\70\66\97\51\101\113\48\51\102\98\53\51\73\50\115\51\104\109\54\51\66\48\76\51\73\54\102\51\73\105\56\51\68\76\105\51\53\67\82\51\55\51\85\51\66\118\73\51\57\78\114\51\103\99\83\50\73\51\51\72\73\99\51\104\53\72\51\73\73\50\51\71\108\50\51\53\85\118\51\105\73\53\51\103\68\121\51\72\54\97\51\53\110\53\51\98\57\84\51\67\69\72\51\54\55\98\51\99\56\86\51\105\77\81\51\101\117\115\51\51\66\116\49\56\51\57\68\74\51\97\109\102\51\72\106\49\51\71\109\55\51\103\113\57\51\103\57\122\51\69\75\83\51\104\97\90\51\69\72\78\51\53\79\88\50\98\82\50\50\53\50\50\50\50\51\106\50\50\99\51\105\70\80\51\50\78\72\51\105\102\82\51\104\55\51\51\55\56\109\51\97\116\68\51\105\111\56\51\105\88\107\51\104\107\57\51\71\86\57\51\72\71\53\51\105\103\50\51\73\52\119\51\73\48\89\51\71\86\70\51\72\52\69\51\100\56\88\51\105\74\121\51\104\83\76\51\105\107\48\51\70\52\66\51\104\115\111\51\98\51\87\51\68\78\54\51\70\72\73\51\71\67\53\51\57\76\82\51\68\106\80\51\69\50\54\51\73\72\55\51\103\78\116\51\100\84\49\51\69\114\112\49\56\51\71\78\103\51\102\57\87\51\73\104\107\51\71\99\51\51\71\69\120\51\101\49\72\51\104\48\55\51\68\53\90\51\105\68\56\51\70\101\72\51\105\111\120\51\72\102\110\51\97\82\120\51\66\87\87\51\97\115\118\51\57\101\116\51\50\114\48\51\71\111\65\51\69\79\48\51\101\105\48\51\52\77\66\51\50\114\48\51\73\48\50\51\105\100\107\51\69\54\119\51\72\120\98\51\72\79\114\51\102\49\115\51\101\102\115\51\70\114\79\51\72\52\90\51\104\118\48\51\70\82\114\51\100\79\85\51\104\121\100\51\72\72\98\51\66\113\49\51\55\120\81\51\104\72\102\51\69\89\57\51\105\57\89\51\65\117\74\51\101\55\120\51\51\102\107\51\66\57\84\51\105\85\77\51\70\119\117\51\105\97\66\51\102\50\106\51\57\85\48\51\99\52\79\51\97\108\49\51\54\55\66\51\98\57\116\51\103\84\109\51\73\118\51\51\73\97\70\51\72\73\49\51\105\65\104\51\105\73\110\51\65\55\108\51\57\104\81\51\67\69\83\51\103\67\114\51\53\89\55\51\98\65\83\51\102\66\77\51\68\51\74\51\69\103\78\51\68\97\55\51\104\105\53\51\100\66\86\51\105\117\98\51\67\52\122\51\100\99\113\51\71\85\52\51\55\98\122\51\71\89\103\51\104\109\103\51\66\66\90\51\73\114\117\51\69\56\79\51\105\102\57\51\68\122\84\51\72\50\102\51\65\77\52\50\68\57\50\50\84\50\49\122\50\51\81\50\52\122\49\106\50\51\90\50\53\70\50\50\115\51\57\117\117\51\73\118\112\51\57\112\103\51\55\101\114\51\69\106\106\51\104\52\48\51\98\49\122\51\105\56\121\51\53\71\108\51\98\100\55\51\70\85\66\51\105\99\50\51\70\117\68\51\73\83\114\51\68\87\51\51\103\70\120\51\73\67\55\51\73\107\67\51\105\120\82\51\73\75\101\51\54\52\74\51\72\75\73\51\72\71\118\51\51\55\82\51\72\51\89\51\73\112\109\51\57\86\110\51\55\52\57\51\101\119\97\51\100\49\56\51\73\115\52\51\103\107\55\51\57\108\113\51\72\51\84\51\68\74\80\51\72\115\119\51\70\90\50\51\69\83\51\51\105\51\118\51\54\90\54\51\103\69\86\51\73\107\83\51\104\51\50\51\71\102\48\51\70\90\69\51\57\51\102\51\105\71\121\51\68\53\72\51\54\65\109\51\67\77\85\51\99\81\106\51\97\79\52\51\71\102\55\51\72\83\69\51\71\122\88\51\74\49\104\51\101\115\87\51\99\76\121\51\57\89\109\51\102\90\53\51\51\100\71\51\103\122\106\51\70\101\83\51\103\75\76\51\56\115\81\51\69\88\100\51\105\116\90\51\73\80\84\51\74\49\80\51\100\84\70\51\74\49\114\51\70\65\85\51\73\89\57\51\103\108\57\51\66\108\50\51\53\54\51\51\104\89\77\51\53\121\55\51\56\72\73\51\101\84\77\51\67\115\103\50\56\54\51\105\85\66\51\57\53\114\51\72\49\51\51\105\89\118\51\55\88\81\51\72\89\48\51\104\99\82\51\65\57\110\51\72\108\83\51\70\66\52\51\67\88\112\51\69\88\120\51\74\50\75\51\55\75\117\51\97\65\86\51\98\54\57\51\73\81\82\51\102\70\121\51\72\76\110\51\101\112\77\51\54\120\110\51\56\98\109\51\71\71\122\51\66\98\51\51\105\72\116\51\73\101\49\51\57\78\114\51\56\53\51\51\55\112\68\51\100\103\52\51\70\111\120\51\70\84\50\51\73\102\55\50\55\55\50\49\83\50\51\55\50\49\81\50\49\55\50\54\111\51\73\55\72\51\97\109\52\51\72\97\121\51\70\108\55\51\72\54\115\51\102\120\107\51\98\98\78\51\105\55\77\51\101\52\102\51\105\82\118\51\104\54\107\51\71\69\111\51\104\54\90\50\54\107\51\69\48\74\51\50\110\114\51\72\56\53\51\72\56\55\51\54\83\67\50\49\83\51\52\98\110\51\71\66\83\51\101\101\67\51\102\104\115\51\72\75\51\51\72\98\84\51\101\105\74\51\54\66\107\51\103\118\52\51\73\99\49\51\101\86\116\51\71\90\55\51\74\48\56\51\105\71\49\51\105\75\97\51\67\82\115\51\105\67\56\51\73\48\90\51\68\53\52\51\99\71\55\51\104\83\50\51\100\65\97\51\103\87\52\51\98\51\50\51\70\53\105\51\105\120\49\51\105\68\56\51\103\79\51\51\72\67\74\51\104\102\78\51\100\100\117\51\105\120\55\51\104\106\86\51\99\113\80\51\56\50\55\51\73\79\48\51\73\79\50\51\72\82\106\51\106\52\57\51\56\49\107\51\53\85\118\51\105\56\73\51\70\53\112\51\105\56\76\51\55\79\107\51\105\53\54\51\73\87\110\51\100\82\77\51\73\119\113\51\56\50\86\51\102\50\82\51\104\56\81\51\56\89\113\51\72\56\115\51\97\57\50\51\103\103\72\51\103\87\120\51\104\112\49\51\104\48\119\51\70\82\112\51\72\116\102\51\67\51\82\51\106\49\117\51\73\53\70\51\53\53\66\51\104\73\104\51\99\111\104\51\101\66\80\51\53\100\56\51\69\108\85\51\104\73\56\51\73\101\119\51\101\108\49\51\56\78\117\51\106\50\82\51\99\111\49\51\53\119\53\51\105\86\101\51\51\51\77\51\70\51\68\51\69\83\120\51\56\51\85\51\66\86\66\51\103\121\99\51\71\88\107\51\73\86\97\51\73\101\48\51\56\98\115\51\103\89\100\51\55\51\112\51\72\68\113\51\68\67\48\51\68\73\108\51\69\84\109\51\54\54\84\51\70\98\84\51\100\55\100\51\68\50\115\51\105\86\52\51\56\97\110\51\105\118\54\51\105\121\115\51\103\53\56\51\69\66\80\51\105\89\107\51\68\55\103\51\106\49\118\51\73\109\114\51\104\85\88\51\70\76\48\51\51\72\67\50\50\99\51\71\54\49\51\104\50\68\51\57\50\50\51\65\87\98\51\97\104\56\51\74\55\48\51\70\55\87\50\105\54\50\52\110\50\52\53\49\53\50\50\121\50\53\74\50\53\50\51\74\55\54\51\103\53\87\51\97\98\65\51\71\73\73\51\105\52\75\51\102\89\51\51\69\118\106\51\69\115\54\51\104\84\53\51\101\50\110\51\70\81\80\51\72\122\77\51\105\68\51\51\72\87\55\51\105\56\51\51\69\49\107\51\105\120\50\51\53\117\97\51\56\119\113\51\67\113\106\51\67\98\57\51\72\83\100\51\68\115\120\51\72\110\74\51\71\54\115\51\102\98\81\51\69\57\84\51\100\82\85\51\71\70\80\51\56\102\110\51\72\98\119\51\73\102\88\51\104\75\56\51\74\55\115\51\105\67\52\51\106\48\57\51\74\55\86\51\102\73\54\51\74\52\49\51\74\55\121\51\68\78\50\50\105\89\51\53\73\53\51\55\101\118\51\52\77\115\51\100\49\79\51\73\52\102\51\72\55\77\51\71\55\115\51\104\87\69\51\104\83\82\51\73\80\101\51\53\116\49\51\99\77\56\51\100\74\80\51\56\70\51\51\56\108\65\49\69\51\52\114\77\51\56\77\97\51\103\118\77\51\71\67\99\51\66\111\76\51\103\52\54\51\105\85\68\51\74\56\122\51\104\48\117\51\71\119\84\51\73\57\79\51\70\70\49\51\73\112\120\51\104\100\49\51\101\66\74\51\72\104\65\51\100\71\122\51\54\55\98\51\55\121\74\51\106\51\48\51\65\112\84\51\52\122\56\51\71\108\52\51\72\53\122\51\70\119\71\51\97\57\115\51\105\89\82\51\104\121\55\51\56\73\103\51\70\55\70\51\105\114\48\51\51\51\109\51\102\98\99\51\69\115\120\51\70\120\57\51\65\113\88\51\65\111\98\51\54\56\66\51\55\89\106\51\104\79\85\51\100\51\52\51\72\109\99\51\103\116\69\51\65\85\87\51\106\57\116\51\71\57\111\51\101\121\109\51\67\57\111\51\104\67\118\51\56\122\67\51\98\97\70\51\55\120\113\51\69\89\82\51\69\103\100\51\105\49\53\51\65\53\51\51\101\55\98\51\55\99\97\51\56\116\57\51\69\89\87\51\67\70\107\51\67\117\67\51\99\65\70\51\73\74\98\51\101\56\76\51\105\98\70\51\51\82\52\49\57\50\50\78\50\54\50\50\52\48\51\67\65\98\51\73\55\106\51\99\102\112\51\104\50\73\51\74\55\55\51\53\113\50\51\97\85\88\51\100\69\84\51\102\112\81\51\103\122\49\51\104\52\51\51\74\51\85\51\74\55\114\51\73\102\90\51\104\52\55\51\106\55\85\51\106\51\90\51\73\88\80\51\103\78\55\51\106\48\68\51\105\49\48\51\57\75\75\51\66\51\108\51\69\101\56\51\101\106\76\51\70\81\78\51\73\113\48\51\105\74\111\51\73\55\90\51\104\48\52\51\71\78\89\51\73\107\86\51\74\56\53\51\74\52\85\51\65\110\80\51\54\77\99\51\105\76\48\51\105\104\50\51\67\118\50\51\106\53\48\51\103\82\79\51\52\122\49\51\103\50\116\51\54\68\77\51\103\54\85\51\105\79\108\51\74\98\52\51\71\119\111\51\57\113\67\51\104\116\53\51\51\98\103\51\72\84\49\51\74\55\105\51\98\74\50\51\54\82\84\51\104\102\80\51\53\70\80\51\99\100\53\51\71\115\52\51\99\49\70\51\103\115\54\51\67\86\65\51\104\115\119\51\71\119\104\51\99\50\112\51\56\115\112\51\105\116\119\51\67\105\120\51\105\72\72\51\100\54\73\51\103\111\106\51\105\49\103\51\103\48\54\51\73\49\105\51\105\100\117\51\71\56\103\51\57\103\88\51\103\49\98\51\73\117\107\51\70\102\71\51\53\65\56\51\57\88\54\51\103\57\101\51\67\51\122\51\51\100\88\51\68\50\113\51\70\87\50\51\98\75\104\51\105\73\75\51\73\81\119\51\97\118\108\51\106\50\75\51\68\76\57\51\51\102\75\51\69\116\82\51\74\50\102\51\74\100\85\51\105\49\86\51\69\89\110\51\67\69\69\51\66\112\110\51\98\97\83\51\71\121\48\51\97\52\86\51\70\50\107\51\72\85\51\51\103\76\101\51\99\97\49\51\56\120\119\51\105\122\53\51\105\54\106\51\56\97\122\51\73\101\56\51\100\112\122\51\104\80\115\51\52\104\84\51\53\74\75\51\72\69\54\51\56\111\65\51\104\112\106\51\99\116\122\51\105\122\104\51\65\104\48\51\101\122\51\51\72\113\83\51\99\107\74\51\102\56\49\50\84\48\50\81\67\50\51\79\51\50\113\57\49\75\50\50\48\50\54\68\50\53\120\50\49\75\51\57\55\122\51\103\49\114\51\101\121\120\51\105\51\52\51\73\86\113\51\71\109\78\51\98\77\57\51\54\48\66\51\57\80\106\51\100\101\50\51\66\67\90\51\51\98\103\51\69\48\74\51\69\98\51\51\99\70\98\51\57\56\57\51\73\99\82\51\104\70\56\51\100\88\114\51\54\103\71\51\106\56\109\51\67\81\77\51\70\48\72\51\103\90\82\51\55\79\76\51\73\115\54\51\102\100\49\51\73\83\57\51\100\48\78\51\68\101\71\51\101\53\55\51\69\78\122\51\55\55\107\51\102\85\121\51\106\70\99\51\72\67\66\51\55\72\54\51\106\56\52\51\65\121\50\51\67\71\100\51\105\100\56\51\73\52\53\51\74\49\55\51\56\56\89\51\98\51\87\51\56\87\86\51\105\116\69\51\55\86\112\51\67\113\113\51\51\55\82\51\73\53\116\51\53\71\99\51\73\115\106\51\54\74\79\51\72\70\121\51\73\83\78\51\73\57\49\51\105\48\83\51\73\52\114\51\104\52\54\51\71\102\86\51\74\51\121\51\73\83\84\51\106\52\48\51\73\120\113\51\74\99\50\51\102\48\67\51\105\80\79\51\73\57\74\51\74\67\117\51\72\67\85\51\69\98\65\51\106\71\72\51\74\57\49\51\73\68\109\51\105\121\53\51\105\80\87\51\73\121\55\51\105\53\110\51\67\83\69\51\68\103\48\51\102\71\50\51\72\112\88\51\70\115\77\51\101\51\102\51\104\101\50\51\65\103\51\51\73\113\69\51\73\85\56\51\105\105\104\51\53\74\107\51\106\49\74\51\65\85\113\51\55\98\119\51\74\57\113\51\99\56\121\51\65\70\70\51\72\81\69\51\56\78\84\51\100\112\99\51\54\67\78\51\98\108\103\51\69\51\112\51\53\109\78\51\73\114\51\51\51\70\75\51\54\55\70\51\70\87\111\51\55\99\114\51\67\74\76\51\105\57\121\51\65\76\106\51\71\68\54\51\69\72\48\51\50\80\66\51\105\50\112\51\102\114\86\51\73\54\115\51\54\111\83\51\103\72\66\51\74\65\65\51\105\116\80\51\70\55\54\51\52\122\56\51\103\109\54\51\106\69\76\51\51\109\54\51\55\115\108\51\66\54\80\51\72\69\74\51\98\77\51\50\116\48\50\51\97\49\86\50\51\79\50\52\102\50\54\97\50\49\75\50\52\49\50\54\103\50\51\67\50\51\80\51\72\97\86\51\106\105\70\51\73\110\85\51\104\54\82\51\71\109\106\51\57\100\113\51\71\81\55\51\71\85\85\51\53\81\50\51\73\84\85\51\103\55\73\51\74\49\102\51\105\49\51\51\106\103\99\51\69\50\109\51\74\56\74\51\56\100\84\51\106\66\55\51\106\52\111\51\106\74\65\51\105\75\116\51\69\115\100\51\103\119\54\51\99\109\111\51\105\56\52\51\105\84\54\51\71\86\113\51\54\77\99\51\103\102\52\51\69\88\51\51\66\99\107\51\73\88\55\51\69\120\55\51\74\102\113\51\53\65\85\51\106\49\118\51\101\118\78\51\103\97\107\51\70\52\72\51\106\48\54\51\74\98\119\51\74\51\120\51\73\52\117\51\104\55\100\51\103\106\48\51\73\71\53\51\72\88\51\51\97\51\69\51\56\119\51\50\54\75\51\105\112\54\51\101\69\65\51\67\55\88\51\73\76\109\51\52\109\56\51\105\56\75\51\105\48\55\51\69\114\120\51\100\53\75\51\70\53\54\51\101\57\69\51\68\57\55\51\56\108\97\51\106\74\79\51\50\78\82\51\106\49\106\51\106\56\87\51\72\48\116\51\66\74\79\51\70\118\79\51\106\103\105\51\73\85\49\51\74\103\107\51\105\85\51\51\106\57\54\51\70\97\86\51\105\121\65\51\98\80\110\51\53\121\90\51\97\75\119\51\56\72\70\51\103\49\55\51\106\68\118\51\101\112\55\51\69\108\73\51\71\67\118\51\105\69\65\51\53\120\55\51\53\48\75\51\57\85\53\50\105\51\51\102\55\106\51\105\121\111\51\103\89\65\51\57\53\114\51\103\48\81\51\106\104\76\51\55\112\68\51\74\100\55\51\99\57\49\50\105\51\51\106\107\118\51\99\52\111\51\73\121\106\51\66\48\98\51\51\121\101\51\103\88\65\51\101\111\51\51\99\88\87\51\105\121\119\51\55\51\68\51\54\77\52\51\74\68\114\51\105\121\80\51\106\54\52\51\73\73\109\51\73\118\55\51\53\119\89\51\55\72\89\51\73\98\50\51\72\102\50\51\70\116\70\51\74\76\88\51\68\90\122\51\105\55\105\50\103\53\51\71\57\117\51\97\104\48\51\66\76\119\49\57\50\53\51\50\53\57\50\49\84\50\51\50\51\69\48\68\51\106\109\69\51\51\66\84\51\100\118\56\51\70\56\108\51\106\78\109\51\66\88\85\51\74\103\48\51\67\55\89\51\55\55\76\51\72\79\54\51\74\66\66\51\71\106\103\51\104\48\55\51\73\75\120\51\106\109\90\51\105\68\57\51\99\54\109\51\101\65\112\51\104\51\66\51\101\65\120\51\101\52\84\51\57\51\114\51\66\51\102\51\66\83\82\51\73\101\89\51\71\56\52\51\74\102\85\51\105\57\101\51\70\52\98\51\70\90\115\51\56\48\56\51\51\54\111\51\50\78\82\51\104\116\51\51\53\50\98\51\104\116\53\51\69\122\88\51\68\104\121\51\69\90\90\51\73\83\111\51\104\103\50\51\70\97\53\51\74\98\120\51\74\101\90\51\106\75\50\51\106\70\49\51\104\52\67\51\104\55\103\51\100\53\52\51\106\69\113\51\104\71\79\51\97\49\99\51\104\90\88\51\70\89\117\51\106\113\71\51\101\57\65\51\66\52\51\51\105\112\71\51\99\56\56\51\54\68\66\51\73\52\66\51\51\100\103\51\74\111\51\51\70\73\120\51\67\110\72\51\100\88\119\51\69\107\106\51\72\56\85\51\72\84\56\51\105\72\76\51\97\51\120\51\67\83\65\51\105\89\56\51\73\57\83\51\104\120\74\51\65\113\80\51\67\52\111\51\74\100\76\51\54\55\98\51\67\89\80\49\50\51\69\89\57\51\104\105\53\51\57\72\109\51\99\52\76\51\104\112\110\51\105\54\84\51\72\50\55\51\74\50\75\51\56\48\49\51\54\54\84\51\66\65\88\51\101\115\51\51\65\122\109\51\66\71\54\51\104\97\53\51\104\50\52\51\103\72\48\51\106\75\77\51\106\54\106\51\104\57\73\51\69\109\48\51\73\108\84\51\57\72\50\51\66\97\73\51\69\80\85\51\71\88\84\51\101\116\82\51\74\50\54\51\74\111\114\51\53\57\51\51\72\114\105\51\74\108\69\51\65\71\108\51\56\48\49\51\71\101\48\51\105\82\57\51\53\50\55\51\71\49\112\51\69\56\81\51\72\105\120\51\105\78\110\51\104\69\76\51\51\66\116\51\55\69\50\51\98\66\110\51\100\56\101\51\55\54\48\51\49\118\49\50\49\84\50\49\105\50\51\110\50\51\75\51\50\53\52\50\49\55\49\52\50\54\97\50\89\84\50\50\107\50\49\112\50\50\77\49\100\51\52\53\103\51\69\113\77\51\103\117\55\49\76\51\71\101\111\51\69\53\56\50\54\107\51\101\57\108\51\99\49\81\51\68\111\104\51\71\70\99\51\68\97\110\51\106\70\66\51\73\83\53\51\65\105\103\51\70\113\100\51\74\103\57\51\72\51\118\50\53\56\51\72\70\84\51\69\65\72\51\53\50\66\51\102\75\51\51\106\109\112\51\66\82\111\51\54\106\106\51\74\101\83\51\72\110\112\51\66\88\55\51\74\51\115\51\72\114\80\51\104\55\55\51\72\114\114\51\106\106\89\51\105\120\77\51\73\67\53\51\106\48\97\51\105\115\85\51\74\48\99\51\72\52\100\51\74\102\52\51\54\52\106\51\105\48\75\51\56\56\71\51\70\56\111\51\105\116\49\51\104\106\76\51\102\53\72\51\100\110\89\51\106\56\54\51\106\113\102\51\68\79\49\51\74\106\105\51\54\117\68\51\101\49\81\51\98\56\100\51\106\102\79\51\72\115\120\51\106\73\112\51\66\71\71\51\56\56\102\51\99\87\112\51\55\84\54\51\103\107\48\51\54\82\68\51\65\104\104\51\71\71\57\51\54\117\81\51\105\88\90\51\106\67\81\51\103\103\102\51\104\56\116\51\72\116\65\51\104\52\81\51\74\57\50\51\74\49\81\51\102\70\50\51\73\80\121\51\74\67\90\51\68\122\48\51\68\65\55\51\101\52\51\51\65\112\87\51\105\81\85\51\73\121\81\51\73\113\120\51\74\50\107\51\57\67\56\51\73\89\72\51\54\53\86\51\74\83\52\51\98\107\106\51\106\104\81\51\67\105\118\51\69\90\119\51\74\80\97\51\71\84\87\51\68\108\75\51\102\54\114\51\101\107\117\51\57\104\113\51\98\79\77\51\97\65\118\51\67\56\86\51\74\72\55\51\66\70\49\51\74\104\57\51\67\57\79\51\102\55\113\51\105\101\102\51\56\110\70\51\56\52\115\51\103\52\115\51\101\76\88\50\56\54\51\104\117\57\51\53\100\56\51\97\86\66\51\103\49\77\51\102\84\50\51\100\68\54\51\56\80\111\51\105\117\52\51\101\81\72\50\73\51\51\101\48\49\51\49\99\111\50\50\56\49\108\50\49\87\50\54\81\50\52\54\49\101\50\53\102\49\77\50\49\49\50\51\49\51\49\53\115\51\71\49\118\51\100\104\112\51\103\105\104\51\106\51\52\51\54\89\57\51\102\104\48\51\71\120\88\51\72\115\75\51\103\98\86\51\73\51\83\51\101\83\54\51\103\106\52\51\55\55\108\51\74\98\97\51\106\86\56\51\70\90\99\51\69\53\82\51\97\121\48\51\72\87\56\51\104\79\100\51\54\90\79\51\104\55\120\51\106\86\70\51\56\119\115\51\99\100\50\51\71\50\81\51\104\106\117\51\102\86\102\51\52\122\49\51\71\75\99\51\104\70\85\51\65\98\118\51\65\55\72\51\67\54\121\51\99\122\79\51\106\53\53\51\57\50\57\51\54\66\68\51\71\118\49\51\53\103\103\51\104\110\81\51\53\54\69\51\72\75\54\51\106\74\87\51\73\102\121\51\105\115\113\51\106\69\89\51\73\115\115\51\70\109\52\51\106\118\48\51\106\55\88\51\74\70\51\51\100\53\52\51\99\55\117\51\70\53\86\51\103\74\56\51\71\74\97\51\53\108\71\51\70\56\122\51\68\88\52\51\71\107\54\51\72\106\65\51\54\68\52\51\103\86\85\51\68\78\67\51\105\87\113\51\99\56\66\49\56\51\106\83\65\51\73\84\86\51\104\75\114\51\73\112\85\51\102\101\86\51\74\75\66\51\74\99\84\51\105\89\52\51\102\54\66\51\73\121\54\51\71\48\56\51\106\87\52\51\70\49\90\51\106\119\54\51\106\79\106\51\74\119\120\51\69\112\55\51\55\52\57\51\101\112\105\51\53\109\78\51\99\79\115\51\73\73\115\51\98\102\100\51\101\121\65\51\99\74\106\51\71\89\57\51\102\83\105\51\54\79\71\51\98\65\88\51\103\68\97\51\74\119\109\51\57\72\50\51\73\73\66\51\70\74\90\51\54\56\66\51\98\112\103\51\69\107\69\51\74\54\71\51\57\79\57\51\106\119\98\51\74\72\50\51\106\112\105\51\98\81\54\51\65\86\51\51\57\72\75\51\51\51\77\51\56\72\73\51\73\122\56\51\99\52\111\51\55\52\57\51\66\57\88\51\56\105\105\51\105\82\54\51\106\72\120\51\55\54\110\51\53\111\88\50\100\57\49\49\50\54\120\49\112\51\50\70\65\50\53\117\50\53\78\50\50\75\51\68\56\109\51\73\106\57\50\50\51\51\101\52\56\51\66\103\115\51\74\76\119\51\102\51\90\51\104\69\75\51\68\81\110\51\100\67\88\51\103\77\108\51\104\65\119\51\99\90\76\51\102\109\65\51\74\121\48\51\105\48\104\51\102\68\57\51\69\72\65\51\71\114\85\51\53\53\54\51\104\48\111\51\66\49\88\51\71\89\122\51\69\73\105\51\54\74\113\51\69\82\57\51\74\98\85\51\73\115\112\51\106\51\119\51\106\90\51\51\106\75\49\51\106\122\53\51\106\107\51\51\74\70\50\51\106\86\50\51\100\53\52\51\69\73\121\51\101\78\77\51\54\120\77\51\57\76\111\51\55\79\75\51\97\88\104\51\66\74\57\51\98\104\102\51\68\78\99\51\72\110\73\51\69\74\98\51\51\68\103\51\68\71\52\51\51\98\71\51\98\72\69\51\97\109\84\51\65\104\71\51\68\102\109\51\73\56\54\51\74\52\112\51\102\56\81\51\105\71\87\51\99\50\88\51\69\101\82\51\105\100\56\51\70\76\74\51\72\48\68\51\70\49\51\51\72\78\98\51\69\52\86\51\72\79\107\51\55\86\112\51\102\72\112\51\105\52\68\51\97\106\112\51\73\53\101\51\106\98\56\51\105\68\110\51\70\69\120\51\71\83\78\51\106\90\83\51\104\112\54\51\69\70\117\51\103\88\49\51\106\49\116\51\65\119\106\51\57\103\88\51\56\52\68\51\70\66\82\51\67\73\119\51\53\57\51\51\67\82\53\51\73\122\49\51\55\98\66\51\73\50\73\51\65\97\100\51\101\54\55\51\73\113\55\51\73\49\119\51\106\68\48\51\56\51\85\51\99\121\70\51\56\111\65\51\68\55\56\51\73\122\57\51\71\56\74\51\74\100\57\51\98\103\99\51\74\119\99\51\75\48\85\51\100\57\103\51\107\48\106\51\56\51\111\51\105\89\89\51\68\55\106\51\75\48\50\51\75\48\119\51\55\107\51\51\68\55\110\51\72\57\55\51\55\89\51\51\73\49\80\51\104\89\71\51\70\114\77\51\71\68\86\51\71\104\111\51\102\57\54\51\98\57\87\51\99\89\98\51\51\68\52\51\50\80\66\51\105\90\71\51\65\53\118\51\53\118\111\51\56\86\97\51\99\97\100\51\69\99\88\51\74\88\117\51\74\101\67\50\105\52\51\66\49\75\51\57\100\69\50\112\89\50\49\69\50\53\120\50\54\49\51\49\84\87\50\52\74\49\80\50\54\105\49\55\50\49\66\50\54\55\50\50\48\50\54\48\51\54\73\50\51\102\112\49\51\66\119\48\51\98\49\118\51\70\86\88\51\73\72\97\51\74\55\65\51\97\120\106\51\97\88\113\51\102\49\99\51\106\55\100\51\71\66\106\51\105\120\104\51\106\48\51\51\66\56\112\51\53\103\76\51\74\89\122\51\106\55\81\51\102\100\73\51\74\114\54\51\74\110\102\51\69\111\102\51\105\52\118\51\74\122\54\51\74\67\49\51\74\90\56\51\100\110\50\51\106\56\89\51\101\97\107\51\105\51\89\51\106\81\66\51\103\111\48\51\106\52\83\51\53\52\48\51\105\68\55\51\106\81\102\51\73\116\56\51\98\51\57\51\102\49\51\51\69\57\54\51\101\69\90\51\106\56\68\50\87\52\51\101\49\117\51\72\79\78\51\54\114\83\51\67\109\49\51\104\51\112\51\74\52\101\51\101\101\86\51\72\74\98\51\74\56\83\51\51\99\76\51\54\76\106\51\105\87\83\51\56\50\87\51\67\120\102\51\99\106\76\51\73\48\102\51\102\82\66\51\105\99\83\51\100\110\114\51\56\103\105\51\106\79\52\51\74\118\89\51\55\73\51\51\74\111\55\51\69\102\109\51\106\99\86\51\106\79\65\51\69\55\53\51\101\56\107\51\66\57\79\51\70\118\87\51\104\50\51\51\54\102\51\51\55\48\87\51\50\112\66\51\100\71\83\51\104\77\98\50\56\54\51\66\99\122\51\106\54\56\51\52\73\82\51\72\69\53\51\75\50\49\51\98\70\111\51\106\72\73\51\54\120\110\51\73\85\72\51\55\98\86\51\54\70\51\51\99\84\48\51\74\50\88\51\107\52\103\51\55\100\54\51\56\117\115\51\100\108\49\51\55\119\81\51\74\54\49\51\75\52\65\51\105\81\86\51\106\100\97\51\107\52\100\51\74\108\79\51\99\68\118\51\101\55\77\51\98\71\56\51\107\52\50\51\106\104\97\51\74\54\75\51\54\55\98\51\99\116\48\51\74\57\74\51\57\53\106\51\106\76\115\51\72\90\104\51\74\112\109\51\74\97\90\51\74\85\49\51\53\69\53\51\73\118\75\51\66\57\110\51\104\74\49\51\106\81\51\51\105\106\105\51\106\97\81\50\54\51\50\50\79\50\51\110\50\50\80\50\51\57\51\105\122\122\50\50\51\51\102\122\120\51\74\85\109\51\54\49\103\51\56\71\99\51\105\53\50\51\100\78\54\51\56\108\49\51\103\118\83\51\106\110\119\51\101\119\71\51\74\78\90\51\100\83\89\51\67\98\108\51\57\105\72\51\105\117\121\51\54\66\99\51\68\52\109\51\53\54\65\51\105\48\111\51\101\57\89\51\70\52\73\51\75\50\55\51\74\114\53\51\71\97\80\51\75\50\65\51\74\78\103\51\104\88\48\51\74\110\105\51\102\89\79\51\105\57\65\51\106\48\89\51\53\102\99\51\67\99\108\51\72\67\114\51\73\71\83\51\71\50\68\51\106\89\55\51\105\56\49\51\107\51\50\51\55\72\51\51\103\82\71\51\57\113\86\51\72\99\72\51\100\73\87\51\99\113\106\51\69\57\54\51\103\111\55\51\98\114\88\51\52\90\49\51\106\48\83\51\75\51\101\51\54\49\82\51\67\99\70\51\107\50\87\51\71\75\49\51\107\51\70\51\74\82\83\51\99\83\49\51\106\53\68\51\98\89\113\51\105\76\100\51\74\53\71\51\70\49\86\51\103\115\114\51\102\67\112\51\74\87\53\51\70\111\80\51\101\103\49\51\55\51\78\51\72\113\98\51\70\54\122\51\56\52\115\51\56\52\78\51\55\51\78\51\57\68\57\51\106\115\69\51\106\108\77\51\72\89\54\51\105\54\118\51\53\87\121\51\106\104\113\51\69\109\50\51\70\55\51\51\107\48\86\51\69\112\52\51\105\54\53\51\106\83\115\51\106\53\76\51\57\104\113\51\57\120\84\51\105\65\114\51\97\118\97\51\51\110\100\51\50\76\84\51\105\48\69\51\74\57\108\51\106\108\49\51\57\72\50\51\104\85\107\51\71\89\48\51\103\84\55\51\56\122\121\51\72\80\72\51\100\49\79\51\65\53\74\51\67\87\54\51\70\83\72\51\107\56\86\51\105\102\57\51\105\74\56\51\106\80\109\51\100\56\101\51\70\56\49\51\56\106\97\50\116\48\49\56\51\53\122\118\50\50\75\50\49\114\50\53\87\50\52\77\50\51\109\50\53\48\50\50\56\51\66\118\85\51\72\122\98\51\105\110\119\51\103\68\76\51\102\52\70\51\102\80\82\51\71\109\87\51\75\54\53\51\103\118\55\51\107\50\57\51\74\107\48\51\107\97\51\51\105\111\71\51\104\107\69\51\104\79\49\51\72\107\71\51\66\50\73\51\68\54\88\51\106\114\70\51\103\82\117\51\100\74\102\51\74\87\113\51\107\49\86\51\105\84\114\51\105\48\105\51\54\49\71\51\97\121\81\51\49\112\86\51\73\52\67\49\53\51\105\52\103\51\57\119\71\51\102\53\100\51\73\51\122\51\55\104\51\51\74\86\97\51\56\82\79\51\107\54\77\51\104\119\57\51\67\56\50\51\54\65\77\51\103\98\57\51\102\82\51\51\99\86\50\51\98\119\87\51\69\120\55\51\68\111\57\51\71\86\76\51\102\55\66\51\54\82\83\51\67\98\57\51\73\87\106\51\103\102\102\51\99\49\69\51\68\57\53\51\70\53\55\51\75\57\79\50\53\56\51\74\103\98\51\106\70\57\51\100\54\68\51\74\122\82\51\70\110\98\51\97\80\56\51\73\68\79\51\73\89\51\51\75\51\76\51\69\55\50\51\101\88\73\51\107\51\111\51\106\108\116\51\69\80\48\51\98\75\48\51\73\113\54\51\74\57\117\51\101\51\120\51\107\98\83\51\65\90\78\51\72\84\115\51\106\50\105\51\105\69\76\51\107\56\107\51\68\118\112\51\57\104\113\51\75\52\56\51\67\52\79\51\72\53\103\51\69\101\117\51\106\57\109\51\102\51\53\51\52\121\86\51\99\104\99\51\104\54\66\51\52\89\118\51\102\83\115\51\105\77\76\51\71\68\119\51\105\72\57\51\54\119\97\51\68\112\104\51\71\89\48\51\70\119\122\51\98\85\52\51\97\71\97\51\73\117\117\51\57\104\50\51\106\101\49\51\74\68\55\51\97\90\76\51\103\49\48\51\52\90\56\51\104\53\78\51\57\112\106\51\75\56\84\51\102\67\53\51\54\72\81\51\101\68\71\51\73\55\50\51\73\122\81\51\70\84\51\51\104\90\98\50\113\101\50\49\88\50\53\111\51\51\81\52\51\66\49\69\51\74\113\50\51\65\54\50\51\73\55\48\51\53\50\50\51\107\53\52\51\54\73\86\51\101\109\107\51\99\122\108\51\100\106\55\51\99\49\57\51\73\83\51\51\74\110\85\51\72\115\116\51\57\70\55\51\71\102\105\51\99\104\55\51\104\71\76\49\56\51\104\54\100\51\72\106\53\51\53\105\53\51\67\49\80\51\75\65\83\51\106\48\103\51\74\121\49\51\73\116\83\51\57\118\110\51\99\49\119\51\103\70\78\51\75\50\52\51\54\66\74\51\67\50\49\51\107\100\49\51\72\55\57\51\73\111\68\51\106\85\121\51\106\66\90\51\103\55\99\51\74\107\52\51\107\54\100\51\102\89\113\51\55\116\77\51\106\113\57\51\97\110\113\51\75\54\73\51\101\109\119\51\104\48\55\51\105\116\53\51\75\68\119\51\71\119\97\51\104\51\65\51\101\120\51\51\103\106\111\51\104\111\106\51\69\78\57\51\69\54\52\51\53\99\83\51\72\53\85\51\54\112\88\51\51\66\103\51\99\50\110\51\51\100\71\51\72\49\97\51\75\51\71\51\100\48\81\51\55\112\50\51\75\69\77\51\106\75\68\51\107\51\104\51\106\107\70\51\105\104\109\51\102\106\55\51\104\104\56\51\105\85\53\51\106\76\53\51\55\99\48\51\71\79\85\51\104\73\66\51\71\49\54\51\102\70\116\51\99\79\73\51\105\100\122\51\107\101\88\51\56\66\83\51\105\65\79\51\53\78\49\51\98\76\56\51\73\101\80\51\104\53\115\51\72\53\57\51\68\54\84\51\106\57\65\51\57\110\77\51\57\48\51\51\100\56\53\51\72\53\89\51\67\52\122\51\53\99\86\51\66\85\57\51\106\76\112\51\57\72\81\51\72\80\90\51\75\48\113\51\57\66\81\51\105\101\107\51\66\85\78\51\107\52\69\51\107\73\119\51\106\83\85\51\107\70\113\51\56\51\111\51\73\73\98\51\69\116\112\51\104\85\65\51\53\57\89\51\50\76\116\51\72\65\98\51\104\50\98\51\67\53\122\51\103\69\51\51\74\105\68\51\67\70\107\50\116\48\50\54\51\50\53\70\50\52\103\50\52\83\50\52\97\50\51\120\50\49\86\50\50\49\49\55\49\75\51\103\69\77\51\72\54\75\51\66\119\52\51\53\118\109\51\73\70\68\51\72\77\115\51\73\110\84\49\57\51\99\90\108\51\68\71\121\51\102\48\101\51\100\87\117\51\106\78\116\51\103\118\82\51\70\82\49\51\68\110\65\51\103\51\122\51\104\86\88\51\73\74\84\51\73\71\74\51\74\114\113\51\107\52\86\51\65\78\111\51\107\65\100\51\105\79\111\51\71\98\51\51\99\109\110\51\97\121\50\51\74\113\69\51\75\72\79\51\104\122\116\51\107\72\113\51\107\101\48\51\101\52\85\51\55\78\52\51\69\119\68\51\52\122\49\49\66\51\99\55\52\51\50\82\48\51\68\49\100\51\56\57\97\51\65\50\80\51\73\102\84\51\105\107\53\51\74\101\118\51\107\54\54\51\75\97\49\51\107\100\52\51\107\54\57\51\74\78\104\51\73\57\56\51\106\78\74\51\107\65\55\51\100\78\51\51\101\119\76\51\99\108\119\51\102\100\88\51\74\109\111\51\106\73\115\51\105\88\101\51\57\86\110\51\74\122\100\51\51\66\71\51\106\77\109\51\107\101\72\51\74\107\55\51\107\55\74\51\74\107\65\51\72\104\49\51\74\75\99\51\100\75\57\51\105\68\113\51\100\107\67\51\106\83\48\51\75\48\48\51\102\102\52\51\72\88\106\51\54\71\71\51\54\54\116\51\68\67\81\51\71\76\88\51\103\53\99\51\57\73\115\51\70\103\57\51\56\53\50\51\68\90\103\51\98\48\117\51\100\103\52\51\106\112\49\51\53\57\51\51\107\102\68\51\106\75\116\51\53\57\51\51\71\121\48\51\107\66\104\51\97\102\51\51\107\98\106\51\73\109\50\51\57\84\52\51\74\104\86\51\54\110\89\51\101\116\90\51\57\53\89\51\103\120\116\51\57\72\109\51\72\57\82\51\72\121\113\51\102\115\109\51\106\109\74\51\97\81\88\51\56\105\117\51\105\108\113\51\71\116\85\51\68\55\102\51\55\120\113\51\54\70\110\51\105\65\53\51\67\79\65\51\97\66\54\51\49\99\49\50\50\114\49\81\49\52\50\53\107\49\74\50\52\113\50\53\50\50\50\98\50\51\56\50\50\79\50\52\50\50\53\89\50\54\52\51\57\105\89\51\75\103\54\51\107\57\49\51\57\56\52\51\56\86\57\50\50\89\51\97\119\98\51\75\49\72\51\75\99\71\51\70\67\75\51\75\49\110\51\70\116\72\51\103\97\70\51\53\113\50\51\97\49\84\51\69\119\65\51\99\56\49\51\57\70\52\51\69\49\78\51\100\74\110\51\71\55\122\51\69\70\70\51\71\56\49\51\70\122\50\51\68\50\74\51\51\98\103\51\75\76\108\51\102\53\116\51\57\120\87\51\73\56\87\51\106\117\81\51\103\55\51\51\102\104\120\51\105\79\65\51\106\85\86\51\105\75\55\51\107\72\97\51\106\98\121\51\106\70\48\51\106\55\87\51\75\54\99\51\75\50\102\51\68\110\50\51\73\55\120\51\102\113\80\51\74\56\49\51\102\81\83\51\103\98\51\51\97\55\114\51\99\71\97\51\105\111\115\51\75\100\87\51\100\119\81\51\107\68\122\51\104\102\110\51\99\98\57\51\73\104\52\51\103\66\100\51\69\98\50\51\105\56\70\51\99\110\52\51\70\49\108\51\107\71\118\51\103\119\77\51\73\74\122\51\106\89\50\51\70\52\66\51\55\82\51\51\51\98\71\51\74\117\54\51\99\55\48\51\67\55\52\51\71\98\78\51\67\55\52\51\105\76\56\51\72\116\55\51\106\57\56\51\72\75\85\51\97\51\121\51\104\103\122\51\105\108\70\51\105\53\75\51\106\71\108\51\103\79\80\51\104\76\50\51\54\53\71\51\56\52\65\51\73\77\107\51\54\54\85\51\75\73\83\51\107\77\97\51\107\109\111\51\55\107\77\51\107\77\81\51\68\107\114\51\102\50\48\51\101\54\56\51\71\88\84\51\72\117\111\49\49\51\100\98\112\51\75\102\69\51\54\50\71\51\97\113\102\51\57\48\51\51\53\80\88\51\69\109\52\51\73\54\56\51\55\113\105\51\103\121\53\51\55\51\99\51\67\101\99\51\75\109\107\51\104\121\107\51\54\55\53\51\105\115\68\51\75\98\98\51\54\53\118\51\101\67\102\51\75\78\48\51\75\98\83\51\104\112\90\51\104\85\49\51\65\76\55\51\74\112\75\51\74\88\97\51\49\52\81\50\53\112\50\53\78\50\51\78\50\51\73\50\54\55\49\70\50\54\49\50\52\120\50\51\51\51\99\65\68\51\104\109\72\51\106\112\79\51\103\97\101\51\69\81\105\51\107\75\55\51\102\56\53\51\53\50\50\51\75\78\114\51\74\77\66\51\57\85\121\51\99\102\75\51\98\82\53\51\106\73\73\51\73\106\75\51\105\79\51\51\54\86\50\51\70\68\67\51\105\66\121\51\101\54\99\51\74\110\100\51\74\69\120\51\107\108\68\51\102\73\52\51\75\68\54\51\105\71\52\51\75\65\54\51\73\83\88\51\73\110\120\51\55\50\97\51\51\116\85\51\106\49\73\51\75\75\77\51\55\104\85\51\97\104\101\51\72\111\85\51\103\90\79\51\101\107\56\51\69\119\99\51\71\55\87\51\106\74\49\51\106\82\77\51\97\55\48\51\54\108\74\51\74\82\112\51\104\118\111\51\73\54\113\51\75\80\105\51\74\48\72\51\75\112\75\51\57\81\99\51\57\99\48\51\74\77\83\51\74\49\49\51\54\122\102\51\68\73\80\51\97\89\50\51\107\100\118\51\106\89\67\51\53\106\108\51\102\101\72\51\106\52\88\51\105\68\99\51\106\81\107\51\102\57\48\51\54\117\72\51\69\54\50\51\52\122\49\51\104\56\51\49\53\51\74\53\85\51\107\55\70\51\106\99\83\51\74\79\54\51\106\57\48\51\75\109\48\51\107\55\107\51\107\113\48\51\74\111\98\51\69\88\108\51\105\100\85\51\104\120\106\51\71\48\106\51\72\113\50\51\75\77\74\51\102\57\107\51\97\81\88\51\72\106\52\51\74\120\48\51\107\98\111\51\102\53\54\51\74\98\51\51\100\56\50\51\65\81\120\51\70\107\51\51\75\82\50\51\107\73\110\51\56\78\54\51\75\74\54\51\104\77\51\51\103\112\75\51\105\109\49\51\107\81\100\51\98\56\107\51\71\88\116\51\105\53\86\51\106\71\83\51\68\111\72\51\107\113\115\51\53\79\57\51\66\113\52\51\71\68\78\51\73\118\72\51\104\121\101\51\107\56\51\51\101\108\76\51\52\90\56\51\98\97\119\51\49\55\75\51\75\52\85\51\105\101\50\51\100\56\56\51\104\101\52\49\50\51\100\49\79\51\102\51\71\51\54\89\54\51\67\97\71\51\74\109\100\51\72\105\87\51\105\74\57\51\67\117\103\51\104\85\84\51\65\53\87\51\73\51\48\51\102\120\78\51\56\53\120\50\102\74\50\50\49\49\53\50\50\101\50\54\82\50\52\81\50\53\85\49\108\50\52\117\50\53\122\50\50\57\50\49\55\50\53\53\51\57\50\56\51\54\87\73\51\75\79\103\51\56\55\56\51\71\114\83\51\73\66\118\51\71\73\76\51\105\52\77\51\73\107\52\51\72\87\115\51\75\83\51\51\106\90\50\51\107\83\53\51\103\97\83\51\70\48\55\51\73\79\72\51\107\76\104\51\75\83\97\51\107\111\89\51\53\84\73\51\106\113\97\51\75\65\69\51\57\101\98\51\75\68\116\51\69\119\87\51\106\70\72\51\71\66\56\51\104\102\77\51\56\56\89\51\104\122\88\51\105\52\57\51\75\76\48\51\106\86\107\51\75\80\101\51\68\49\101\51\70\49\108\51\71\110\106\51\97\82\88\51\67\72\49\51\99\56\50\51\54\114\121\51\103\55\120\51\106\81\76\51\73\106\115\51\54\100\98\51\70\122\50\51\104\86\80\51\104\98\66\51\73\48\71\51\107\100\72\51\107\49\120\51\57\120\119\51\104\55\48\51\65\89\115\51\106\67\97\51\106\53\97\51\104\52\86\51\71\107\73\51\72\48\48\51\74\114\87\51\107\112\118\51\74\57\51\51\73\53\108\51\68\107\101\51\104\120\104\51\102\74\65\51\72\116\87\51\68\112\122\51\74\100\88\51\101\67\48\51\75\56\104\51\107\52\99\51\75\48\84\51\107\102\51\51\103\108\85\51\102\87\85\51\74\111\107\51\102\115\77\51\101\55\68\51\106\72\108\51\106\79\71\51\100\56\54\51\72\76\77\51\54\87\65\51\53\112\120\51\103\68\117\51\103\48\75\51\55\120\103\51\102\115\104\51\73\109\104\51\55\120\103\51\75\77\97\51\104\57\85\51\54\114\83\51\106\69\53\51\54\53\118\51\69\67\106\51\73\81\103\51\106\80\98\51\99\69\99\51\74\83\76\51\56\79\97\51\98\70\82\51\99\52\111\51\101\85\78\51\71\116\75\51\55\81\49\51\99\104\67\51\104\101\73\51\75\111\49\51\74\112\112\51\70\84\100\51\75\49\105\51\74\81\48\51\57\55\112\51\107\71\103\51\97\77\53\51\105\66\55\51\65\72\48\51\49\67\79\50\53\111\50\50\108\50\50\76\51\50\80\57\50\49\110\50\53\99\50\49\104\50\50\74\50\53\53\50\52\52\51\53\49\52\51\74\88\103\51\99\80\76\51\99\90\108\51\104\81\54\51\53\50\113\51\75\76\111\51\71\101\115\51\57\86\78\51\74\67\52\51\70\101\54\51\55\118\49\51\72\55\81\51\107\87\97\51\73\71\118\51\69\49\73\51\103\54\73\51\70\90\71\51\106\81\70\51\72\79\102\51\101\88\49\51\71\82\75\51\71\50\112\51\69\69\122\51\103\98\68\51\106\99\107\51\56\101\112\51\107\113\77\51\57\82\57\51\68\104\88\51\73\115\75\51\100\104\122\50\49\65\51\105\57\48\51\75\72\56\51\105\79\67\51\102\48\51\51\105\120\78\51\106\117\122\51\75\50\68\51\106\82\66\51\104\79\50\51\65\88\57\51\74\102\120\50\54\75\51\56\102\99\51\74\113\55\51\74\99\53\51\50\111\74\51\102\53\97\51\105\76\120\51\54\56\73\51\106\105\87\51\106\52\68\51\72\78\68\51\70\67\90\51\53\116\49\51\70\77\84\51\103\56\48\51\102\104\110\51\106\66\77\51\51\100\103\51\101\51\55\51\106\71\101\51\100\79\72\51\69\116\49\51\66\84\80\51\105\108\57\51\107\84\110\51\73\100\114\51\107\55\77\51\98\69\87\51\107\51\113\51\54\53\71\51\97\49\84\51\75\77\56\51\55\106\73\51\67\89\49\51\75\52\116\51\102\88\53\51\105\54\51\51\106\103\117\51\53\111\57\51\99\106\56\51\67\52\76\51\56\51\117\51\104\53\118\51\53\110\53\51\55\73\119\51\73\50\55\51\53\50\98\51\70\79\51\51\66\117\83\51\74\104\56\51\74\54\73\51\56\98\83\51\101\55\73\51\104\81\56\51\66\48\85\51\101\51\82\51\74\72\48\51\107\56\73\51\75\88\112\51\74\100\67\51\53\87\121\51\54\85\117\51\75\56\69\51\99\52\79\51\68\71\121\51\100\85\55\51\75\56\50\51\75\109\99\51\54\53\118\51\71\52\88\51\106\100\70\51\106\76\52\51\53\57\51\51\70\116\49\51\105\50\90\51\107\103\50\51\74\116\69\51\70\84\105\51\69\48\50\51\75\82\83\51\67\85\103\51\106\54\90\50\73\54\51\50\99\81\50\49\54\50\53\87\50\49\52\50\53\109\51\105\82\84\51\54\121\57\51\68\104\77\51\106\97\74\51\71\53\118\51\106\117\49\51\103\101\79\51\55\114\51\51\74\81\108\51\69\54\48\51\55\79\73\51\75\79\56\51\71\70\103\51\54\68\52\51\74\67\71\51\68\78\99\51\106\99\105\51\70\113\103\51\56\108\99\51\106\103\89\51\67\67\106\51\55\77\100\51\75\119\57\51\107\75\112\51\72\106\108\51\105\84\51\51\102\81\119\51\106\86\99\51\107\112\54\51\105\56\55\51\107\107\119\51\105\120\53\51\57\101\111\51\68\54\56\51\67\109\89\51\56\120\54\51\72\106\102\51\51\55\114\51\102\122\55\51\107\68\99\51\107\83\117\51\75\104\48\51\75\100\73\51\102\57\114\51\54\115\67\51\57\69\120\51\69\56\48\51\72\98\114\51\70\85\56\51\106\66\83\51\107\86\122\51\107\68\51\51\105\52\84\51\107\108\101\51\75\65\52\51\107\108\103\51\75\115\57\51\73\99\97\51\102\50\97\51\51\66\103\51\65\68\54\51\105\83\104\51\74\99\111\51\103\52\53\51\102\65\108\51\107\54\70\51\98\52\73\51\74\49\79\51\73\104\75\51\74\57\51\51\106\53\105\51\72\76\49\51\103\115\84\51\74\66\51\51\103\99\122\51\54\111\103\51\57\99\109\51\104\57\101\51\75\51\116\51\57\99\77\51\106\116\52\51\74\111\78\51\98\117\51\51\100\90\111\51\74\83\54\51\51\70\107\51\107\106\49\49\49\51\106\100\55\51\71\68\109\51\98\117\56\51\107\73\84\51\67\116\55\51\107\99\50\51\57\78\65\51\102\70\81\51\106\49\106\51\70\57\77\51\54\111\48\51\97\53\72\51\107\85\54\51\57\67\54\51\73\85\114\51\73\85\105\51\57\48\51\51\107\88\120\51\107\113\57\51\74\108\75\51\104\89\52\51\75\98\73\51\75\85\67\51\101\76\69\51\74\115\116\51\75\103\48\51\51\102\102\51\53\122\106\51\73\51\56\51\55\54\75\51\75\114\86\51\65\53\121\51\103\77\109\51\102\84\101\51\105\87\98\51\102\120\110\50\102\106\50\51\52\50\51\120\49\53\50\52\109\50\50\69\50\53\100\50\51\57\50\108\115\50\54\51\50\49\89\50\55\48\51\57\106\54\51\75\53\55\51\72\70\52\51\70\76\57\51\68\119\103\51\103\98\49\51\75\122\111\51\105\87\89\51\70\101\99\51\73\116\52\51\101\65\112\51\102\73\108\51\104\83\57\51\105\84\97\51\56\107\99\51\105\116\104\51\70\53\80\51\105\80\49\51\102\86\71\51\103\106\115\51\69\57\52\51\99\52\89\51\74\48\50\51\97\84\67\51\75\54\50\51\53\54\102\51\73\111\57\51\67\104\80\51\105\57\50\51\106\85\119\51\73\107\56\51\108\48\67\51\75\72\67\51\71\122\99\51\107\50\101\51\106\82\99\51\75\79\120\51\100\49\108\51\103\83\68\51\51\55\114\51\68\107\48\51\74\121\52\51\107\57\102\51\69\118\76\51\54\82\115\51\106\67\67\51\56\50\76\51\102\72\73\51\108\48\85\51\102\121\121\51\70\48\108\51\72\56\77\51\102\122\50\51\75\103\85\51\106\49\102\51\75\105\48\51\52\77\83\51\74\48\120\51\105\104\68\51\100\114\56\51\76\49\50\51\98\89\112\51\108\49\52\51\72\75\86\51\104\84\66\51\70\49\85\51\73\57\112\51\76\49\57\51\70\54\69\51\107\77\53\51\57\103\120\51\102\111\54\51\53\89\55\51\55\80\68\51\103\116\65\51\54\56\98\51\57\104\77\51\104\54\68\51\74\84\53\51\54\53\118\51\70\110\78\51\55\51\80\51\101\122\115\51\65\52\118\51\103\52\88\51\108\53\107\51\55\100\54\51\73\81\105\51\101\115\120\51\69\56\54\51\65\103\51\51\69\84\77\51\104\121\97\51\97\107\74\51\71\56\122\51\102\102\73\51\65\71\50\51\67\106\73\51\74\97\53\51\57\72\113\51\107\113\53\51\65\118\113\51\107\113\65\51\100\55\119\51\103\68\50\51\107\120\81\51\97\85\82\51\104\80\87\51\70\54\75\51\70\115\77\51\54\71\71\51\74\69\56\51\69\57\49\51\76\51\49\51\57\106\52\51\98\54\71\51\74\88\66\51\98\98\73\51\108\54\83\51\70\112\51\51\74\51\108\51\72\70\51\51\53\86\109\51\55\69\50\51\53\80\70\51\51\71\85\50\51\87\50\53\87\50\54\112\50\54\120\50\50\57\50\53\84\49\52\50\49\112\50\53\71\50\53\88\50\52\88\50\52\71\50\54\70\51\57\55\115\50\49\84\50\53\107\51\54\57\80\51\99\112\120\51\99\103\55\51\71\87\50\51\108\51\109\51\70\90\99\51\71\110\122\51\56\69\54\51\75\97\73\51\98\67\69\51\107\90\85\51\104\106\82\51\57\87\88\51\98\51\87\51\99\104\49\51\104\70\114\51\107\57\80\51\73\49\52\51\67\116\50\51\73\116\113\51\107\55\67\51\70\49\74\51\103\82\90\51\104\70\79\51\103\55\85\51\101\82\86\51\105\103\100\50\51\105\51\106\56\81\51\99\66\70\51\69\70\101\51\104\103\74\51\97\67\121\51\56\108\65\51\70\57\105\51\52\109\83\51\99\79\115\51\65\77\113\51\97\73\80\51\99\72\101\51\68\114\99\51\106\118\82\51\65\56\97\51\101\100\112\49\56\51\68\109\109\51\97\68\110\51\101\57\120\51\76\48\57\51\73\57\51\51\108\48\66\51\107\72\98\51\107\111\84\51\106\99\48\51\75\72\69\51\107\79\87\51\102\48\67\51\56\48\49\51\51\66\103\51\68\82\97\51\66\51\106\51\74\89\83\51\100\75\116\51\71\75\102\51\74\75\56\51\73\89\48\51\74\75\69\51\55\67\122\51\73\57\78\51\108\56\107\51\73\85\50\51\76\56\77\51\103\99\111\51\56\84\51\51\106\57\55\51\69\74\79\51\98\112\110\51\98\80\71\51\103\68\101\51\104\85\104\51\72\104\99\51\69\108\49\51\66\48\54\51\99\111\115\51\97\52\118\51\103\52\106\51\55\80\100\51\70\117\53\51\107\70\65\51\98\80\75\51\69\103\116\51\107\73\76\51\68\99\106\51\75\74\51\51\55\67\48\51\56\104\105\51\73\86\49\51\104\53\90\51\74\65\55\51\57\98\84\51\75\70\50\51\108\50\54\51\99\83\77\51\108\57\70\51\66\54\101\51\73\50\50\51\99\69\115\51\104\54\54\51\100\54\85\51\75\48\68\51\73\54\55\51\55\51\112\51\105\113\65\51\98\85\48\51\54\120\66\51\75\89\80\51\103\97\68\51\55\53\113\51\54\121\111\50\104\57\50\51\89\50\52\106\50\51\49\50\50\74\50\51\119\50\53\56\50\55\51\50\53\74\49\88\50\54\104\50\54\108\51\49\110\116\49\71\50\52\49\50\52\118\50\53\79\51\69\85\84\51\104\74\50\51\75\121\89\51\56\99\79\51\74\88\84\51\73\106\69\51\104\101\89\51\105\82\119\51\55\108\53\50\112\74\51\104\54\89\51\53\68\100\51\51\98\103\51\72\55\107\51\106\110\80\51\71\51\81\51\101\118\109\51\76\55\100\51\53\113\98\51\72\82\78\51\74\48\53\51\107\108\65\51\107\100\50\51\72\103\51\51\107\97\50\51\108\52\71\51\75\115\55\51\107\65\53\51\105\52\121\51\108\52\107\51\72\88\107\51\53\102\99\51\101\90\85\51\97\73\77\51\70\117\120\51\75\90\109\51\104\70\99\51\108\54\88\51\69\65\114\51\75\54\75\51\97\50\49\51\106\98\101\51\105\100\56\51\74\121\101\51\70\69\106\51\76\51\85\51\53\53\69\51\72\51\112\51\108\55\56\51\74\113\79\51\75\53\89\51\76\66\56\51\74\105\84\51\70\114\101\51\100\80\108\51\70\81\56\51\57\52\50\51\102\81\113\51\98\74\55\51\106\82\108\51\57\108\83\51\104\56\109\51\106\122\78\51\108\100\68\51\106\49\107\51\102\97\112\51\103\119\85\51\74\122\85\51\107\88\99\51\72\48\86\51\70\118\82\51\75\81\49\51\75\77\53\51\104\72\57\51\75\52\75\51\55\89\109\51\55\75\53\49\49\51\101\83\88\51\107\102\48\51\105\118\53\51\74\50\74\51\107\74\65\51\75\48\101\51\102\83\55\51\76\53\57\51\54\53\86\51\103\53\57\51\66\107\74\51\107\48\54\51\53\121\55\51\55\89\74\51\73\105\53\51\73\65\56\51\52\84\53\51\56\51\85\51\65\49\84\51\98\122\66\51\51\105\55\51\101\107\88\51\107\56\49\51\102\115\50\51\73\65\50\51\55\68\54\51\71\116\120\51\74\49\74\51\74\111\85\51\106\49\119\51\56\65\119\51\104\85\98\51\72\84\109\51\102\115\78\51\102\111\48\51\104\72\119\51\107\66\115\51\75\49\50\51\67\52\117\51\108\71\76\51\68\76\67\51\70\71\104\51\49\73\105\49\103\50\49\66\50\53\109\49\55\50\50\113\51\49\75\116\51\73\77\117\51\108\57\86\51\104\69\109\51\108\57\121\51\68\51\119\51\67\121\87\51\101\56\111\51\69\118\56\51\107\66\54\51\55\51\86\50\50\99\51\99\80\120\51\107\107\97\51\107\88\48\51\75\55\98\51\108\70\88\51\103\90\109\51\107\72\104\51\76\98\113\51\107\108\116\51\69\83\51\51\106\106\57\51\107\116\48\51\104\48\56\51\97\110\87\51\103\54\74\51\107\51\53\51\99\103\71\51\70\101\73\51\104\74\115\51\70\57\57\51\106\113\77\51\56\119\88\51\70\57\52\51\104\111\117\51\106\82\49\51\108\101\90\51\71\81\82\51\102\121\99\51\107\57\122\51\74\51\86\51\108\70\52\51\75\119\49\51\104\87\90\51\76\70\55\51\108\52\73\51\108\102\57\51\73\88\115\51\66\52\114\51\55\79\100\51\76\51\86\51\75\83\107\51\103\99\51\51\54\48\108\51\71\107\56\51\101\50\51\51\102\121\122\51\55\57\121\51\69\50\54\51\70\105\117\51\75\107\108\51\107\85\86\51\53\82\85\51\69\97\120\51\74\81\121\51\103\55\109\51\75\88\56\51\72\56\86\51\101\111\113\51\101\102\79\51\98\111\77\51\108\99\108\51\71\75\77\51\72\84\100\51\108\99\111\51\103\120\51\51\106\49\84\51\98\75\48\51\70\65\102\51\74\107\115\51\53\57\115\51\53\110\66\51\74\54\78\51\108\53\111\51\53\76\114\51\98\81\56\51\108\49\69\51\55\83\48\51\107\105\81\51\53\68\56\51\97\53\75\51\75\81\106\51\75\77\102\51\56\106\103\51\104\108\103\51\97\107\89\51\56\51\117\51\100\116\122\51\75\101\119\51\108\68\57\51\108\71\74\51\108\104\103\51\68\112\57\51\55\88\81\51\100\55\105\51\67\82\53\51\104\105\57\51\54\88\66\51\105\83\100\51\108\71\111\51\106\65\56\51\76\103\81\51\75\88\113\51\108\52\115\51\57\121\69\51\73\113\50\51\65\52\116\51\69\72\102\51\56\111\65\51\56\78\105\51\73\66\50\50\52\117\49\52\50\51\122\50\51\48\50\53\51\50\51\85\50\50\71\51\104\50\117\51\75\82\108\51\101\118\101\51\106\105\101\51\76\65\51\51\75\49\106\51\67\53\122\51\99\65\100\50\80\55\51\98\49\79\51\102\76\54\51\70\120\105\51\70\67\114\51\66\101\53\51\106\110\110\51\70\118\98\51\71\84\97\51\68\69\50\51\104\54\100\51\108\55\120\51\57\120\119\51\103\83\48\51\104\67\77\51\106\70\73\51\57\80\81\51\103\51\88\51\53\116\49\51\69\53\49\51\67\86\65\51\70\68\50\51\74\111\49\51\74\74\53\51\56\120\106\51\97\74\80\51\75\97\67\51\103\100\83\51\107\100\114\51\74\113\67\51\108\102\107\51\71\119\53\51\106\70\72\51\104\99\104\51\75\51\55\51\74\70\108\51\72\56\48\51\51\52\65\51\100\119\120\51\74\113\79\51\100\103\115\51\107\83\48\51\105\56\120\51\70\68\69\51\76\52\68\51\108\74\53\51\108\52\70\51\107\115\54\51\107\87\51\51\75\100\55\51\73\79\105\51\108\102\65\51\54\85\117\51\75\105\51\51\102\78\70\51\107\105\53\51\107\51\106\51\73\100\80\51\76\49\55\51\107\109\50\51\72\48\89\51\105\53\109\51\103\52\70\51\67\120\57\51\103\75\122\51\57\53\82\51\105\100\121\51\76\57\113\51\71\49\57\51\69\80\55\51\70\50\79\51\68\56\52\51\55\120\103\51\104\72\112\51\108\50\57\51\66\75\74\51\99\89\78\51\56\79\85\51\53\74\75\51\103\52\115\51\75\117\74\51\53\67\82\51\101\112\88\51\71\57\109\51\102\110\102\51\76\76\54\51\73\54\50\51\66\118\55\51\75\110\54\51\56\122\89\51\67\84\48\51\75\121\72\51\101\80\66\51\106\87\57\51\105\76\90\51\104\77\52\51\108\54\49\51\102\115\48\51\57\55\65\51\70\51\55\51\103\72\78\51\49\112\103\51\75\52\111\51\98\70\65\51\51\69\84\51\71\76\115\51\97\75\120\51\104\109\70\51\71\73\54\51\72\113\115\51\74\97\80\50\80\89\50\49\121\50\53\75\51\49\83\69\49\50\50\49\52\50\50\49\50\51\69\50\49\74\50\52\118\50\50\71\50\52\78\50\53\105\49\90\51\106\120\68\51\73\55\107\51\106\97\108\51\56\53\119\51\101\56\90\51\75\110\84\51\67\97\104\51\101\68\72\51\70\121\54\51\74\66\81\51\54\51\56\51\74\55\78\51\99\108\100\51\106\82\52\51\76\106\52\51\107\54\55\51\108\102\53\51\108\78\51\51\102\121\108\51\107\119\52\51\108\52\74\51\76\106\66\50\50\51\50\51\53\51\51\86\55\51\98\114\84\51\100\48\70\51\56\50\76\51\75\57\107\51\107\71\79\51\106\67\70\51\56\70\49\51\74\99\104\51\99\77\97\51\56\76\97\49\54\51\51\118\55\51\73\67\79\51\104\79\114\51\106\81\114\51\106\48\73\51\57\113\67\51\103\71\56\51\72\48\50\51\74\109\116\51\74\52\113\51\76\105\78\51\100\87\77\51\76\77\79\51\98\56\56\51\104\55\121\51\67\109\86\51\102\86\66\51\99\87\106\51\74\98\108\51\103\114\113\51\74\100\52\51\74\53\55\51\68\114\66\51\101\114\114\51\53\73\53\51\105\67\88\51\51\55\82\51\74\49\101\51\55\55\75\51\108\56\70\51\102\105\121\51\76\74\89\51\104\88\68\51\107\109\49\51\74\82\90\51\108\78\103\51\74\115\49\51\107\116\82\51\57\71\88\51\105\65\48\51\104\69\50\51\71\49\73\51\104\49\55\51\72\53\90\51\74\76\108\51\75\77\112\51\76\79\103\51\99\106\83\51\106\80\53\51\74\83\56\51\108\81\116\51\101\88\79\51\76\78\81\51\51\110\76\51\100\56\53\51\75\102\84\51\75\114\53\51\73\54\100\51\105\81\53\51\55\51\110\51\75\67\54\51\71\111\89\51\57\72\50\51\99\101\67\51\74\50\54\51\104\57\102\51\105\109\99\51\108\110\112\51\74\57\67\49\49\51\74\83\56\51\75\102\77\51\71\108\68\51\108\50\69\51\54\88\110\51\106\112\53\51\70\87\48\51\70\87\54\51\73\66\49\51\107\49\54\51\99\70\114\50\66\114\50\55\50\50\50\114\50\51\77\50\49\102\51\57\56\48\51\105\109\118\51\50\78\113\51\57\100\106\51\102\120\121\51\74\65\113\51\57\55\112\51\75\82\114\51\108\97\51\51\75\114\112\51\76\51\51\51\68\86\52\51\106\117\51\51\56\70\57\51\108\109\51\51\74\86\53\51\75\50\117\51\98\104\102\51\108\66\116\51\57\97\119\51\97\72\104\51\74\78\65\51\74\69\116\51\75\68\48\51\108\74\51\51\106\101\87\51\107\119\48\51\108\110\50\51\75\119\50\51\76\112\114\51\108\110\53\51\107\87\53\51\108\70\65\51\57\100\88\51\101\107\55\51\100\87\86\51\75\115\108\51\76\77\56\51\71\78\79\51\68\57\54\51\54\100\66\51\70\72\80\51\66\74\72\51\71\57\48\51\75\107\78\51\76\109\74\51\107\104\107\51\101\97\79\51\72\67\68\51\76\51\113\51\107\116\53\51\102\99\88\51\65\111\50\51\76\66\49\51\108\106\101\51\70\113\57\51\70\53\113\51\74\85\72\51\70\53\115\51\68\76\67\51\99\85\121\51\104\51\89\51\106\52\77\51\57\65\90\51\74\118\118\51\76\52\114\51\54\78\54\51\69\84\52\51\76\103\68\51\74\75\57\51\108\107\48\51\107\69\113\51\106\107\72\51\108\73\56\51\102\54\71\51\66\112\49\51\53\117\118\51\65\76\50\51\76\103\76\51\99\52\108\51\107\113\90\51\54\88\78\51\106\57\122\51\52\71\113\51\54\55\53\51\74\49\106\51\108\57\108\51\56\65\111\51\106\115\103\51\76\71\82\51\75\121\108\51\66\118\49\51\99\120\106\51\106\68\48\51\104\105\53\51\67\52\86\51\76\79\66\51\53\110\49\51\71\120\103\51\76\110\78\51\71\52\118\51\69\112\55\51\57\100\120\51\108\53\71\51\51\106\77\51\103\112\52\51\75\98\80\51\71\76\48\51\103\104\82\51\55\120\81\51\72\85\107\51\107\121\56\51\67\69\89\51\67\52\79\51\99\84\103\51\72\53\66\51\76\111\82\51\102\107\78\51\74\66\48\51\102\99\55\51\100\51\82\51\103\49\111\51\75\107\54\51\103\101\52\51\106\112\109\50\81\101\50\53\50\50\53\118\51\49\111\67\50\54\77\51\67\112\75\51\107\49\83\51\76\54\117\51\70\53\67\51\99\119\54\51\108\109\107\51\68\100\108\51\107\122\113\51\75\116\51\51\102\105\107\51\70\48\90\51\100\119\113\51\107\65\108\51\101\88\51\51\107\97\110\51\104\102\81\51\69\110\57\51\103\78\115\51\101\119\110\51\105\120\66\51\98\77\75\51\56\82\120\51\72\115\81\51\56\50\108\51\108\51\97\51\105\67\72\51\99\104\53\51\105\48\98\51\75\103\114\51\74\48\83\51\69\53\54\51\76\77\103\51\55\48\83\51\55\48\85\51\108\56\56\51\55\55\107\51\108\77\51\51\57\74\109\51\68\101\50\51\71\57\100\51\75\104\52\51\102\57\122\51\107\104\54\51\73\48\113\51\106\117\85\51\108\55\74\51\107\111\113\51\76\99\51\51\75\111\115\51\106\82\57\51\75\79\117\51\108\67\55\51\108\55\81\51\102\48\99\51\66\107\104\51\108\114\50\51\75\98\48\51\71\99\108\51\105\104\106\51\74\87\49\51\106\53\72\51\72\104\55\51\107\101\83\51\70\82\115\51\71\83\85\51\67\57\82\51\69\72\55\51\103\80\51\51\71\68\80\51\73\50\74\51\73\117\99\51\102\70\117\51\97\76\109\51\54\56\100\50\109\49\51\75\102\52\51\100\50\107\51\105\102\51\51\53\109\52\51\76\107\113\51\73\65\99\51\70\103\54\51\67\57\102\51\76\107\117\51\69\112\119\51\51\54\79\51\73\50\68\51\70\122\52\51\106\111\118\51\68\117\53\51\108\50\68\51\104\54\56\51\69\121\116\51\67\52\90\51\71\68\111\51\104\54\68\51\108\108\49\51\108\68\103\51\107\106\57\51\107\120\81\51\76\82\112\51\53\79\55\51\100\103\71\51\101\120\80\51\102\115\84\51\108\89\52\51\108\72\82\51\102\116\50\51\106\55\52\51\66\109\48\51\71\65\67\51\69\86\100\51\105\66\69\51\55\54\107\51\73\51\67\50\53\78\50\53\76\50\52\52\50\53\49\50\54\84\50\49\120\50\50\117\50\49\57\50\50\70\50\50\66\50\49\119\51\99\97\68\51\54\121\54\51\108\54\57\51\98\121\99\51\55\65\82\51\71\97\71\51\67\49\54\51\53\53\51\51\108\113\52\51\75\87\90\51\107\114\90\51\75\50\51\51\72\75\52\51\104\110\82\51\75\50\54\51\76\88\72\51\74\106\88\51\108\88\106\51\103\51\54\51\76\55\77\51\76\99\53\51\75\104\100\51\76\55\112\51\76\48\71\51\104\120\52\51\57\65\113\51\51\79\50\51\50\82\48\51\101\56\48\51\108\77\53\51\73\83\51\51\97\49\73\51\50\110\116\51\108\74\73\51\99\49\102\51\66\106\65\51\107\50\112\51\54\108\73\51\71\86\120\51\70\48\111\51\73\120\88\51\76\102\119\51\75\76\80\51\55\49\55\51\107\74\53\51\108\111\52\51\106\102\66\51\76\73\77\51\75\107\82\51\72\115\54\51\103\74\77\51\68\68\80\51\98\87\81\51\74\78\50\51\102\49\51\51\75\80\65\51\71\54\112\51\104\48\72\50\53\56\51\54\56\82\51\97\106\77\51\107\116\87\51\108\52\112\51\108\120\86\51\75\112\86\51\73\49\99\51\76\74\90\51\107\80\90\51\76\49\56\51\75\77\51\51\73\68\116\51\69\70\87\51\107\88\73\51\65\100\51\51\65\108\55\51\69\70\90\51\54\69\109\51\73\113\102\51\57\110\56\51\76\118\111\51\49\99\67\51\50\81\112\51\76\53\88\51\101\56\68\51\106\80\71\51\106\68\66\51\107\98\107\51\99\56\88\51\107\48\51\51\108\49\120\51\57\67\54\51\73\50\118\51\76\86\99\51\57\72\67\51\102\70\99\51\53\56\115\51\69\56\48\51\97\113\53\51\54\108\52\51\76\77\119\51\74\72\108\51\55\121\110\51\76\82\110\51\54\79\51\51\97\86\66\51\74\54\65\51\56\111\65\51\55\74\87\51\105\105\117\51\105\66\48\51\73\113\48\51\70\67\50\51\97\85\74\51\98\66\49\51\74\112\108\51\66\113\114\51\100\90\85\51\97\104\54\51\74\97\75\51\74\51\75\51\74\97\104\51\53\48\120\50\109\55\50\49\110\49\53\49\77\51\57\74\99\51\75\82\106\51\55\119\107\51\67\122\105\51\107\106\111\51\70\103\122\51\76\87\98\51\56\56\71\51\107\80\48\51\104\106\107\51\70\122\67\51\73\100\53\51\73\111\82\51\106\102\104\51\66\119\81\51\108\119\108\51\105\108\49\51\108\102\114\51\50\84\120\51\75\54\84\51\102\57\52\51\76\74\115\50\50\51\51\72\116\53\51\101\87\97\51\68\120\52\51\109\48\77\51\72\78\101\51\106\90\74\51\105\87\79\51\55\57\89\51\73\87\81\51\74\85\105\49\56\51\76\53\78\51\53\87\53\51\106\89\85\51\65\56\99\51\104\75\53\51\74\55\80\51\108\84\66\51\75\108\66\51\73\52\115\51\68\57\82\51\75\100\53\51\76\78\52\51\75\83\56\51\76\106\97\51\106\52\51\51\50\78\72\51\74\86\53\51\76\81\99\51\107\83\87\51\57\86\110\51\70\52\120\51\70\97\103\51\74\81\87\49\56\50\49\76\51\51\118\55\51\50\78\104\51\108\112\87\51\53\73\53\50\50\107\51\103\54\115\51\102\65\106\51\107\97\89\51\108\103\66\51\75\76\89\51\106\122\118\51\75\69\111\51\75\105\57\51\75\51\110\51\105\76\104\51\107\51\112\51\74\107\74\51\105\70\49\51\108\50\51\51\107\88\79\51\67\88\114\51\106\50\107\51\108\56\122\51\53\78\49\51\73\51\85\51\74\57\76\51\74\53\88\51\103\48\115\51\53\67\75\51\70\54\87\51\106\104\104\51\108\83\65\51\57\77\89\51\56\83\105\51\108\118\114\51\66\75\106\51\106\50\99\51\51\70\107\51\99\88\68\51\49\65\85\51\74\72\79\51\101\112\57\51\77\50\55\51\73\89\69\51\107\66\115\51\103\57\97\51\106\50\80\51\53\73\85\51\66\99\90\51\56\53\51\51\77\53\89\51\106\108\56\51\102\66\68\51\53\57\51\51\107\56\57\51\108\50\72\51\57\121\79\51\76\84\85\51\105\118\105\51\68\72\82\51\101\68\66\51\98\103\110\51\106\101\107\49\74\50\68\57\50\54\90\49\50\50\52\120\49\101\50\54\114\50\52\103\51\50\50\73\51\107\99\102\51\72\81\109\51\66\114\57\51\105\90\115\51\107\79\48\51\108\100\88\51\53\90\55\51\105\110\119\51\74\122\119\51\68\48\82\51\108\54\119\51\108\65\116\51\105\56\49\51\75\80\51\51\108\102\106\51\68\68\112\51\105\84\56\51\76\109\81\51\56\56\121\51\65\114\88\51\70\114\53\51\106\49\66\51\57\51\85\51\70\76\115\51\104\87\74\51\54\67\117\51\109\49\65\51\53\53\71\51\101\57\57\51\100\120\55\51\76\106\74\51\108\56\53\51\54\68\66\51\104\78\107\51\77\52\54\51\107\83\102\51\54\106\74\51\105\111\53\51\54\72\54\51\106\114\51\51\106\90\48\51\74\98\118\51\107\115\52\51\108\116\101\51\108\74\55\51\77\52\73\51\108\102\56\51\73\83\87\51\76\102\65\51\76\48\105\51\107\108\116\51\75\68\111\51\57\113\73\51\101\48\80\51\76\77\50\51\75\122\104\51\104\56\97\51\102\52\98\51\104\111\90\51\107\101\106\51\73\53\103\51\105\49\100\51\74\49\110\51\107\66\50\51\108\52\118\51\106\87\50\51\107\69\114\51\68\50\51\51\107\105\68\51\100\66\68\51\99\52\90\51\98\108\97\51\69\51\114\51\70\111\52\51\108\57\48\51\99\76\55\51\74\57\71\51\55\120\113\51\73\81\73\51\109\54\56\51\73\49\122\51\54\55\53\51\104\99\114\51\75\102\78\51\75\98\67\51\71\85\49\50\109\49\51\57\53\118\51\100\65\53\51\103\76\71\51\104\49\53\51\108\53\73\51\97\113\88\51\76\57\74\51\107\109\85\51\67\52\79\51\55\89\113\51\104\49\72\51\76\107\76\51\108\79\113\51\106\65\54\51\106\50\72\51\76\103\112\51\76\100\104\51\77\50\53\51\73\54\75\51\69\112\52\51\74\50\56\51\69\112\55\51\55\89\81\51\73\102\53\51\68\51\116\51\76\105\51\51\76\101\111\51\104\85\90\51\104\106\49\51\51\80\75\51\106\73\49\51\71\85\81\51\107\106\80\51\49\99\99\50\53\51\50\49\72\50\51\109\50\50\78\49\89\50\50\90\49\75\50\50\73\50\53\50\50\53\101\51\73\118\79\51\109\51\51\51\75\107\56\51\53\81\50\51\106\54\102\51\69\69\56\51\104\51\107\51\109\48\117\51\106\103\102\51\72\55\79\51\109\55\53\51\75\51\48\51\71\87\52\51\107\65\71\51\67\81\65\51\76\113\76\51\105\120\51\51\105\56\57\51\52\56\102\51\73\104\52\51\106\49\98\51\99\78\49\51\76\67\100\51\103\103\112\51\54\49\82\51\74\52\54\51\108\48\108\51\108\52\51\51\107\49\119\51\72\102\57\51\56\85\110\51\76\101\121\51\75\57\86\51\106\51\114\51\108\55\103\51\108\110\48\51\108\112\111\51\76\106\54\51\103\90\65\51\108\106\56\51\71\102\90\51\76\112\84\51\109\52\108\51\99\68\104\51\105\67\100\51\100\53\101\51\55\57\114\51\74\71\53\51\74\74\48\51\73\80\102\51\76\71\53\51\54\68\66\51\107\55\54\51\73\53\100\51\77\53\51\51\66\106\111\51\108\120\116\51\108\49\53\51\108\56\106\51\108\117\108\51\108\67\110\51\77\49\111\51\108\80\57\51\67\110\117\51\106\68\48\51\76\121\120\51\67\52\54\51\108\121\90\51\76\100\73\51\72\57\50\51\109\54\49\51\108\104\97\51\73\101\120\51\98\53\76\51\74\54\110\51\76\100\56\51\108\121\72\51\103\57\56\51\71\89\49\51\101\108\112\51\55\66\90\51\103\52\80\51\107\109\76\51\104\117\80\51\69\103\55\51\68\80\122\51\97\65\101\51\97\52\118\51\106\79\120\51\72\116\106\51\55\81\115\51\51\103\104\51\50\76\116\51\72\71\110\51\71\56\119\51\72\117\55\51\52\121\118\51\73\97\121\51\54\55\66\51\102\78\114\51\72\72\80\51\109\57\55\51\76\56\89\51\97\48\53\51\107\106\76\51\67\48\113\51\105\66\97\51\71\81\51\51\76\73\49\51\74\120\101\50\56\54\51\99\53\82\51\107\121\119\51\56\106\97\50\115\50\50\49\84\50\54\100\50\50\81\50\52\52\50\49\71\50\54\108\51\52\80\67\50\49\77\50\49\70\50\50\50\50\53\49\50\79\110\51\71\109\78\51\106\98\50\51\107\112\118\51\107\50\90\51\108\113\72\51\102\56\81\51\77\49\51\51\75\119\68\51\72\122\82\51\72\51\56\51\56\56\117\51\104\90\117\51\97\121\65\51\76\55\54\51\74\89\73\51\50\82\89\51\105\100\70\51\101\120\56\51\65\89\104\51\75\112\70\51\102\57\88\51\105\98\120\51\74\121\119\51\106\117\114\50\49\65\51\70\65\49\51\77\56\48\51\107\50\56\51\76\78\49\51\109\52\71\51\76\70\54\51\109\56\53\51\76\74\57\51\109\56\55\51\76\112\85\51\109\52\114\51\74\49\70\51\107\111\104\51\75\118\116\51\53\102\57\51\67\49\57\51\106\52\68\51\70\48\73\51\75\107\70\51\54\68\52\51\73\99\74\51\67\86\97\51\105\67\76\51\107\103\115\51\102\55\106\51\107\55\97\51\103\51\104\51\77\56\71\51\57\81\67\51\68\106\55\51\108\99\66\51\102\77\104\51\106\53\57\51\77\49\104\51\108\49\54\51\69\75\72\51\109\67\51\51\108\56\73\51\74\87\48\51\108\67\74\51\106\82\89\51\66\52\77\51\72\56\122\51\108\110\105\51\105\49\108\51\72\85\81\51\76\79\56\51\56\78\108\51\71\76\82\51\108\111\76\51\72\66\54\51\54\79\51\51\99\116\75\49\50\51\106\107\82\51\53\68\110\51\57\55\49\50\105\51\51\77\99\83\51\75\84\117\51\99\121\81\51\103\120\101\51\72\80\108\51\102\55\67\51\66\107\87\51\106\83\118\51\73\97\51\51\50\82\110\51\104\104\112\51\108\118\49\51\74\76\110\51\109\67\70\51\57\85\50\51\101\55\119\51\98\52\83\51\74\54\103\51\67\69\110\51\76\83\51\51\102\83\77\51\57\88\84\51\108\56\88\51\69\103\119\51\53\56\83\51\107\99\97\51\76\78\89\51\75\51\122\51\71\57\83\51\102\84\50\51\70\67\99\50\49\82\49\53\50\53\119\50\51\81\50\55\50\50\50\67\50\54\109\51\108\54\68\51\76\51\48\51\108\105\50\51\71\73\98\51\103\81\53\51\74\113\49\51\97\72\48\51\75\56\89\51\100\86\52\51\65\98\97\51\71\81\76\51\75\118\112\51\108\77\72\51\109\52\56\51\76\80\105\51\55\56\78\51\53\113\101\51\108\112\76\51\77\101\83\51\107\97\48\51\77\52\102\51\100\83\52\51\76\80\113\51\72\78\122\51\76\84\72\51\77\66\111\51\71\86\71\51\108\52\54\51\74\89\53\51\104\119\51\51\108\70\105\51\56\49\86\51\73\79\81\51\56\69\54\51\74\77\89\51\75\68\119\51\70\69\104\51\74\66\72\51\101\120\51\51\76\56\48\51\100\83\119\51\108\51\121\51\108\85\56\51\51\55\65\51\106\122\99\51\107\112\115\51\55\116\78\51\75\116\65\51\73\74\78\51\70\72\73\51\76\87\121\51\103\50\81\51\104\66\77\51\53\116\57\51\75\119\89\51\107\83\84\51\107\71\90\51\109\66\98\51\68\120\114\51\108\116\50\50\54\107\50\50\74\51\107\108\51\51\49\102\54\51\51\113\107\51\70\104\98\51\67\122\78\51\106\48\116\51\57\77\53\51\77\99\49\51\109\70\81\51\76\74\120\51\103\52\54\51\109\49\76\51\73\112\86\51\76\78\70\51\68\75\56\51\104\48\122\51\107\77\52\51\71\88\52\51\54\53\71\51\98\53\53\51\73\121\100\51\102\87\87\51\102\83\77\51\57\53\81\51\104\105\53\51\66\57\84\51\77\71\57\51\53\52\99\51\75\56\97\51\55\51\67\51\73\108\86\51\77\50\49\51\74\54\51\51\66\75\98\51\106\54\53\51\76\103\114\51\76\86\116\51\73\97\112\51\57\90\50\51\74\104\108\51\56\104\73\51\72\113\97\51\76\53\56\51\67\48\52\51\53\68\50\51\57\68\88\51\102\98\111\51\54\80\49\51\73\65\54\51\97\108\55\51\73\97\74\51\55\113\108\51\54\111\50\51\103\89\48\51\101\84\86\51\76\53\50\51\56\117\119\51\68\112\74\51\77\50\88\51\72\85\121\51\99\97\104\51\107\118\55\51\65\76\89\51\76\50\78\51\53\49\52\51\57\80\68\51\106\84\74\51\57\117\116\51\107\74\109\51\100\72\112\50\101\51\50\53\48\49\52\50\53\53\51\69\68\52\50\53\87\51\67\104\57\50\49\80\50\50\122\50\54\50\50\53\84\50\53\90\49\110\50\51\103\50\53\112\51\50\52\115\51\107\111\51\51\109\57\78\51\102\52\69\51\70\57\121\51\109\69\111\51\73\98\90\51\109\98\105\51\107\76\67\51\109\56\51\51\109\98\76\51\77\101\120\51\109\66\78\51\77\52\75\51\77\105\53\51\107\108\106\51\74\86\54\51\75\54\72\51\109\73\57\51\66\51\49\51\72\102\71\51\74\106\101\51\72\55\86\51\103\54\107\51\102\82\48\51\77\49\56\51\75\112\57\51\77\69\102\51\102\114\53\51\77\69\73\51\74\78\55\51\109\56\66\51\53\108\103\51\65\74\70\51\100\78\54\51\77\51\122\51\97\105\70\51\66\55\79\51\105\71\103\51\109\70\99\51\105\71\73\51\108\51\90\51\106\109\78\51\105\88\117\50\54\75\50\50\105\51\98\67\81\49\53\51\100\106\53\51\66\77\98\51\102\121\50\51\108\109\51\51\106\66\55\51\76\98\113\51\74\102\56\51\102\105\87\51\104\120\57\51\77\53\55\51\67\73\88\51\107\73\54\51\75\84\109\51\108\99\77\51\107\55\108\51\77\67\56\51\108\56\110\51\105\76\74\51\72\104\65\51\56\53\51\51\101\108\117\51\77\50\76\51\72\104\81\51\97\70\69\51\104\76\100\51\69\108\85\51\106\119\118\51\54\70\66\51\75\98\114\51\56\98\115\51\104\104\82\51\77\57\69\51\105\81\114\51\77\103\79\51\75\113\99\51\76\54\50\51\67\74\116\51\75\48\98\51\76\75\79\51\67\65\50\51\104\69\50\51\104\53\56\51\102\83\72\51\72\72\110\51\54\118\121\51\104\114\105\51\72\53\53\51\77\103\49\51\72\120\89\51\53\79\57\51\72\89\48\51\76\83\56\51\72\49\108\51\105\76\110\51\54\120\78\51\101\121\86\51\102\88\69\51\108\54\115\51\107\49\81\51\54\113\117\51\108\90\57\51\57\74\49\51\105\74\105\51\53\118\111\51\56\54\51\50\51\48\51\50\101\98\50\51\104\50\51\101\50\50\116\49\56\50\53\53\49\57\50\52\48\50\52\68\50\54\118\50\52\105\50\68\89\50\53\68\50\51\98\50\54\67\50\53\90\51\72\81\110\51\71\81\54\51\71\69\78\51\73\98\117\51\99\98\50\51\109\56\70\51\106\66\53\51\102\52\98\51\57\56\70\51\104\56\101\51\102\86\67\51\53\53\71\51\70\53\50\51\107\101\98\51\57\119\121\51\56\113\90\51\76\66\108\51\52\122\49\51\105\106\86\51\72\54\68\51\76\98\113\51\75\97\97\51\103\53\79\51\102\105\66\51\69\57\84\51\99\82\69\51\105\52\110\51\99\98\84\51\76\102\50\51\75\72\57\51\108\88\75\51\74\114\56\51\107\50\67\51\74\82\65\51\104\75\70\51\73\103\54\51\55\50\54\51\109\102\75\50\54\75\51\76\56\97\51\102\77\90\51\76\66\55\51\57\87\71\51\107\90\110\51\77\55\55\51\104\119\53\51\108\54\90\51\76\51\80\51\106\70\104\51\68\111\49\51\75\84\56\51\75\107\120\51\102\49\53\51\99\68\52\51\56\119\120\51\57\57\84\51\108\52\111\51\75\112\116\51\74\53\98\51\99\73\69\51\106\114\117\51\71\111\103\51\76\52\117\51\76\88\119\51\107\66\52\51\104\80\56\51\108\85\79\51\109\106\77\51\73\74\120\51\54\111\51\51\66\86\48\51\71\100\69\51\76\53\114\51\57\79\51\51\76\78\119\51\97\56\69\51\54\55\53\51\107\109\65\51\107\117\51\51\98\112\110\51\68\56\53\51\72\49\65\51\76\72\102\51\75\105\56\51\98\114\116\51\108\89\83\51\103\107\101\51\107\70\57\51\76\57\52\51\55\51\67\51\56\110\85\51\105\48\50\51\71\68\77\51\53\65\74\51\72\53\84\51\107\105\101\51\57\53\114\51\69\66\76\51\108\53\121\51\103\100\72\51\108\86\51\51\107\88\113\51\103\71\85\51\102\78\82\51\75\85\122\51\109\111\69\51\106\84\101\51\69\56\80\51\73\118\115\51\54\121\111\50\116\48\50\50\86\50\52\49\50\53\115\50\49\106\51\50\56\100\50\54\113\50\50\48\50\53\53\49\65\51\103\85\112\51\106\97\76\51\108\51\49\51\71\89\83\51\102\99\66\51\108\54\66\51\107\118\53\51\101\52\113\51\106\114\88\51\73\99\102\51\77\97\85\51\103\98\51\51\106\74\100\51\56\114\79\51\74\49\52\51\74\113\70\51\73\52\53\51\75\80\56\51\77\55\101\51\68\87\85\51\66\87\87\51\76\109\85\51\99\71\111\51\68\115\90\51\55\48\86\51\76\100\109\51\97\52\120\51\109\70\103\51\72\56\57\51\77\80\65\51\76\81\101\51\97\101\56\51\51\66\71\51\74\121\113\51\108\113\118\51\75\50\88\51\54\66\99\51\100\86\83\51\107\111\76\51\75\83\50\51\109\112\119\51\108\48\65\51\77\48\57\51\76\67\52\51\108\88\77\51\76\67\54\51\109\48\68\51\107\68\57\51\97\51\69\51\55\104\89\51\69\87\97\51\73\56\107\51\109\70\56\51\77\109\73\51\69\53\48\51\105\115\55\51\76\109\99\51\74\74\51\51\109\49\100\50\109\49\51\99\56\67\51\105\54\67\51\53\70\67\51\108\56\97\51\100\106\90\51\103\115\70\51\100\75\49\51\99\54\65\51\72\82\106\51\73\53\101\51\75\88\65\51\72\88\67\51\107\51\107\51\75\66\51\51\76\85\77\51\103\48\56\51\106\107\105\51\75\55\112\51\65\52\53\51\76\111\74\51\53\74\75\51\72\49\65\51\109\114\52\51\54\88\87\51\55\119\89\51\103\57\66\50\73\51\51\107\77\107\51\108\78\88\51\53\57\51\51\104\109\100\51\103\108\98\51\104\109\48\51\108\75\55\51\72\49\80\51\53\57\51\51\70\106\82\51\109\103\75\51\55\68\54\51\73\105\66\51\105\89\109\51\73\101\57\51\109\53\82\51\56\111\56\51\105\54\114\51\108\53\122\51\108\114\105\51\77\114\87\51\77\103\113\51\107\111\74\51\71\88\116\51\99\84\48\51\103\57\104\51\67\52\111\51\97\65\101\51\75\48\65\51\108\54\52\51\73\74\103\51\102\75\109\51\76\69\105\51\99\70\107\51\74\69\107\51\56\77\119\51\65\48\86\51\70\108\54\51\108\57\90\51\53\90\50\50\83\50\51\107\114\104\50\52\51\50\52\104\50\49\85\50\52\73\50\50\56\50\51\89\50\52\119\50\50\83\50\50\66\50\53\71\50\53\57\51\76\119\50\51\54\74\48\51\103\73\106\51\55\75\49\51\55\56\106\51\104\98\83\51\109\84\73\51\100\114\120\51\109\76\80\51\109\104\122\51\72\55\66\51\109\76\83\51\76\84\103\51\77\52\74\51\77\101\122\51\77\98\80\51\72\75\73\51\108\55\84\51\50\82\48\51\109\51\117\51\74\98\55\51\109\65\115\51\104\71\70\51\76\105\77\51\108\51\79\51\75\80\52\51\74\102\72\51\107\72\80\51\55\111\76\51\104\87\68\51\76\85\53\51\106\74\108\51\74\66\108\51\109\66\52\51\71\114\82\51\103\50\118\51\71\114\84\51\77\66\65\51\75\88\50\51\109\66\99\51\55\98\119\51\71\110\106\51\71\82\108\51\106\52\100\51\107\71\110\51\109\48\111\51\104\66\76\51\108\113\53\51\75\119\88\51\73\103\107\51\65\88\81\51\106\48\118\51\71\103\99\51\77\74\67\51\57\120\120\51\77\106\101\51\69\111\83\51\108\78\68\51\77\110\55\51\75\116\79\51\76\75\50\51\71\56\70\51\76\49\98\51\74\113\113\51\77\103\117\51\99\89\105\51\109\74\113\51\75\98\83\51\57\115\87\51\106\119\97\51\109\50\51\51\75\56\106\51\109\118\103\51\106\72\52\51\66\122\100\51\107\51\86\51\103\80\53\51\97\81\88\51\57\100\88\51\106\88\52\51\50\80\66\51\104\74\72\51\107\52\81\51\54\88\110\51\77\85\83\51\53\89\55\51\57\83\111\51\101\110\104\51\109\57\106\51\54\49\73\51\108\49\107\51\53\121\111\51\106\71\119\51\105\54\74\51\56\78\100\51\100\80\90\51\98\90\118\51\109\106\119\51\108\50\72\51\53\56\85\51\56\117\50\51\104\100\52\51\65\117\122\51\103\49\52\50\114\48\51\77\55\118\51\100\122\81\51\102\99\54\51\55\54\75\51\77\54\109\51\108\50\77\49\48\50\52\54\50\51\120\50\53\68\50\74\102\50\54\50\51\49\48\106\50\51\121\49\122\50\49\70\50\49\79\50\53\65\51\68\77\56\51\109\68\109\51\73\110\112\51\109\100\73\51\69\73\97\51\65\104\56\51\103\65\71\51\56\105\85\51\76\109\51\51\99\117\88\51\102\53\118\51\77\109\100\51\68\101\112\51\51\68\103\51\76\110\116\51\108\52\50\51\67\67\111\51\55\103\121\51\73\87\88\51\73\68\54\51\70\48\87\51\77\88\49\51\109\69\97\51\72\102\107\51\55\104\100\51\75\87\71\51\54\117\100\51\72\122\88\51\106\74\108\51\107\54\116\51\75\51\68\51\107\111\73\51\65\84\57\51\77\52\57\51\75\67\90\51\54\83\78\51\107\54\52\51\109\52\100\51\76\70\51\51\109\66\106\51\109\108\114\51\104\99\50\51\109\98\77\51\104\82\120\51\103\114\52\51\76\102\97\51\57\54\68\51\72\71\68\51\77\116\86\51\106\105\90\51\74\48\79\51\54\81\50\51\102\117\49\51\75\55\52\51\56\76\65\51\76\74\110\51\52\77\115\51\109\67\48\51\103\87\115\51\106\82\116\51\109\53\53\51\76\85\74\51\106\103\106\51\109\88\90\51\77\78\57\51\75\84\114\51\108\71\73\51\97\54\114\51\100\50\54\51\71\56\113\51\67\53\49\51\109\82\55\51\74\118\77\51\71\56\106\51\76\100\102\51\77\67\100\51\67\79\87\51\76\71\82\51\72\53\52\51\67\51\86\51\109\56\90\51\75\106\100\51\57\67\115\51\51\68\52\51\50\81\80\51\105\113\82\51\77\100\67\51\54\88\110\51\75\84\84\51\100\107\107\51\72\85\99\51\57\120\119\51\56\53\51\51\68\51\57\51\108\82\83\51\56\79\65\51\54\101\103\51\107\102\88\50\105\51\51\72\51\89\51\108\78\117\51\54\79\48\51\109\85\77\51\68\108\97\51\51\75\122\51\104\108\70\51\77\76\107\51\68\90\55\51\108\89\71\51\67\57\79\51\104\54\102\51\102\84\50\51\102\71\114\51\69\86\98\51\57\79\119\49\68\50\52\112\49\109\50\50\55\50\50\99\50\54\78\50\50\52\50\49\115\50\49\114\50\54\67\50\49\99\51\109\104\77\51\65\98\57\51\99\122\101\51\107\114\79\51\57\100\85\51\107\53\80\51\109\104\75\51\72\70\48\51\75\90\100\51\57\68\119\51\77\112\82\51\103\71\97\51\102\49\67\51\72\48\75\51\97\49\56\51\104\79\113\51\107\50\121\51\77\49\49\51\110\48\57\51\108\119\102\51\104\48\55\51\72\111\99\51\102\101\102\51\73\116\55\51\71\50\109\51\108\113\78\51\70\122\76\51\73\56\65\51\50\116\120\51\77\101\73\51\72\67\112\49\53\51\72\71\88\51\54\80\122\51\54\86\50\51\75\50\106\51\55\111\105\51\77\55\79\51\107\57\76\51\109\109\74\51\100\82\77\51\109\70\68\51\72\66\79\51\103\70\76\51\109\54\48\51\53\54\52\51\77\76\109\51\109\119\73\51\98\56\113\51\105\70\87\51\77\48\54\51\106\122\49\51\76\52\101\51\77\69\86\51\109\73\49\51\73\57\55\51\77\76\117\51\77\119\81\51\77\76\119\51\56\103\73\51\76\77\51\51\54\77\83\51\77\117\100\51\72\75\84\51\77\49\107\51\108\82\53\51\76\78\69\51\76\114\55\51\109\74\74\51\76\78\72\51\105\55\73\51\97\52\51\51\65\65\69\51\101\80\68\51\55\120\55\51\76\75\75\51\52\121\86\51\109\75\77\51\104\77\57\51\109\86\67\51\109\114\118\51\67\84\85\51\72\50\56\51\67\79\105\51\108\85\118\51\103\84\105\51\104\68\99\51\109\103\87\51\107\98\83\51\76\57\51\51\104\76\73\51\53\119\57\51\72\76\75\51\76\90\50\51\105\81\107\51\57\48\51\51\55\112\68\51\74\80\51\51\66\107\106\51\68\99\111\51\102\111\117\51\54\55\53\51\104\57\114\51\105\81\66\51\104\88\120\51\72\100\104\51\74\103\86\51\50\115\85\51\77\75\104\51\56\110\49\51\73\77\54\49\49\51\75\67\99\51\77\83\49\51\108\108\108\51\108\122\68\51\66\54\69\51\65\77\72\51\78\51\68\51\106\101\57\51\101\56\82\51\67\53\90\50\73\54\50\50\86\50\54\110\50\54\51\50\49\107\51\49\116\122\51\72\113\80\51\106\69\78\51\104\81\115\51\72\54\110\51\105\74\106\51\78\53\118\51\105\78\121\51\55\109\54\51\99\84\77\51\73\88\86\51\52\109\115\51\107\108\53\51\70\49\107\51\104\102\66\51\109\115\81\51\74\118\57\51\70\105\73\51\67\109\111\51\107\104\110\51\76\117\49\51\75\100\88\51\104\48\99\51\74\56\57\51\56\56\121\51\67\66\57\51\106\56\99\51\74\89\75\51\107\87\108\51\110\52\53\51\76\84\76\51\100\88\52\51\103\102\70\51\77\73\116\51\74\90\107\51\72\106\100\51\110\49\56\51\74\56\101\51\100\79\68\51\76\87\83\51\75\54\48\51\71\73\110\51\73\120\74\51\109\84\107\51\108\99\50\51\109\84\77\51\76\120\76\51\109\81\48\51\108\120\78\51\109\116\113\51\109\81\51\51\56\56\68\51\76\50\56\51\110\48\54\51\107\68\103\51\108\98\57\51\69\83\54\51\107\108\118\51\104\72\51\51\109\78\51\51\72\80\50\51\78\56\71\51\109\113\85\51\77\102\117\51\108\52\119\51\108\120\121\51\109\56\82\51\98\52\113\51\109\67\79\51\72\109\49\51\68\81\50\51\102\114\120\51\77\57\82\51\75\77\82\51\68\50\89\51\99\56\89\51\77\67\77\51\99\57\79\51\74\119\104\51\54\79\48\51\71\68\52\51\55\51\80\51\105\118\68\51\109\100\48\51\103\53\106\51\54\65\48\51\76\52\57\51\77\57\48\51\57\72\50\51\65\107\113\51\107\89\50\51\107\70\104\51\71\88\57\51\55\75\56\51\74\83\78\51\55\51\80\51\56\57\106\51\72\73\53\51\100\112\104\51\110\50\52\51\77\53\81\51\77\114\72\51\98\66\49\51\73\117\57\51\71\100\57\51\74\69\51\51\98\80\110\51\57\67\122\51\51\119\65\51\99\52\88\51\108\72\115\51\51\113\115\50\50\55\49\97\50\50\122\50\51\48\50\49\116\51\106\85\48\51\100\86\52\51\108\76\74\51\103\77\78\51\57\55\110\51\98\82\53\51\109\65\52\51\109\118\114\51\77\100\106\51\77\72\108\51\109\79\102\51\53\102\52\51\53\81\50\51\104\110\57\51\100\48\100\51\75\50\73\51\76\77\54\51\102\53\50\51\67\98\69\51\97\55\48\51\56\50\83\51\102\100\50\51\77\55\84\51\104\78\77\51\106\106\114\51\98\68\52\51\108\109\90\51\110\55\122\51\108\55\75\51\107\79\114\51\77\112\122\51\102\113\49\51\110\56\52\51\108\48\70\51\109\116\82\51\55\50\54\51\106\77\114\51\101\119\81\51\109\55\54\51\106\56\50\51\107\107\113\51\110\48\66\51\109\65\88\51\110\48\68\51\104\87\97\51\54\77\67\51\77\55\100\51\54\117\68\51\66\51\87\51\102\69\77\51\109\84\49\51\77\55\73\51\78\52\52\51\75\54\87\51\70\100\85\51\105\83\55\51\71\112\85\51\51\98\116\51\69\48\112\51\105\107\107\51\76\77\51\51\109\56\73\51\78\49\68\51\71\48\48\51\109\113\115\51\105\57\77\51\78\53\50\51\109\120\121\51\109\49\78\51\108\114\56\51\73\57\82\51\107\116\81\51\75\48\49\51\75\49\121\51\106\115\117\51\76\50\72\51\55\121\110\51\75\81\80\51\55\51\112\51\100\50\90\51\77\107\66\51\108\108\55\51\100\80\55\51\105\50\57\51\101\67\108\51\56\110\85\51\105\80\76\51\99\52\111\51\57\99\48\51\107\56\111\51\100\72\53\51\54\87\73\51\77\78\100\51\56\50\72\51\72\104\112\51\72\73\53\51\56\72\105\51\72\79\85\51\54\56\98\51\67\56\86\51\71\76\88\51\100\103\102\51\75\51\89\51\68\89\70\51\109\89\57\51\77\75\50\51\106\112\104\51\107\120\113\51\106\57\88\51\55\106\86\51\65\103\78\51\108\115\103\51\97\98\66\51\70\111\90\51\105\74\104\51\76\83\79\51\51\108\72\51\101\81\74\51\105\106\68\51\107\114\115\51\100\72\113\51\102\88\122\51\99\48\113\51\68\109\56\51\77\115\106\49\48\50\49\112\50\54\72\50\53\74\50\50\76\50\50\87\49\101\50\54\80\50\53\54\50\50\108\51\97\87\108\51\53\73\53\51\109\77\114\51\51\55\97\51\72\53\121\51\75\115\74\51\105\53\51\51\72\98\105\51\68\69\57\51\76\84\80\51\75\101\68\51\54\100\66\51\99\71\112\51\73\115\67\51\108\111\109\51\71\97\105\51\107\57\85\51\53\71\104\51\104\102\121\51\101\86\113\51\109\72\88\51\76\112\110\51\77\108\113\51\78\52\81\51\76\116\102\51\77\73\50\51\109\119\80\51\78\48\122\51\108\80\85\51\76\81\70\51\55\86\49\51\74\89\54\51\109\113\67\51\67\54\70\51\74\109\119\51\65\89\50\51\108\73\112\51\74\81\102\51\104\99\72\51\109\109\55\51\56\56\121\51\102\56\122\51\107\69\50\51\107\97\80\51\75\87\76\51\109\109\68\51\109\52\79\51\107\72\49\51\55\49\55\51\74\81\85\51\98\79\71\51\109\116\101\51\75\65\87\51\69\50\97\51\73\49\66\51\75\120\98\51\70\54\54\51\70\49\82\51\77\56\110\51\109\81\118\51\77\117\73\51\71\56\69\51\103\48\65\51\106\103\110\51\54\53\71\51\105\49\84\51\77\50\50\51\110\99\89\51\109\50\52\51\110\56\84\51\56\73\103\51\100\121\56\51\105\90\52\51\77\53\109\51\66\53\107\51\53\67\107\51\70\55\74\51\110\67\73\51\72\80\121\51\71\48\120\51\107\70\118\51\97\113\88\51\73\113\122\51\107\48\88\51\76\50\105\51\50\112\66\51\109\57\51\51\74\108\57\51\73\50\54\49\50\51\103\114\119\51\67\52\111\51\72\112\90\51\77\89\77\51\53\68\50\51\104\54\53\51\72\113\55\51\107\85\48\51\72\68\97\51\76\100\65\51\107\121\54\51\54\72\75\51\71\84\116\51\56\84\103\50\80\48\51\53\48\107\51\101\56\48\51\105\114\55\51\102\103\83\51\105\70\56\51\66\87\51\51\107\74\110\51\77\115\50\51\103\97\48\51\71\105\53\51\97\54\53\51\51\100\52\50\54\115\50\51\57\50\52\107\50\54\48\50\77\48\51\75\103\99\51\67\112\88\51\77\122\48\51\73\51\87\51\57\113\75\51\109\76\122\51\78\69\111\51\75\97\72\51\104\79\97\51\104\55\117\51\109\97\89\51\74\81\104\51\73\52\55\51\52\77\56\51\74\106\108\51\103\98\68\50\49\55\51\51\73\55\51\100\87\100\51\77\120\98\51\76\90\120\50\54\107\51\109\87\116\51\107\100\110\51\75\88\55\51\76\48\51\51\72\114\109\51\71\113\114\51\76\48\56\51\110\48\115\51\77\112\88\51\78\56\49\51\78\97\118\51\75\54\65\51\76\48\69\51\77\113\50\51\106\110\107\51\55\50\54\51\108\55\87\51\109\80\57\51\74\102\86\51\57\86\110\51\57\90\57\51\71\50\56\51\110\51\79\51\100\56\89\51\73\103\57\51\108\66\68\51\56\68\120\51\53\115\88\51\108\56\51\51\105\56\79\51\68\74\112\51\103\56\49\51\74\89\109\51\98\101\51\51\105\53\120\51\65\90\110\51\78\70\97\51\70\49\80\51\56\109\105\51\73\49\69\51\106\53\102\51\77\56\111\51\76\120\120\51\106\67\88\51\69\50\84\51\110\102\107\51\65\98\48\51\108\121\113\51\102\70\66\51\109\85\119\51\98\53\81\51\74\85\75\51\65\54\83\51\103\48\119\51\107\81\78\51\53\48\107\51\70\50\82\51\77\99\99\51\67\106\80\51\74\57\118\51\77\57\83\51\108\121\84\51\110\57\55\51\56\51\111\51\97\113\100\51\75\70\66\51\55\73\50\51\99\52\122\51\99\105\118\51\74\122\112\51\110\53\98\51\51\102\107\51\55\112\68\51\107\109\97\51\108\104\52\51\104\87\49\51\108\83\57\51\109\107\67\51\106\57\98\51\71\49\55\51\109\57\118\51\102\83\109\51\72\81\49\51\56\78\50\51\50\114\78\51\67\73\88\51\108\57\85\51\101\73\97\51\107\118\50\51\73\114\56\51\110\97\55\51\72\85\85\51\102\103\120\51\68\72\112\50\105\54\50\52\48\50\52\67\50\51\122\50\51\106\50\54\112\49\78\51\109\104\104\51\77\83\77\51\51\66\116\51\57\55\78\51\71\50\54\51\77\103\48\51\71\50\88\51\72\114\76\51\55\56\77\51\105\83\108\51\53\54\101\51\74\51\84\51\76\112\109\51\76\116\67\51\110\52\112\51\77\105\48\51\110\69\71\51\78\52\83\51\78\48\89\51\73\75\100\51\109\76\87\51\106\57\114\51\105\120\100\51\75\90\73\51\55\49\55\51\98\85\114\51\110\98\77\51\76\48\106\51\54\100\54\51\97\120\81\50\51\98\51\51\106\109\51\77\66\57\51\104\111\53\51\107\72\106\51\77\77\48\51\53\74\57\51\101\83\69\51\109\113\70\51\78\98\56\51\73\112\68\51\53\117\65\51\110\98\66\51\74\89\103\51\98\119\86\51\70\49\54\51\106\53\49\51\100\111\56\51\56\119\54\51\102\74\74\51\70\113\56\51\106\82\73\51\99\98\99\51\56\76\50\51\108\66\104\51\97\67\112\51\104\51\85\51\54\68\66\49\119\51\105\52\105\51\105\107\75\51\76\110\57\51\102\74\48\51\107\101\108\51\76\78\99\51\107\101\78\51\109\117\72\51\74\67\87\51\77\53\97\51\108\120\122\51\57\53\70\51\98\116\121\51\76\85\82\51\56\73\49\51\51\98\69\51\100\80\115\51\77\82\48\51\76\71\116\51\77\114\72\51\69\108\57\51\74\50\103\51\75\106\56\51\78\49\86\51\107\120\81\51\69\76\111\51\56\53\54\51\51\73\68\51\75\68\102\51\99\52\90\51\67\52\106\51\108\103\109\51\76\99\101\51\54\79\71\51\72\73\65\51\109\52\55\51\107\90\71\51\100\66\119\51\69\112\97\51\53\110\49\51\103\67\121\51\106\72\85\51\53\78\66\51\72\53\73\51\55\68\54\51\99\52\48\51\77\103\100\51\78\57\115\51\52\121\118\51\76\89\119\51\110\50\82\51\104\108\118\51\71\56\86\51\53\51\81\51\108\115\103\51\109\51\67\51\77\75\87\51\107\114\78\51\75\121\85\51\73\114\65\51\76\101\109\51\65\109\52\50\101\90\50\114\111\50\52\98\50\54\75\50\49\71\50\51\48\50\54\56\50\50\101\50\52\115\51\74\54\113\51\74\112\77\51\109\51\65\51\108\90\87\51\53\102\57\51\107\88\53\51\52\77\115\51\101\113\57\51\107\79\75\51\55\52\122\51\107\111\109\51\109\119\107\51\74\74\122\51\78\48\86\51\105\111\70\51\109\76\84\51\78\108\51\51\74\52\50\51\109\76\119\51\73\67\80\51\56\120\112\51\78\105\57\51\106\81\115\51\57\113\67\51\55\48\53\51\53\115\105\51\53\115\75\51\101\75\68\51\78\52\72\51\74\105\119\51\110\109\48\51\101\52\120\51\78\52\66\51\103\67\54\51\75\83\79\51\68\74\81\51\70\85\51\51\100\48\79\51\70\51\97\51\105\71\83\51\76\51\76\51\78\98\52\51\104\74\108\51\77\51\107\51\109\73\99\51\76\70\109\51\106\113\70\51\105\111\118\51\75\122\86\51\57\87\88\51\99\66\57\51\110\72\75\51\70\105\115\51\72\87\72\51\53\85\113\51\108\121\98\51\108\102\66\51\104\116\54\51\109\113\113\51\74\90\84\51\78\49\70\51\74\118\90\51\104\52\118\51\109\114\70\51\109\70\118\51\70\106\54\51\110\102\72\51\74\57\53\51\100\66\67\51\105\57\107\51\75\117\111\51\74\54\100\51\53\68\50\51\74\76\71\51\67\74\100\51\99\89\49\51\54\54\116\51\98\48\79\51\100\85\109\51\77\85\78\51\50\85\119\51\102\119\80\51\99\112\53\51\110\67\75\51\67\48\55\51\56\72\103\51\106\53\117\51\110\106\68\51\66\122\54\51\109\67\101\51\78\106\103\51\65\102\82\51\97\75\90\51\110\56\87\51\69\80\55\51\105\76\115\51\110\50\48\51\55\51\67\51\101\67\78\51\72\106\72\51\65\52\118\51\75\56\53\51\53\88\77\51\98\48\114\51\102\83\80\51\54\87\105\51\68\50\106\51\107\56\86\51\76\86\87\51\106\117\49\51\55\90\105\51\104\65\68\51\70\116\69\51\110\54\119\51\75\86\57\51\69\73\97\50\98\114\50\50\117\50\52\98\50\52\120\51\54\57\75\51\76\54\83\51\73\122\74\51\104\77\113\51\75\53\114\51\73\68\119\51\57\113\101\51\54\49\76\51\109\86\56\51\109\120\100\51\78\56\98\51\107\80\108\51\57\120\111\51\54\115\68\51\53\97\81\51\102\110\84\51\72\87\50\51\78\55\55\51\109\51\106\51\104\51\52\51\77\109\51\51\75\119\69\51\108\105\114\51\107\54\80\51\76\102\113\51\98\114\117\51\68\54\57\51\78\69\122\51\107\112\100\51\76\100\100\51\101\119\65\51\107\101\57\51\103\115\51\51\76\113\50\51\99\49\102\51\69\57\68\51\99\118\65\51\69\87\104\51\97\55\100\51\101\78\121\51\108\69\120\51\110\101\56\51\78\107\85\51\53\103\76\51\78\69\98\51\76\67\49\51\110\65\84\51\109\112\121\51\106\90\52\51\110\97\87\51\109\116\112\51\78\65\89\51\78\56\54\51\72\83\48\51\108\106\85\51\68\48\112\51\106\56\120\51\76\117\72\51\103\52\56\51\99\110\81\51\107\80\89\51\109\74\104\51\110\53\52\51\67\78\113\51\69\111\122\51\107\73\99\51\110\56\110\51\73\53\81\51\53\121\55\51\57\78\51\51\78\102\119\51\110\110\109\51\70\115\109\51\99\74\122\51\110\50\53\51\78\53\109\51\73\68\88\51\77\118\48\51\68\67\77\51\76\108\65\51\57\104\83\51\76\50\48\51\54\55\53\51\110\71\65\51\98\75\74\51\103\57\52\51\109\118\50\51\107\66\122\51\68\117\116\51\67\51\119\51\78\74\105\51\104\57\108\51\50\114\78\51\73\105\53\51\110\113\77\51\67\111\118\51\68\50\87\51\74\50\75\51\71\71\121\51\106\57\76\51\110\57\51\51\56\78\109\51\52\121\118\51\109\54\98\51\68\90\104\51\107\49\53\51\76\50\76\51\70\112\50\51\106\51\52\49\69\50\49\102\50\49\67\51\110\75\75\51\109\68\107\51\99\70\82\51\78\68\71\51\103\53\84\51\68\104\112\51\99\65\68\51\78\82\108\51\78\111\55\51\77\87\100\51\107\114\120\51\110\79\99\51\66\109\103\51\70\90\87\51\98\77\74\51\76\52\65\51\57\74\118\51\77\72\118\51\106\98\116\51\78\52\110\51\77\56\49\51\108\84\100\51\110\101\70\51\109\56\52\51\109\119\111\51\109\56\54\51\110\69\74\51\109\66\112\51\55\71\67\51\57\87\121\51\103\78\108\51\55\111\105\51\75\103\78\51\105\87\109\51\99\77\55\51\76\81\52\51\108\51\69\51\108\81\54\51\106\74\52\51\72\82\105\51\77\84\55\51\105\57\68\51\76\113\68\51\57\118\110\51\71\82\55\51\106\49\70\51\102\85\85\51\99\73\57\51\110\110\52\51\57\119\71\51\108\97\115\51\78\80\67\51\76\65\117\51\74\102\102\51\100\53\89\51\70\56\85\51\105\68\56\51\77\88\51\51\73\104\49\51\106\106\74\51\76\117\53\51\106\98\107\51\109\73\75\51\71\99\57\51\53\83\108\51\75\105\105\51\109\81\80\51\104\99\84\51\77\88\117\51\73\108\98\51\75\98\49\51\109\85\71\51\110\73\120\51\77\81\119\51\78\77\72\51\78\56\109\51\78\81\51\51\76\90\52\51\51\70\75\51\67\52\118\51\77\57\54\51\110\57\107\51\70\54\121\51\67\84\54\51\54\111\71\51\99\52\118\51\107\77\90\51\110\116\105\51\107\98\83\51\76\49\112\51\51\102\75\51\103\116\99\51\67\52\108\51\74\50\79\51\51\110\76\51\101\51\54\51\74\99\110\51\105\101\74\51\110\56\114\51\78\81\111\51\110\102\112\51\67\84\88\51\97\108\55\51\78\114\48\51\53\100\50\51\107\90\70\51\78\49\78\51\54\55\50\51\54\55\70\51\55\105\118\51\109\122\57\51\110\110\70\51\55\51\67\51\71\53\49\51\78\99\54\51\109\71\104\51\77\54\105\50\55\55\50\116\48\50\50\66\50\51\112\50\54\110\50\50\48\50\117\75\50\54\57\50\54\114\50\50\52\50\54\49\51\106\51\55\51\105\122\112\51\107\107\52\51\103\57\87\51\99\49\49\51\78\78\83\51\55\101\104\51\108\118\122\51\110\78\118\51\75\82\115\51\75\103\106\51\102\89\50\51\75\112\104\51\53\102\67\51\99\49\80\51\76\113\65\51\54\99\85\51\100\68\117\51\67\56\49\51\70\53\50\51\78\49\53\51\108\48\119\51\75\111\99\51\76\48\121\51\76\77\101\51\76\53\102\51\71\97\106\51\109\108\78\51\70\76\88\51\78\97\115\51\77\48\56\51\72\107\97\51\110\56\50\51\110\83\119\51\77\48\99\51\78\115\121\51\78\73\54\51\110\56\55\51\68\76\55\51\110\111\115\51\78\86\84\51\55\49\55\51\107\87\55\51\54\57\121\51\75\100\113\51\108\84\88\51\74\49\50\51\108\77\109\51\75\116\52\51\78\51\86\51\110\66\57\51\53\85\65\51\77\113\73\51\104\70\78\51\107\119\105\51\78\76\117\51\71\98\68\51\102\57\52\51\70\87\84\51\73\49\55\51\53\73\56\51\53\111\76\51\56\66\77\51\78\109\97\51\77\53\52\51\71\48\50\51\78\112\87\51\105\68\76\51\110\112\121\51\78\56\75\51\77\56\81\51\72\84\103\51\101\55\57\51\102\79\66\51\104\117\52\51\54\53\86\51\102\66\51\51\98\75\115\51\102\115\108\51\107\98\115\51\103\52\106\51\76\72\73\51\108\85\99\51\72\52\74\51\54\79\48\51\55\88\109\51\110\117\49\51\110\120\82\51\105\65\52\51\56\65\88\51\78\120\98\51\76\68\101\51\77\57\112\51\76\76\50\51\110\56\83\51\75\117\68\51\110\107\81\51\65\71\103\51\105\65\115\51\75\89\51\51\54\55\53\51\108\78\90\51\107\102\65\51\76\53\68\51\105\109\106\51\109\86\49\51\68\112\72\51\108\72\101\51\70\111\53\51\54\53\73\51\55\113\54\51\53\78\51\51\69\84\77\51\74\116\56\51\51\112\75\51\76\50\122\51\53\90\83\51\78\117\113\51\108\83\115\51\106\88\99\51\74\55\50\51\103\85\74\51\73\51\51\51\76\76\111\51\107\49\104\50\54\52\50\49\87\49\98\50\54\54\49\49\50\54\102\50\52\53\51\77\72\113\51\54\66\99\51\110\52\74\51\76\80\74\51\77\108\79\51\78\90\48\51\105\120\108\51\108\55\76\51\109\84\78\51\110\56\51\51\110\83\88\51\78\105\53\51\75\108\73\51\103\122\104\51\102\72\57\51\77\74\55\50\50\51\51\75\49\85\51\56\106\116\51\103\101\119\51\78\51\114\51\77\77\49\51\74\98\100\51\78\72\71\51\68\54\51\51\68\100\84\51\105\48\52\51\69\101\90\51\109\69\73\51\103\114\81\51\110\70\49\51\72\110\65\51\110\52\55\51\78\68\121\51\110\73\73\51\66\52\49\51\74\52\103\51\77\102\98\51\69\70\102\51\77\102\100\51\71\90\121\51\75\76\117\51\72\120\53\51\78\90\97\51\109\52\112\51\55\49\55\51\100\106\100\51\109\77\81\51\77\109\83\51\77\102\52\51\71\115\104\51\106\107\56\51\98\84\78\51\109\70\82\51\75\112\88\51\77\102\80\51\77\67\54\51\77\110\56\51\110\98\89\51\107\55\78\51\75\69\116\51\79\48\55\51\68\112\77\51\105\117\102\51\107\106\98\51\71\89\97\51\70\50\67\51\76\72\55\51\107\73\104\51\110\71\77\51\57\53\114\51\70\49\70\51\66\107\106\51\103\112\82\51\54\87\90\51\111\51\81\51\105\53\84\51\75\102\65\51\56\53\53\51\78\82\114\51\54\87\97\51\108\53\68\51\74\68\55\51\54\54\116\51\57\48\109\51\109\117\80\51\110\120\50\51\56\66\83\51\107\85\53\51\110\109\84\51\110\88\68\51\78\77\86\51\77\118\71\51\99\49\119\51\79\48\108\51\54\104\98\51\104\57\109\51\71\68\69\51\74\83\109\51\72\77\70\51\105\118\115\51\76\108\75\51\75\121\113\51\104\54\73\51\99\65\87\50\55\66\50\54\49\50\54\53\50\52\76\49\65\51\100\113\106\50\51\110\51\107\121\119\51\109\68\104\51\110\68\69\51\110\51\102\51\51\73\80\51\66\98\109\51\109\108\106\51\109\101\52\51\73\103\67\51\78\83\48\51\73\56\49\51\108\65\118\51\53\74\57\51\110\101\83\51\107\100\87\51\72\99\104\51\70\73\110\51\77\77\56\51\110\104\74\51\73\116\100\51\71\66\68\51\100\106\83\51\51\55\65\51\76\88\55\51\51\56\53\51\76\77\51\51\68\105\104\51\54\51\52\51\98\83\120\51\74\114\50\51\110\121\122\51\110\75\88\51\109\52\69\51\78\79\106\51\78\86\57\51\77\119\110\51\110\101\72\51\110\86\99\51\78\76\52\51\106\48\69\51\77\85\97\51\53\73\53\51\109\85\55\51\78\72\84\51\106\110\113\51\54\49\82\51\57\117\78\51\52\109\83\51\77\102\102\51\104\56\68\51\104\122\88\51\73\56\107\51\108\81\49\51\77\105\116\51\78\121\83\51\55\57\89\51\110\73\110\51\51\115\104\51\101\122\86\51\78\80\81\51\72\80\122\51\108\120\115\51\77\88\118\51\71\83\77\51\77\120\88\51\111\51\102\51\110\49\73\51\111\51\72\51\75\120\72\51\78\109\73\51\57\103\88\51\66\84\90\51\55\51\80\51\55\119\116\51\77\103\122\51\53\100\50\51\66\72\54\51\74\54\98\51\54\87\65\51\54\54\109\51\57\72\70\51\77\57\99\51\75\109\119\51\104\101\50\51\55\98\97\51\100\84\83\51\77\112\113\51\65\108\55\51\69\55\88\51\75\70\72\51\65\65\48\51\78\57\112\51\106\112\57\51\109\82\107\51\53\79\57\51\56\85\115\51\109\78\75\51\55\107\105\51\109\86\68\51\107\81\98\51\108\82\74\51\99\79\121\51\110\57\109\51\71\49\99\51\53\74\107\51\107\102\90\51\73\54\52\51\110\53\111\51\57\73\67\51\73\50\120\51\75\84\122\51\55\51\75\51\74\100\55\51\108\68\119\51\108\122\99\51\55\90\114\51\106\97\112\51\72\54\106\51\108\86\88\51\71\105\57\51\108\112\69\51\53\49\53\50\68\57\49\75\50\51\48\50\53\56\50\52\69\49\79\51\105\78\57\50\49\107\51\99\53\87\51\106\51\57\51\57\50\50\51\103\113\77\51\65\107\89\51\100\69\84\51\105\107\51\51\73\49\57\51\76\48\54\51\103\73\113\51\110\115\83\51\110\90\49\51\106\55\84\51\78\115\118\51\110\73\51\51\109\113\49\51\107\68\56\51\78\83\122\51\54\52\74\51\103\97\122\51\108\102\71\51\111\53\56\51\57\101\98\51\109\115\115\51\76\54\89\51\111\50\105\51\72\111\71\51\99\54\79\51\100\87\117\51\108\66\51\51\100\111\55\51\111\50\111\51\78\104\85\51\108\106\113\51\78\73\101\51\76\80\89\51\109\112\101\51\108\81\48\51\77\98\117\51\77\73\84\51\104\118\87\51\69\70\70\51\98\89\97\51\73\74\86\51\110\98\111\51\79\51\50\51\110\102\51\51\67\71\120\51\109\84\66\51\111\51\54\51\51\55\65\51\79\51\56\51\65\69\111\51\108\82\50\51\106\68\120\51\77\110\53\51\109\49\73\51\111\48\51\51\77\56\80\51\76\85\110\51\103\103\111\51\77\69\52\51\108\68\112\51\70\120\48\51\103\84\50\51\77\85\81\51\53\75\68\51\65\71\65\51\104\69\50\51\57\90\72\51\105\115\100\51\104\101\55\51\107\114\54\51\102\75\101\51\109\114\85\51\72\50\54\51\78\53\105\51\110\85\56\51\75\85\56\51\72\76\68\51\57\121\84\51\104\49\65\51\76\82\88\51\77\111\54\51\105\89\120\51\103\72\117\51\50\113\113\51\78\54\57\51\103\104\55\51\75\98\100\51\65\70\90\51\53\48\75\51\74\88\51\51\57\72\84\51\51\110\100\51\75\117\117\51\70\70\54\51\54\87\97\51\57\73\102\51\107\121\111\51\77\100\70\51\78\75\67\51\72\122\66\51\79\56\56\51\110\114\56\51\101\118\65\50\100\57\50\54\51\51\53\53\108\50\52\48\50\49\122\50\54\104\50\51\56\50\54\97\51\106\65\112\51\70\112\56\51\78\87\113\51\57\56\52\51\99\80\88\51\55\48\53\51\104\78\110\51\110\65\113\51\55\117\57\51\109\48\53\51\107\111\79\51\76\120\105\51\111\50\49\51\78\65\117\51\79\56\89\51\107\108\102\51\110\52\116\51\78\118\100\51\77\108\87\51\98\120\49\51\78\100\120\51\105\115\51\51\78\52\65\51\73\84\57\51\72\78\70\51\103\90\86\51\77\48\83\51\52\90\49\51\71\102\75\51\110\89\77\51\105\83\90\51\98\73\65\51\76\87\69\51\98\83\68\51\104\48\55\51\108\97\120\51\65\74\57\51\105\84\56\51\110\87\57\51\54\85\100\51\102\56\90\51\108\66\51\51\77\49\99\51\71\82\113\51\76\55\86\51\109\117\66\51\108\77\51\51\111\51\53\51\74\48\118\50\49\77\51\56\82\68\51\77\52\77\51\70\52\100\51\98\68\48\51\51\66\103\50\50\76\51\99\54\85\51\68\78\75\51\75\68\102\51\57\88\85\51\109\56\106\51\74\82\120\51\110\53\49\51\73\85\48\51\108\114\54\51\101\75\111\51\109\121\48\51\105\76\73\51\103\75\82\51\57\71\88\51\75\110\50\51\106\107\76\51\108\57\114\51\75\98\83\51\72\100\70\51\79\55\107\51\53\67\82\51\73\113\105\51\105\105\53\51\111\55\49\51\53\100\79\51\77\50\65\51\53\88\109\51\109\57\104\51\71\49\50\51\51\103\73\51\103\52\108\51\78\116\90\51\54\119\85\51\56\51\117\51\100\89\112\51\104\69\68\51\54\53\113\51\107\67\57\51\53\110\53\51\69\116\114\51\104\101\102\51\67\52\111\51\111\52\66\51\108\79\69\51\75\85\98\51\109\118\70\51\110\81\112\51\72\108\72\51\55\75\51\51\77\122\51\49\50\51\76\107\106\51\106\103\113\51\103\53\78\51\70\71\103\51\111\66\100\51\107\89\118\51\98\119\51\51\70\103\119\50\54\57\49\100\50\50\116\50\54\51\50\50\48\51\97\82\54\51\77\70\121\51\107\49\82\51\110\68\67\51\79\49\101\51\74\65\77\51\74\69\77\51\77\69\51\51\56\115\112\51\109\87\120\51\79\53\55\51\77\69\54\51\103\119\52\51\79\53\97\51\107\54\76\51\108\87\73\51\74\56\55\51\108\51\83\51\76\66\71\51\73\120\52\51\78\101\87\51\104\67\108\51\100\79\54\51\75\87\107\51\109\120\57\51\78\52\53\51\97\73\111\51\69\74\81\51\77\106\97\51\107\120\52\50\54\107\51\78\51\108\51\78\86\90\51\67\98\56\51\109\69\102\51\68\74\107\51\76\51\65\51\78\49\53\51\79\57\112\51\57\120\73\51\107\75\74\51\52\90\49\51\54\68\68\51\100\53\56\51\78\52\104\51\103\50\89\51\107\83\49\51\73\52\80\51\79\50\48\51\74\48\55\51\106\82\55\51\79\67\53\51\108\52\72\51\111\99\55\51\111\54\49\51\74\86\51\51\66\89\70\51\76\109\51\51\55\119\84\51\111\54\79\51\110\87\107\51\108\120\85\51\79\51\101\51\109\49\109\51\109\106\105\51\78\84\97\51\71\107\80\51\97\53\88\51\108\67\113\51\66\75\48\51\72\108\81\51\98\107\106\51\106\103\90\51\111\52\57\51\57\67\54\51\98\75\72\51\106\50\49\51\55\99\65\51\103\112\105\51\111\52\99\51\104\54\49\51\79\48\84\51\77\110\116\51\105\73\49\51\78\85\98\51\55\112\68\51\109\79\48\51\53\121\55\51\70\111\56\51\78\110\57\51\110\49\78\51\70\83\51\51\53\79\57\51\53\121\122\51\68\67\100\51\106\104\98\51\55\114\121\51\55\121\106\51\106\57\80\51\77\117\122\51\100\51\55\51\53\78\53\51\55\89\74\51\111\49\54\51\55\51\80\51\74\80\53\51\98\54\57\51\77\80\78\51\105\70\52\51\102\116\50\50\105\54\50\52\54\50\50\53\50\52\102\50\49\71\51\52\51\83\51\108\101\104\51\77\118\80\51\57\50\51\51\106\51\54\51\106\109\103\51\70\116\101\51\103\73\53\51\72\73\86\51\111\49\73\51\110\54\104\51\99\80\88\51\75\118\117\51\109\112\84\51\53\54\97\51\108\102\48\51\53\103\108\51\72\103\48\51\110\104\122\51\77\116\76\51\78\122\50\51\78\105\50\51\111\99\54\51\78\79\110\51\106\107\53\51\97\88\57\51\108\103\119\51\75\120\49\51\110\114\84\51\57\81\99\51\70\122\120\51\101\70\53\51\69\49\113\51\99\56\49\51\111\67\100\51\110\105\75\51\77\112\105\51\100\74\112\51\72\103\75\51\73\99\110\51\79\51\48\51\75\100\68\51\109\55\85\51\76\106\112\51\54\115\67\51\103\79\67\51\65\99\76\51\53\110\79\51\103\52\104\51\106\48\90\51\99\56\50\51\108\105\77\51\111\57\56\51\67\87\57\51\74\102\72\51\105\116\56\51\110\90\78\51\107\119\72\51\67\113\76\51\104\83\68\51\97\99\104\51\102\68\51\51\73\100\104\51\111\68\67\51\109\67\71\51\110\80\83\51\78\80\88\51\107\73\52\51\110\77\99\51\105\104\73\51\72\75\87\51\78\102\102\51\78\77\71\51\77\85\106\51\109\70\121\50\56\54\51\57\71\120\51\66\104\54\51\76\104\50\51\76\115\50\51\74\83\82\51\56\98\115\51\110\110\67\51\71\116\53\51\78\109\76\51\53\100\56\51\97\70\79\51\67\79\115\51\77\78\82\51\79\55\114\51\97\48\51\51\71\83\86\51\67\52\111\51\77\75\106\51\51\70\75\51\65\70\111\51\105\109\78\51\53\121\55\51\97\86\66\51\104\54\68\51\105\54\69\51\103\108\108\51\105\69\116\51\53\106\107\51\103\100\69\51\111\100\89\51\70\50\56\51\54\119\97\51\111\69\111\51\78\57\54\51\79\68\85\51\101\108\50\51\50\85\108\51\77\83\48\51\107\53\49\51\105\110\109\51\110\54\102\51\55\122\114\51\103\73\53\51\104\81\114\51\111\98\104\51\106\54\89\51\104\90\65\51\78\68\67\51\73\51\55\51\67\65\73\51\51\102\52\50\52\50\51\55\84\48\50\52\53\50\51\49\50\51\54\49\72\50\54\72\50\49\90\50\51\51\50\54\98\50\49\90\51\53\81\50\51\67\101\115\51\109\122\122\51\53\110\66\51\67\117\89\51\100\71\52\51\78\100\88\51\107\119\114\51\103\70\102\51\77\88\76\51\102\104\76\51\78\105\77\51\76\48\89\51\76\88\50\51\76\109\70\51\65\55\70\51\109\72\114\51\70\65\113\51\111\50\116\51\76\105\109\51\74\89\57\51\68\87\107\51\107\90\83\51\107\68\119\51\102\76\106\51\111\53\102\51\56\56\121\51\70\72\71\51\111\53\73\51\102\105\115\51\78\48\108\51\108\85\97\50\54\75\51\98\82\81\49\56\51\74\50\54\51\110\111\70\51\111\56\83\51\78\79\104\51\79\71\70\51\74\110\101\51\108\112\112\51\78\108\49\51\73\71\51\51\111\54\48\51\78\79\111\51\111\54\50\51\76\120\82\51\77\88\116\51\106\53\99\51\111\54\112\51\106\53\101\51\106\79\56\51\79\68\106\51\67\56\110\51\110\49\106\51\104\85\90\51\79\51\106\51\74\103\102\51\72\105\53\51\71\68\111\51\107\113\89\51\110\87\87\51\71\80\67\51\74\79\69\51\54\119\65\51\107\113\104\51\108\52\49\51\110\116\112\51\108\68\115\51\57\80\106\51\109\56\117\51\110\49\112\51\69\107\101\51\97\52\118\51\110\57\50\51\76\67\120\51\55\120\81\51\98\48\54\51\109\103\110\51\79\72\97\51\69\51\118\51\108\76\51\51\77\86\71\51\57\117\52\51\54\55\98\51\75\113\72\51\74\50\54\51\54\54\116\51\53\86\75\51\79\55\87\51\97\76\48\51\100\103\55\51\111\104\52\51\57\111\51\51\54\101\75\51\77\57\89\50\50\109\50\111\83\49\48\50\53\88\50\53\79\49\71\50\50\48\50\50\72\50\53\55\50\114\72\49\100\50\49\72\50\54\70\50\51\100\50\50\55\51\70\55\88\51\78\68\67\51\75\86\55\51\77\49\112\51\51\80\75\51\68\51\81\51\79\52\114\51\110\75\77\51\102\78\74\51\78\78\82\51\111\108\105\51\68\114\49\51\76\78\75\51\71\110\106\51\68\68\85\51\105\106\110\51\108\51\65\51\79\74\57\51\109\48\113\51\67\118\97\51\104\110\105\51\105\84\71\51\67\119\82\51\74\74\54\51\98\55\100\51\51\68\71\51\105\115\100\51\71\55\74\51\79\57\85\51\108\52\53\51\102\87\51\51\57\119\71\51\104\51\48\51\78\87\50\51\77\55\56\51\101\74\122\51\78\104\68\51\106\102\104\51\100\119\81\51\111\99\84\51\52\56\55\51\101\57\54\51\100\53\103\51\107\51\66\51\75\97\81\51\75\83\100\51\75\72\87\51\75\105\101\51\100\65\50\51\108\48\49\51\57\57\119\51\77\48\50\51\106\55\109\51\107\50\53\51\78\111\105\51\106\117\120\51\78\90\51\51\79\56\90\51\110\65\88\51\111\50\54\51\107\83\97\51\68\103\89\51\107\116\105\51\67\87\120\51\106\111\53\51\111\48\49\51\69\116\54\51\71\79\108\51\79\97\55\51\111\107\98\51\78\53\55\51\54\53\71\51\76\49\80\51\53\68\56\51\70\51\100\51\77\114\100\51\110\49\121\51\79\108\51\51\70\74\84\51\110\49\80\51\72\68\55\51\111\51\120\51\104\49\81\51\107\117\101\51\79\76\99\51\98\48\54\51\73\57\120\51\110\99\57\51\111\110\118\51\75\55\113\51\56\110\49\51\69\71\82\51\75\55\117\51\111\101\97\51\53\71\97\51\79\98\48\51\76\114\103\51\111\55\80\51\76\57\77\51\71\112\103\51\78\81\112\51\103\112\79\51\79\111\48\51\53\110\49\51\111\75\84\51\79\51\118\51\97\54\83\51\77\89\52\51\70\50\104\51\108\78\111\51\102\83\77\51\72\69\72\51\108\122\56\51\49\55\75\50\50\57\50\52\50\50\53\72\51\76\101\55\50\49\82\49\82\51\53\49\52\51\108\108\115\51\74\69\69\51\57\55\112\51\78\117\113\51\56\80\50\51\78\82\55\51\78\97\50\51\78\85\86\51\53\112\57\51\107\57\99\51\71\81\110\51\79\53\114\51\106\98\114\51\70\104\87\51\79\113\81\51\111\50\50\51\79\113\83\51\111\73\119\51\73\83\86\51\79\67\56\51\79\54\50\51\71\103\56\51\105\71\83\51\74\86\55\51\78\72\67\51\73\120\48\51\106\49\51\51\110\119\54\51\77\115\118\51\77\69\67\51\71\51\119\51\109\98\48\51\110\86\104\51\99\109\88\51\54\50\88\51\110\87\69\51\111\54\54\51\108\69\119\51\54\49\114\51\110\100\85\51\76\55\65\51\71\50\87\51\110\100\88\51\67\56\49\51\109\70\56\51\78\121\114\51\75\111\66\51\111\54\73\51\76\48\89\51\78\69\52\51\111\74\101\51\110\82\83\51\108\105\70\51\102\49\106\51\109\113\53\51\106\48\118\51\76\84\53\51\68\82\101\51\77\85\99\51\79\78\71\51\77\113\82\51\110\80\118\51\78\84\54\51\111\103\84\51\110\84\56\51\79\68\75\51\111\78\78\51\109\121\49\51\77\53\67\51\108\111\55\51\101\80\83\51\79\55\86\51\75\57\114\51\75\82\49\51\109\74\112\51\103\57\81\51\75\66\83\51\109\103\71\51\53\120\109\51\110\56\56\51\66\122\87\51\53\100\56\51\56\66\86\51\79\48\72\51\73\121\78\51\103\80\55\51\69\51\52\51\74\79\121\51\51\67\85\51\57\109\115\51\72\50\50\51\110\84\69\51\51\78\108\51\56\72\105\51\68\90\54\51\76\121\57\51\53\57\51\51\79\111\66\51\110\70\77\51\98\112\117\51\109\107\51\51\75\88\113\51\106\68\69\51\75\89\101\51\71\111\122\51\52\77\98\51\97\118\56\51\75\56\108\51\102\70\116\51\75\73\117\51\67\89\56\51\54\53\118\51\106\69\55\51\72\105\107\51\51\100\120\50\49\110\50\50\106\50\50\85\49\55\50\50\52\50\52\54\50\53\119\50\101\73\51\109\72\74\51\108\83\84\51\71\109\111\51\66\71\83\51\107\71\101\51\76\50\112\51\108\108\79\51\104\90\103\51\75\110\89\51\110\85\87\51\73\55\114\51\79\110\49\51\67\52\50\51\102\101\55\51\111\102\69\51\103\98\51\51\79\70\103\51\76\102\76\51\77\88\50\51\107\107\86\51\105\116\57\51\75\122\119\51\52\77\56\51\66\56\68\51\109\49\99\51\69\110\87\51\50\114\48\51\108\86\81\51\108\88\56\51\79\113\48\51\75\120\51\51\57\55\65\51\74\73\87\51\99\56\49\51\107\71\78\51\109\80\72\51\111\112\81\51\69\70\70\51\104\78\105\51\78\115\108\51\102\52\55\51\54\83\99\51\72\98\56\51\51\55\82\51\78\106\80\51\55\85\53\51\72\78\79\51\74\74\116\51\79\81\80\51\111\78\55\51\77\56\50\51\111\53\120\51\78\48\87\51\110\79\77\51\111\84\51\51\111\103\108\51\74\55\90\51\98\121\76\51\108\85\102\51\102\82\72\51\74\118\88\51\107\84\106\51\79\82\49\51\75\88\100\51\76\103\102\51\107\116\112\51\79\110\79\51\104\76\49\51\105\53\80\51\66\102\84\51\79\72\117\51\98\122\75\51\107\88\84\51\107\69\89\51\66\55\50\51\110\71\100\51\79\100\122\51\73\73\71\51\53\68\56\51\57\109\114\51\106\115\57\51\72\113\105\51\55\51\110\51\109\53\69\51\97\112\90\51\108\50\53\51\111\101\76\51\105\73\103\51\51\102\107\51\57\73\70\51\70\87\84\51\73\50\70\51\53\106\75\51\68\50\106\51\110\50\71\50\56\54\51\103\120\83\51\110\102\116\51\71\121\54\51\51\103\52\51\103\89\56\51\76\103\87\51\78\50\75\51\98\55\50\51\76\104\50\51\102\98\75\51\79\118\49\51\108\115\69\51\67\70\52\51\71\89\101\51\54\80\120\51\79\49\99\51\79\103\121\51\103\85\112\51\104\90\70\51\76\73\54\51\110\85\115\51\72\109\78\51\75\86\51\51\55\69\54\50\116\48\49\73\49\116\51\50\51\69\50\52\84\50\53\69\51\49\57\118\51\106\112\120\51\111\70\55\51\74\120\89\51\102\104\55\50\54\107\51\109\97\112\51\50\78\82\51\104\106\121\51\79\119\116\51\72\70\57\51\98\53\49\51\110\104\97\51\111\57\54\51\73\68\52\51\110\83\50\51\77\49\52\51\106\70\72\51\105\52\53\51\110\101\86\51\54\117\68\51\97\74\102\51\105\120\55\51\79\106\121\51\75\115\82\51\65\82\85\51\104\75\109\51\65\55\73\51\78\76\72\51\75\114\89\51\53\88\66\51\72\70\87\51\100\114\86\51\77\112\118\51\111\53\117\51\78\48\116\51\110\101\69\51\110\108\48\51\110\86\97\51\79\53\122\51\77\101\121\51\111\84\52\51\111\103\77\51\108\77\52\51\76\119\85\51\74\117\97\51\77\102\56\51\104\86\85\51\56\50\75\51\77\80\74\51\105\56\113\51\51\68\103\51\110\49\67\51\76\67\104\51\70\49\111\51\108\81\66\51\70\49\113\51\106\67\84\51\110\49\104\51\78\98\88\51\78\53\53\51\107\120\71\51\73\57\115\51\76\67\82\51\99\106\66\51\68\80\122\51\55\106\116\51\54\54\84\51\108\75\73\51\77\84\53\51\54\111\71\51\108\100\51\51\105\117\113\51\57\110\78\51\108\104\80\51\100\103\51\51\109\54\72\51\76\89\74\51\78\49\79\51\53\100\73\51\76\57\104\51\76\107\84\51\101\76\48\51\55\88\113\51\70\51\52\51\74\52\76\51\77\49\86\51\103\80\112\51\79\82\99\51\102\70\84\51\77\121\105\51\53\110\53\51\55\80\100\51\76\50\50\51\111\111\67\51\101\76\66\51\111\79\69\51\78\113\80\51\98\75\109\51\78\106\119\51\78\99\97\51\73\53\121\51\66\90\75\51\110\75\48\51\107\98\83\51\103\53\112\51\79\69\85\51\79\105\106\51\65\48\69\51\107\53\57\51\97\114\66\51\108\101\106\51\97\109\71\51\111\119\53\51\109\97\107\51\98\54\104\51\49\105\73\50\49\68\50\52\115\51\52\55\86\50\54\50\49\49\51\76\54\114\51\78\121\99\51\51\98\116\51\71\97\103\51\71\121\121\51\79\105\110\49\56\51\72\98\85\51\79\73\113\51\76\67\48\51\79\105\115\51\78\56\48\51\111\105\117\51\79\71\73\51\78\48\120\51\79\88\105\51\111\78\68\51\80\48\111\51\104\75\73\51\111\54\57\51\76\87\114\51\57\86\57\51\106\73\114\51\110\108\55\51\109\70\73\51\74\52\97\51\53\77\110\51\106\73\87\51\105\119\106\51\104\110\68\51\77\80\72\51\99\98\71\51\101\70\70\51\104\71\75\51\106\52\107\51\57\100\57\51\79\102\99\51\109\51\72\51\73\56\48\51\74\70\69\51\107\72\77\51\76\55\49\51\102\48\122\51\108\65\122\51\79\81\98\51\52\76\122\51\109\55\109\51\51\52\97\51\111\74\89\51\109\120\57\51\74\99\56\51\101\69\57\51\78\85\122\51\73\75\112\51\100\82\51\51\110\105\83\51\80\49\49\51\78\105\117\51\110\102\100\51\78\87\109\51\111\107\57\51\73\76\103\51\111\114\53\51\74\83\50\51\57\71\120\51\68\113\56\51\76\82\81\51\55\120\103\51\106\115\121\51\104\69\50\51\69\84\114\51\77\75\97\51\72\74\54\51\104\89\70\51\54\88\110\51\70\107\99\51\56\79\65\51\69\80\99\51\105\90\52\51\111\76\67\51\69\112\120\51\104\49\65\51\110\99\111\51\66\48\85\51\109\89\82\51\108\110\86\51\56\110\54\51\79\97\101\51\53\111\108\51\77\114\54\51\108\57\57\51\110\101\54\51\104\100\86\51\78\53\72\51\68\117\71\51\104\50\56\51\80\52\122\51\79\79\49\51\54\70\51\51\75\117\103\51\104\53\89\51\74\97\103\51\73\55\78\51\107\82\84\51\70\88\110\50\73\54\51\49\101\54\49\105\50\54\67\50\54\49\50\49\53\51\107\49\109\51\109\55\49\51\70\67\110\51\53\90\111\51\75\121\119\51\74\101\97\51\106\55\49\51\110\54\104\51\97\119\74\51\103\65\103\51\67\103\55\51\79\84\56\51\111\81\53\51\67\50\118\51\72\115\53\51\77\69\57\51\68\68\80\51\68\87\81\51\111\77\116\51\76\55\53\51\73\111\122\51\78\52\49\51\102\57\50\51\74\70\80\51\71\54\83\51\79\97\48\51\54\74\74\51\79\49\88\51\79\78\53\51\54\98\74\51\109\101\114\51\79\56\86\51\79\99\51\51\110\83\117\51\107\50\98\51\78\90\52\51\76\55\79\51\110\122\54\51\75\108\105\51\110\118\86\51\103\71\65\51\101\97\103\51\73\107\79\51\73\70\81\51\103\122\75\51\79\90\82\51\68\88\114\51\109\77\89\51\101\101\56\51\78\72\115\51\109\109\68\51\74\73\119\51\108\103\49\51\108\51\97\51\107\50\77\51\73\67\73\51\109\109\107\51\79\50\120\51\77\109\109\51\109\69\106\51\79\54\65\51\79\55\73\51\111\75\51\51\111\48\50\51\111\107\53\51\71\119\118\51\107\108\90\51\79\97\53\51\102\106\52\51\111\82\52\51\78\81\49\51\72\80\57\51\107\66\55\51\107\52\48\51\103\52\73\51\55\113\53\51\53\89\55\51\68\98\118\51\77\106\118\51\53\106\111\51\109\118\53\51\55\51\99\51\66\48\54\51\72\74\72\51\112\53\98\51\76\100\106\51\70\67\49\51\104\57\119\51\54\53\118\51\79\66\119\51\71\120\84\51\103\68\79\51\111\55\110\51\101\103\103\51\73\109\48\51\79\69\107\51\110\88\102\51\76\119\83\51\69\120\81\51\78\48\56\51\102\115\83\51\110\74\82\51\79\50\101\51\110\81\68\51\107\56\82\51\79\50\69\51\73\105\82\51\101\56\97\51\111\121\86\51\111\48\73\51\53\108\114\51\69\72\104\51\110\54\101\51\111\52\80\51\99\54\50\51\77\90\116\51\106\84\67\51\75\49\73\50\105\54\50\49\121\50\51\122\50\53\110\50\54\53\50\49\77\50\53\108\51\70\120\73\51\109\51\48\51\112\50\78\51\80\53\113\51\72\90\99\51\78\51\69\51\108\87\48\51\54\121\77\51\108\97\81\51\69\49\67\51\77\81\98\51\112\54\66\51\55\77\108\51\79\77\111\51\79\99\79\51\110\108\111\51\109\113\72\51\105\100\66\51\70\49\51\51\101\49\81\51\108\98\51\51\103\66\68\51\97\67\74\51\72\55\108\51\111\54\55\51\69\57\53\51\108\113\112\51\77\69\71\51\110\90\108\51\107\119\84\51\107\79\65\51\71\67\55\51\108\48\121\51\102\90\50\51\99\121\49\51\51\98\103\51\79\116\111\51\97\68\56\51\80\55\111\51\111\78\52\51\107\57\119\51\103\97\109\51\111\120\100\51\78\86\56\51\80\48\74\51\79\53\89\51\110\76\50\51\80\51\98\51\79\105\89\51\66\50\105\51\102\121\82\51\72\52\106\51\111\74\49\51\111\117\49\51\69\83\54\51\79\101\50\51\53\53\50\51\104\75\106\51\71\71\53\51\105\104\99\51\105\72\101\51\79\68\102\51\109\70\117\51\108\110\98\51\111\75\55\51\75\80\117\51\79\65\54\51\110\105\89\51\105\121\55\51\79\90\52\51\78\56\78\51\111\68\112\51\112\49\110\51\54\55\50\51\98\57\116\51\69\51\114\51\74\75\89\51\102\119\52\51\66\106\86\51\56\115\80\51\76\50\67\51\70\71\55\51\69\51\57\51\65\117\106\51\76\57\49\51\108\118\115\51\78\110\69\51\111\52\72\51\53\67\114\51\99\74\56\51\77\99\108\51\80\50\52\51\105\97\103\51\111\72\67\51\102\83\48\51\106\50\67\51\53\100\56\51\111\72\74\51\106\108\74\51\71\57\79\51\112\50\68\51\56\66\115\51\112\50\48\51\102\55\56\51\106\112\50\51\109\90\57\51\80\49\100\51\53\110\66\51\105\105\53\51\105\54\89\51\98\81\109\51\104\81\81\51\110\68\54\51\54\113\85\51\76\90\84\51\111\98\71\51\78\65\50\50\69\90\50\49\79\51\49\84\112\50\50\54\50\52\101\49\78\50\49\122\50\50\67\50\49\57\51\110\114\67\51\68\109\56\51\67\85\79\51\99\80\120\51\70\110\90\51\97\55\72\51\66\82\104\51\50\82\48\51\77\73\110\51\109\48\119\51\78\108\56\51\56\100\116\51\104\89\57\51\109\119\71\51\110\72\87\51\78\118\52\51\111\83\122\51\111\67\52\51\80\54\120\51\111\81\116\51\79\50\53\51\111\57\49\51\110\90\55\51\53\56\55\51\78\111\118\51\54\49\115\51\56\76\54\51\57\68\57\51\71\66\48\51\79\90\86\51\104\67\99\51\76\77\109\51\75\75\116\51\110\55\67\51\72\99\72\51\77\115\120\51\66\99\74\51\107\101\49\51\78\76\117\51\106\66\76\51\78\52\51\51\78\83\99\51\80\48\81\51\71\82\109\51\110\100\90\51\97\115\49\51\100\114\76\51\78\80\53\51\108\51\102\50\53\56\51\104\119\104\51\73\84\111\51\54\51\50\51\97\108\113\51\73\57\105\51\74\75\68\51\109\85\101\51\77\56\77\51\112\52\74\51\110\56\106\51\80\55\87\51\103\99\109\51\108\52\89\51\106\53\107\51\109\67\120\51\106\57\115\51\99\101\55\51\103\79\88\51\54\55\50\51\56\53\53\51\109\79\51\51\56\79\97\51\110\108\65\51\104\57\106\51\78\54\54\51\53\79\57\51\57\122\54\51\111\76\54\51\79\82\110\51\103\84\72\51\53\68\111\51\68\122\70\51\74\97\68\51\76\104\56\51\77\50\54\51\75\48\66\51\80\56\98\51\107\120\74\51\54\119\97\51\70\78\114\51\79\82\83\51\51\110\108\51\102\98\67\51\71\76\80\51\57\55\68\51\54\55\53\51\111\118\65\51\54\79\79\51\108\82\72\51\79\55\113\51\80\56\77\51\111\48\85\51\68\122\112\51\110\114\54\51\53\49\53\50\70\74\50\53\67\49\70\50\52\50\51\65\88\82\50\54\53\50\52\67\50\49\84\50\53\52\50\49\57\50\49\71\50\50\84\51\105\90\108\51\77\111\72\51\77\101\50\51\78\85\82\51\110\78\87\50\73\51\51\75\118\49\51\111\73\69\51\109\54\90\51\98\99\48\51\74\120\89\51\104\90\76\51\109\105\56\51\79\84\57\51\109\51\108\51\108\77\77\51\109\73\100\51\78\55\99\51\102\69\72\51\112\68\88\51\52\56\55\51\98\51\87\51\73\72\52\51\69\120\55\51\65\56\54\51\50\114\48\51\102\74\74\51\51\66\71\51\78\76\102\51\112\97\51\51\111\84\77\51\69\119\108\51\76\52\78\51\52\109\83\51\112\100\54\51\79\85\48\51\109\48\120\51\101\110\107\51\109\121\116\51\75\67\121\51\65\111\101\51\73\70\117\51\53\56\52\51\107\57\121\51\78\86\54\51\77\101\84\51\110\48\85\51\79\88\102\51\78\79\76\51\78\86\98\51\80\48\77\51\111\120\74\51\68\110\50\51\107\70\56\51\78\52\48\51\109\113\75\51\108\56\49\51\72\115\115\51\112\48\84\51\56\104\79\51\76\84\81\51\53\116\57\50\49\53\51\103\50\57\51\102\78\84\51\80\52\70\51\75\101\107\51\110\73\86\51\111\110\107\51\78\53\51\51\79\85\101\51\79\54\117\51\77\110\97\51\72\49\49\51\99\83\70\51\68\70\87\51\78\53\116\51\111\82\71\51\111\85\117\51\110\53\116\51\101\51\55\51\111\107\81\51\80\70\113\51\77\78\116\51\69\108\77\51\53\76\114\51\74\119\69\51\80\102\52\51\98\85\52\51\72\69\99\51\51\78\108\51\110\57\114\51\73\115\68\51\111\115\55\51\71\49\56\51\108\86\70\51\73\89\102\51\112\101\122\51\72\108\57\51\97\65\54\51\78\120\84\51\53\88\109\51\68\66\116\51\106\115\90\51\105\117\111\51\78\54\99\51\76\72\57\51\79\51\79\51\98\65\82\51\78\49\80\51\109\78\70\51\79\65\107\51\110\88\118\51\109\75\86\51\79\80\105\51\55\90\83\51\107\49\73\51\53\111\120\50\105\54\51\51\83\66\50\49\106\49\87\49\76\50\49\57\51\57\55\109\51\74\65\107\51\108\83\117\51\77\65\75\51\107\82\112\51\111\75\99\51\110\68\72\51\104\81\83\51\70\84\77\51\104\75\116\51\77\83\80\51\111\119\101\51\104\74\76\51\78\76\109\51\75\100\83\51\110\112\71\51\111\53\100\51\76\113\109\51\78\115\54\51\56\56\89\51\106\110\52\51\98\68\115\51\78\108\86\51\80\71\118\51\77\51\55\51\110\105\113\51\106\105\75\50\54\75\51\79\88\54\51\109\48\105\51\111\121\57\51\112\51\105\51\80\65\119\51\80\104\55\51\53\83\101\51\69\110\108\51\101\57\54\51\68\106\107\51\76\81\49\51\79\77\68\51\106\103\56\51\101\70\70\51\104\115\87\51\101\78\87\51\66\114\82\51\77\121\103\51\54\49\114\51\99\81\48\51\69\114\81\51\77\84\102\51\106\85\79\51\104\52\49\51\79\88\98\51\54\66\106\51\110\107\87\51\110\101\67\51\78\107\89\51\109\101\117\51\112\65\111\51\79\120\103\51\112\104\75\51\79\71\107\51\80\51\67\51\68\53\52\51\110\102\82\51\76\82\49\51\112\66\53\51\80\69\73\51\109\88\87\51\112\105\51\51\78\98\87\51\111\103\118\51\108\52\88\51\80\66\68\51\110\87\82\51\109\67\90\51\55\53\48\51\78\88\77\51\54\111\50\51\102\55\74\51\106\75\87\51\110\110\53\51\54\88\98\51\76\98\80\51\76\49\118\51\105\97\65\51\68\51\101\51\75\105\109\51\57\99\54\51\102\88\67\51\107\84\90\51\55\89\106\51\76\100\68\51\101\121\55\51\54\88\98\51\80\56\120\51\105\50\119\51\110\81\104\51\54\102\51\51\98\48\79\51\80\56\106\51\66\52\85\51\79\104\98\51\110\120\101\51\80\102\82\51\56\66\106\51\111\104\55\51\54\53\118\51\99\73\83\51\78\113\86\51\53\79\57\51\100\89\100\51\98\67\122\51\107\56\118\51\109\54\87\51\53\80\57\51\101\52\97\51\76\111\83\51\107\56\90\50\70\106\50\50\98\50\53\55\50\54\54\50\52\103\50\51\102\49\97\50\51\54\50\49\49\51\53\118\51\50\50\90\50\54\118\51\99\53\119\51\53\122\75\51\72\118\51\51\108\65\49\51\110\54\88\51\110\67\98\51\53\54\52\51\78\69\56\51\73\79\55\51\78\115\81\51\80\72\101\51\111\99\49\51\77\48\55\51\80\54\118\51\110\73\49\51\112\51\57\51\111\120\104\51\74\86\49\51\108\88\80\51\65\88\57\51\79\50\56\51\110\111\68\51\111\102\122\51\67\82\54\51\105\71\83\51\112\51\88\51\106\102\100\51\57\119\76\51\78\87\52\51\102\48\88\51\74\70\104\51\76\65\122\51\106\89\70\51\112\52\53\51\77\101\102\51\70\101\109\51\101\120\55\51\73\112\106\51\73\112\51\51\98\67\116\51\102\49\98\51\98\119\65\51\52\98\110\51\72\103\83\51\52\66\78\51\53\53\66\51\68\100\117\51\68\120\52\51\104\78\68\51\77\105\84\51\110\83\73\51\103\110\113\51\75\69\101\51\111\50\90\51\105\71\108\51\112\55\56\51\102\114\69\51\106\102\116\51\110\122\89\51\73\57\108\51\111\48\48\51\111\85\66\51\80\98\57\51\112\55\86\51\112\66\66\51\107\73\66\51\76\88\122\51\110\70\106\51\77\113\57\51\71\56\80\51\54\55\50\51\76\83\68\51\79\69\102\51\106\87\105\51\56\52\83\51\97\90\85\51\71\56\89\51\108\68\52\51\79\121\112\51\55\51\99\51\102\54\113\51\109\50\102\51\54\55\66\51\66\70\72\49\50\51\70\106\122\51\54\54\116\51\55\89\110\51\108\71\56\51\107\51\116\51\74\83\56\51\108\73\75\51\111\78\117\51\79\65\99\51\109\110\117\51\69\80\52\51\79\121\48\51\56\66\115\51\107\52\54\51\55\51\112\51\110\102\76\51\77\107\49\51\79\86\99\51\110\99\122\51\109\86\103\51\68\55\56\51\77\56\88\51\107\56\54\51\112\74\66\51\72\122\103\51\56\53\120\50\69\51\50\51\78\50\52\67\51\55\48\89\50\54\121\49\97\50\51\100\50\51\85\50\51\53\50\53\67\50\51\57\50\49\107\50\53\57\50\51\101\50\54\106\50\50\109\50\53\65\50\105\49\51\73\86\108\51\77\83\72\51\105\51\57\51\79\49\68\51\77\65\48\51\72\54\107\51\110\82\57\51\80\99\76\51\73\55\113\51\111\70\98\51\57\75\116\51\70\122\57\51\108\102\72\51\80\71\75\51\56\101\54\51\77\55\57\51\56\49\86\51\78\55\66\51\78\122\107\51\74\56\111\51\56\69\102\51\70\90\107\51\77\73\104\51\108\85\53\51\111\113\69\51\79\106\89\51\77\49\69\51\77\116\52\51\76\110\75\51\108\109\51\51\106\90\65\51\79\54\53\51\112\97\69\51\79\78\48\51\54\49\108\51\68\108\99\51\78\100\120\51\111\103\50\51\100\88\54\51\106\78\86\51\101\70\68\51\100\114\77\51\104\71\75\51\112\97\50\51\101\78\120\51\79\120\52\51\72\114\107\51\80\51\49\51\102\121\65\51\72\102\122\51\112\51\53\51\80\72\102\51\109\104\121\51\79\53\87\51\112\108\57\51\80\104\74\51\80\48\76\51\112\76\99\51\80\65\83\51\97\51\101\51\56\52\65\51\80\105\48\51\105\80\82\51\66\74\80\51\78\98\86\51\79\54\115\51\80\49\53\51\111\71\87\51\76\114\57\51\108\75\51\51\103\67\112\51\107\109\55\51\103\121\50\50\73\51\51\111\110\116\51\109\79\65\51\111\51\77\51\65\102\82\51\103\68\77\51\104\73\65\51\75\89\53\51\110\53\67\51\107\106\106\51\80\49\102\51\75\48\98\51\97\52\118\51\77\74\111\51\105\109\98\51\79\75\105\51\57\67\54\51\100\102\118\51\110\84\115\51\52\89\86\51\72\66\81\51\80\56\55\51\80\70\49\51\108\53\109\51\109\122\57\51\102\51\66\51\55\121\84\51\56\53\48\51\78\99\50\51\57\72\81\51\110\49\88\51\104\73\69\51\107\52\49\51\79\65\78\51\80\56\108\51\111\65\80\51\76\71\114\51\55\82\51\51\78\103\114\51\74\65\111\51\78\54\76\51\99\48\81\50\116\48\50\50\51\50\54\57\50\54\83\50\52\84\50\54\87\50\49\108\50\51\115\51\101\48\52\50\55\49\51\76\83\110\51\78\97\57\51\111\70\57\51\73\122\114\51\112\114\48\51\77\83\103\51\75\57\99\51\108\75\54\51\105\57\72\51\69\69\56\51\74\110\79\51\111\67\107\51\99\90\113\51\76\52\98\51\108\98\122\51\112\68\69\51\112\54\119\51\109\52\72\51\112\76\98\51\79\105\88\51\107\104\102\51\65\120\57\51\106\78\109\51\105\49\51\51\112\48\65\51\110\70\50\51\79\113\49\51\111\90\116\51\102\81\112\51\110\87\49\51\107\112\49\51\104\74\76\51\77\97\87\51\112\82\66\51\112\52\49\51\73\100\56\51\108\97\90\51\112\103\81\51\52\76\122\51\97\114\120\51\74\106\76\51\112\48\53\51\107\100\77\51\73\48\50\51\108\84\108\51\73\56\107\51\72\78\68\51\109\84\120\51\80\48\85\51\79\74\66\51\77\80\107\50\53\56\51\76\109\101\51\101\51\82\51\111\81\121\51\71\52\55\51\111\114\48\51\80\79\90\51\78\80\84\51\107\51\77\51\80\73\53\51\112\49\54\51\80\108\111\51\75\81\50\51\79\54\88\51\53\85\86\51\105\65\87\51\80\49\112\51\101\97\105\51\111\51\108\51\109\118\97\51\77\49\83\51\75\52\76\51\56\122\100\51\106\80\98\51\72\104\102\51\103\53\51\51\111\85\110\51\69\98\110\51\80\53\67\51\103\80\54\51\55\51\80\51\70\120\56\51\105\65\78\51\112\53\65\51\110\99\120\51\112\81\52\51\78\102\79\51\80\102\82\51\57\55\97\51\65\97\118\51\54\80\84\51\50\80\66\51\111\111\109\51\108\57\56\51\66\48\117\51\104\67\82\51\56\51\85\51\106\50\110\51\77\118\49\51\97\71\51\51\73\122\100\51\53\67\66\51\76\57\67\51\78\103\81\51\75\114\56\50\110\88\50\54\84\51\49\67\116\50\53\75\50\49\90\50\50\88\51\55\108\117\51\79\49\107\51\77\113\121\51\103\54\48\51\76\90\66\51\70\99\77\51\50\106\90\51\69\118\52\51\80\113\90\51\74\73\48\51\111\108\111\51\76\65\51\51\110\89\72\51\112\68\55\51\80\51\75\51\78\122\67\51\76\105\104\51\104\56\68\51\102\56\90\51\107\111\55\51\80\82\120\51\72\67\73\51\72\103\104\51\112\48\118\51\53\116\57\51\51\113\52\51\51\68\103\51\111\53\109\51\112\66\48\51\77\81\55\51\73\74\87\51\77\57\116\51\53\54\52\51\80\83\54\51\72\102\121\51\111\105\82\51\112\83\65\51\78\101\100\51\77\87\76\51\72\119\89\51\112\97\112\51\111\110\66\51\112\104\76\51\80\76\68\51\100\110\50\51\70\75\51\51\55\109\68\51\73\79\110\51\80\57\114\51\55\104\51\51\80\86\56\51\111\50\103\51\110\108\111\51\100\87\113\51\77\73\71\51\70\49\51\51\65\74\70\51\98\87\119\51\79\74\89\51\102\57\52\51\111\109\122\51\99\99\108\51\71\100\101\51\80\115\107\51\73\121\49\51\80\83\109\51\112\101\107\51\80\98\97\51\78\87\111\51\112\80\51\51\111\98\116\51\70\78\76\51\57\88\54\51\56\53\51\51\71\85\50\51\73\104\121\51\80\112\85\51\66\117\52\51\108\100\84\51\77\56\121\51\80\77\100\51\100\80\119\51\100\121\90\51\71\48\99\51\104\53\54\51\111\82\69\51\77\57\53\51\79\55\68\51\80\116\55\51\67\52\79\51\65\118\115\51\112\98\86\51\55\120\114\51\51\75\122\51\53\89\81\51\76\75\77\51\105\49\121\51\51\102\75\51\103\85\50\51\108\118\66\51\79\101\49\51\53\68\100\51\77\103\66\51\78\99\86\51\71\72\87\51\110\120\99\51\112\77\72\51\111\52\69\51\112\50\55\51\73\113\84\51\80\67\55\51\112\77\49\51\76\107\114\51\76\106\99\51\80\74\98\51\79\83\83\51\54\56\110\51\50\69\66\50\52\67\50\52\57\50\53\109\50\51\72\50\50\97\50\51\118\50\49\51\50\54\86\51\49\117\111\50\51\88\50\53\79\50\50\53\50\51\56\50\54\118\50\50\112\51\76\69\78\51\107\107\50\51\70\71\119\51\57\55\80\51\110\54\119\51\79\83\112\51\67\80\82\51\56\54\51\51\67\80\120\51\54\69\71\51\97\77\114\51\52\87\68\51\80\107\122\51\110\70\56\51\104\80\49\51\102\67\120\51\108\73\77\51\79\119\71\51\56\49\87\51\101\49\76\51\76\113\109\51\69\110\52\51\110\90\79\51\79\74\119\51\103\119\69\51\77\49\67\51\112\104\88\51\67\113\82\51\72\112\66\51\76\81\120\51\78\76\120\51\113\48\51\51\57\51\122\51\104\99\108\51\76\71\49\51\108\113\49\51\78\109\51\51\100\53\101\51\111\99\71\51\112\48\119\51\52\109\83\51\112\112\65\51\112\75\74\51\112\100\56\51\53\115\69\51\100\98\84\51\111\113\78\51\76\106\48\51\79\88\67\51\80\48\71\51\110\105\48\51\112\51\56\51\80\68\103\51\79\116\50\51\112\78\82\51\109\48\69\51\65\51\101\51\110\111\81\51\76\85\69\51\77\110\50\51\103\56\55\51\110\102\67\51\80\108\74\51\107\105\55\51\80\112\49\51\80\90\67\51\110\81\49\51\112\87\50\51\112\90\70\51\110\56\71\51\66\75\73\51\54\79\48\51\110\99\56\51\80\52\119\51\74\79\111\51\53\100\79\51\105\85\116\51\80\76\82\51\55\53\50\51\107\120\120\51\109\110\102\51\104\109\49\51\66\81\97\51\101\51\100\51\57\99\54\51\109\82\116\51\104\104\122\51\111\48\82\51\108\89\89\51\81\48\70\51\112\56\78\51\74\107\75\51\75\70\75\51\55\120\103\51\72\57\111\51\80\77\111\51\79\65\88\51\50\82\78\51\111\118\55\51\70\55\49\51\55\74\105\51\79\52\75\51\75\121\105\51\97\110\48\51\107\52\53\51\80\112\67\51\111\48\89\51\105\65\117\51\111\48\80\51\54\54\116\51\66\57\116\51\104\79\85\51\68\118\50\51\104\73\84\49\53\50\50\80\50\49\74\51\49\56\122\50\52\69\50\53\82\51\78\89\69\51\102\99\57\51\101\109\78\51\75\103\70\51\111\105\102\51\111\112\70\51\98\49\55\51\74\80\115\51\103\88\51\51\71\54\48\51\103\54\98\51\101\49\99\51\79\81\52\51\80\118\54\51\74\89\56\51\75\84\50\51\112\111\51\51\78\76\111\51\105\116\56\51\74\70\75\51\112\107\54\51\99\118\50\51\73\72\52\51\109\69\105\51\75\108\50\51\68\88\48\51\72\51\105\51\65\101\79\51\101\70\53\51\79\77\86\51\77\55\110\51\71\51\86\51\102\101\105\51\73\103\102\51\78\52\100\51\80\55\108\51\57\51\85\51\79\122\112\51\79\106\76\51\70\67\52\51\110\52\73\51\77\101\78\51\108\48\53\51\111\49\90\51\81\50\105\51\79\105\116\51\111\56\88\51\81\50\108\51\79\103\106\51\112\85\86\51\108\99\56\51\65\120\57\51\67\110\53\51\72\52\72\51\108\114\70\51\76\52\77\51\65\115\57\51\77\56\101\51\80\51\74\51\109\116\57\51\75\76\113\51\77\73\111\51\108\71\57\51\76\56\72\51\112\86\87\51\98\79\79\51\75\84\108\51\80\55\85\51\102\78\70\51\79\48\52\51\80\98\99\51\106\67\121\51\78\67\49\51\65\70\114\51\73\65\75\51\54\54\87\51\68\71\72\51\77\106\120\51\54\80\54\51\51\71\85\51\111\121\115\51\102\51\48\51\74\72\108\51\56\72\49\51\75\102\116\51\74\87\70\51\54\88\110\51\56\52\68\51\108\53\49\51\74\112\102\51\78\102\78\51\109\121\98\51\78\81\112\51\73\109\65\51\74\87\87\51\109\50\56\51\57\111\51\51\100\116\112\51\99\56\87\51\98\82\120\51\72\121\50\51\75\51\84\51\110\57\82\51\80\49\86\51\78\78\56\51\54\111\48\51\57\74\109\51\98\117\70\51\56\50\72\51\110\54\51\51\69\67\101\51\57\73\106\51\78\75\54\51\53\122\115\51\112\54\52\51\79\53\50\51\111\80\72\51\112\57\52\51\78\54\71\51\65\48\101\51\106\54\90\51\78\100\98\51\111\49\109\51\49\52\113\50\51\48\50\51\49\49\53\50\53\107\51\50\77\52\50\54\85\49\107\50\51\53\51\70\108\52\51\99\85\80\51\67\111\65\51\105\75\72\51\100\120\57\51\112\53\53\51\80\65\118\51\108\73\69\51\80\107\75\51\54\49\71\51\109\70\49\51\77\48\49\51\79\56\114\51\79\73\80\51\71\73\112\51\104\119\84\51\112\89\71\51\112\76\55\51\80\104\104\51\80\83\68\51\73\88\79\51\79\81\117\51\112\100\74\51\107\76\73\51\80\54\57\51\78\72\98\51\80\89\115\51\106\106\67\51\109\109\50\51\77\83\84\51\111\84\99\51\112\75\51\51\74\70\74\51\76\55\52\51\54\90\117\51\100\87\117\51\72\115\100\51\100\79\55\51\70\57\52\51\112\69\51\51\74\48\76\51\73\103\98\51\113\50\52\51\73\56\78\51\66\87\88\51\107\119\87\51\55\84\122\51\97\73\76\51\76\77\48\51\78\114\87\51\51\55\65\51\77\119\118\51\71\55\110\51\113\54\55\51\110\53\48\51\104\50\57\51\110\98\117\51\80\122\65\51\113\50\120\51\78\102\103\51\80\101\110\51\77\85\107\51\71\52\103\51\98\75\49\51\103\83\120\51\80\53\104\51\76\57\110\51\77\118\103\51\102\88\50\51\104\88\84\51\65\57\74\51\110\103\57\51\73\99\90\51\101\88\111\51\103\84\52\51\53\78\49\51\110\117\48\51\72\69\50\51\72\121\98\51\112\115\88\51\54\71\51\51\80\52\120\51\56\52\67\51\57\73\55\51\74\108\48\51\108\118\78\51\77\53\78\51\50\82\110\51\111\78\122\51\111\69\51\51\57\72\77\51\105\105\53\51\109\107\78\51\56\110\49\51\72\88\85\51\100\71\52\51\107\98\69\50\73\51\51\80\70\109\51\77\110\108\51\111\55\121\51\57\67\54\51\72\81\74\51\110\100\52\51\111\115\108\51\104\68\50\51\79\122\65\51\53\80\52\51\56\74\49\51\49\55\75\50\53\107\49\115\50\53\71\49\111\50\52\70\50\119\111\51\112\50\87\51\112\74\68\51\110\82\67\51\101\52\97\51\80\50\122\51\109\77\87\51\80\111\84\51\100\110\114\51\78\48\48\51\67\67\76\51\79\77\57\51\73\80\65\51\71\99\48\51\56\50\108\51\103\102\70\51\110\86\75\51\80\86\79\51\68\110\67\51\80\51\116\51\67\109\99\51\111\110\51\51\112\48\68\51\53\81\66\51\74\48\52\51\112\51\52\51\80\117\82\51\112\78\111\51\81\53\83\51\80\51\65\51\81\50\110\51\78\97\122\51\105\49\49\51\113\53\56\51\80\114\53\51\53\116\73\51\78\122\70\51\110\108\107\51\70\56\84\51\74\81\68\51\109\49\53\51\103\66\55\51\108\73\82\51\80\86\68\51\65\115\114\51\110\76\116\51\109\81\76\51\57\101\83\51\111\77\89\51\65\120\81\51\67\87\81\51\52\109\115\51\109\102\110\51\110\119\104\51\69\121\111\51\79\88\78\51\108\52\115\51\56\69\114\51\110\56\73\51\80\122\98\51\113\57\83\51\110\84\66\51\78\77\73\51\110\49\108\51\75\98\84\51\76\121\55\51\69\122\83\51\80\120\49\51\65\81\57\51\113\51\83\51\112\114\77\51\50\117\108\51\104\82\73\51\78\81\115\51\102\83\77\51\70\106\103\51\103\112\118\51\109\54\54\51\57\48\53\51\102\87\55\51\75\70\65\51\110\88\110\51\54\99\113\51\107\102\74\51\79\48\81\51\78\109\117\51\110\117\55\51\76\71\82\51\78\53\75\51\112\90\75\51\68\122\79\51\107\73\79\51\53\88\77\51\79\55\102\51\103\68\112\51\56\52\49\51\78\54\89\51\79\55\53\51\102\55\57\51\103\84\100\51\110\77\112\51\107\51\84\51\104\73\65\51\68\85\77\51\80\53\80\51\101\52\70\51\101\67\119\51\68\122\118\51\112\50\76\51\100\77\57\51\101\86\66\51\113\55\113\51\102\67\78\51\78\97\56\50\53\66\50\53\73\50\54\81\50\52\78\51\78\78\85\51\54\56\121\51\79\90\57\51\53\81\48\51\77\119\69\51\109\74\57\51\72\71\77\51\112\110\119\51\78\55\87\51\102\89\57\51\104\102\89\51\78\48\114\51\81\56\108\51\79\53\86\51\111\113\82\51\79\105\86\51\81\53\84\51\80\97\114\51\80\85\119\51\77\48\102\51\75\90\76\51\112\86\52\51\78\48\56\51\79\99\110\51\54\84\121\51\79\50\104\51\110\76\111\51\111\53\69\51\106\81\73\51\112\114\104\51\56\54\80\51\109\51\82\51\78\55\74\51\70\57\52\51\110\55\52\51\73\56\72\51\108\66\99\51\99\113\116\51\77\66\84\51\53\83\120\51\110\55\80\51\109\52\50\51\52\57\103\51\106\56\116\51\97\105\76\51\110\118\81\51\113\56\66\51\109\70\104\51\81\54\52\51\112\88\86\51\53\105\53\51\77\70\51\51\110\72\112\51\66\69\65\51\80\86\85\51\74\99\82\51\56\89\84\51\113\67\89\51\81\57\114\51\111\107\65\51\81\50\90\51\111\51\105\51\73\100\118\51\57\67\56\51\110\117\53\51\74\65\57\51\77\118\71\51\56\110\113\51\113\51\65\51\66\80\97\51\55\113\105\51\111\78\51\51\112\90\122\51\66\53\76\51\68\98\80\51\105\53\114\51\69\88\75\51\76\89\67\51\57\53\114\51\81\54\119\51\110\71\48\51\55\107\97\51\99\111\56\51\77\54\98\51\99\111\56\51\77\82\57\51\99\52\79\51\105\57\103\51\56\84\83\51\111\65\83\51\53\100\68\51\112\66\89\51\113\48\105\51\113\51\103\51\57\79\51\51\105\54\48\51\80\50\57\51\107\48\68\51\55\74\116\51\112\116\89\51\111\115\75\51\68\56\71\51\112\106\80\51\112\53\81\51\73\74\102\51\112\57\55\50\54\90\50\52\54\50\49\82\50\53\65\49\122\50\52\54\50\49\86\51\75\75\49\51\72\81\83\51\81\49\55\51\65\48\98\51\79\112\101\51\72\70\50\51\67\90\76\51\75\116\89\51\79\119\83\51\81\54\51\51\78\73\97\51\56\57\105\51\110\114\86\51\80\72\51\51\112\85\110\51\71\66\107\51\80\104\48\51\73\83\121\51\100\110\84\51\79\67\109\51\110\122\71\51\72\79\57\51\72\48\55\51\104\51\54\51\74\81\70\51\77\88\51\51\112\54\104\51\52\56\55\51\78\121\79\51\111\77\119\51\56\119\88\51\75\80\100\51\76\105\121\51\110\121\88\51\79\115\120\51\73\56\90\51\75\79\110\51\108\55\105\51\112\78\109\51\79\71\71\51\75\54\56\51\110\52\82\51\112\89\76\51\80\83\103\51\81\102\52\51\97\51\101\51\70\98\119\51\80\83\121\51\54\82\85\51\100\48\103\51\107\107\69\51\113\98\115\51\111\109\69\51\102\109\117\51\108\48\121\51\100\114\112\51\52\109\115\51\80\72\122\51\111\88\77\51\72\116\57\51\77\56\108\51\80\49\51\51\74\111\57\51\79\54\116\51\112\119\49\51\81\103\66\51\110\109\106\51\54\110\108\51\65\122\107\51\113\71\69\51\80\50\54\51\113\51\110\51\111\51\110\51\98\52\106\51\65\52\118\51\106\72\81\51\57\55\99\51\106\115\121\51\110\85\66\51\56\53\53\51\81\51\118\51\51\102\107\51\72\112\72\51\107\70\84\51\75\81\54\51\57\55\67\51\108\118\48\51\79\111\112\51\54\88\119\51\80\81\48\51\54\112\81\51\99\116\55\51\81\68\57\51\66\53\76\51\73\65\86\51\55\51\116\51\56\52\115\51\111\114\66\51\80\53\76\51\99\52\81\51\79\48\57\51\76\115\66\51\99\102\67\51\112\120\57\51\107\107\50\51\102\103\121\51\69\73\65\50\81\101\49\56\50\50\108\49\70\50\53\78\51\56\86\89\51\65\122\65\51\105\90\77\51\109\76\48\51\110\68\70\51\105\122\111\51\109\104\105\50\73\51\51\100\86\56\51\105\110\87\51\110\57\71\51\113\102\119\51\77\116\56\51\113\73\49\51\111\57\87\51\109\48\103\51\107\97\118\51\108\66\117\51\79\99\76\51\112\100\114\51\78\48\97\51\72\48\55\51\100\105\114\51\110\55\99\51\78\112\73\51\98\119\114\51\79\50\107\51\80\54\106\51\57\82\51\51\102\73\115\51\71\82\81\51\75\115\73\51\81\98\79\51\104\66\104\51\70\121\118\51\111\50\85\51\112\65\65\51\78\80\53\51\103\56\49\51\81\106\65\51\57\56\86\51\77\49\103\51\54\74\106\51\79\83\87\51\71\109\85\51\108\48\54\51\78\72\89\51\81\101\89\51\112\48\104\51\112\121\73\51\73\48\118\51\77\48\98\51\80\54\90\51\79\81\118\51\76\102\97\51\56\86\52\51\68\120\104\51\111\120\55\51\80\107\104\51\78\70\57\51\81\106\100\51\71\71\69\51\113\99\87\51\99\100\104\51\113\103\55\51\81\54\100\51\112\69\109\51\77\74\107\51\81\71\98\51\80\49\57\51\80\115\85\51\51\78\76\51\66\112\107\51\109\111\57\51\113\65\68\51\113\51\55\51\102\50\97\51\102\78\117\51\81\48\69\51\113\100\113\51\75\88\81\51\109\53\119\51\67\79\57\51\75\55\87\51\108\114\102\51\78\120\113\51\99\97\54\51\109\89\119\51\75\56\57\51\110\117\98\51\53\112\88\51\74\52\56\51\109\118\76\51\80\84\115\51\113\104\54\51\79\48\100\51\56\66\115\51\109\86\109\51\56\79\65\51\72\112\90\51\75\113\54\51\56\72\105\51\107\121\50\51\75\81\87\50\56\54\51\101\107\69\51\110\54\52\51\54\101\69\51\100\118\50\50\52\82\49\83\50\54\53\51\50\67\82\50\52\107\50\50\56\50\52\100\51\106\73\98\51\97\109\52\51\110\51\57\51\57\49\117\51\78\78\84\51\112\88\81\51\80\106\113\51\105\66\54\51\76\83\111\51\81\98\51\51\77\57\90\51\75\103\73\51\106\51\78\51\66\109\68\51\109\102\77\51\110\118\48\51\54\67\85\51\69\57\54\51\79\119\88\51\107\107\101\51\78\65\74\51\111\106\97\51\113\66\85\51\80\86\113\51\56\50\86\51\80\76\85\51\113\98\74\51\104\83\110\51\80\120\87\51\51\66\84\51\101\68\111\51\79\98\121\51\80\85\81\51\80\65\109\51\110\107\122\51\77\119\109\51\80\76\97\51\112\83\102\51\113\53\85\51\80\110\83\51\113\70\53\51\68\73\74\51\105\55\89\51\76\105\109\51\80\75\48\51\55\104\54\51\111\67\113\51\54\97\105\51\77\88\51\51\111\106\117\51\54\85\100\51\75\54\89\51\113\99\109\51\103\70\57\51\98\114\105\51\112\49\73\51\53\105\53\51\106\85\54\51\80\48\55\51\70\82\102\51\80\66\53\51\78\112\121\51\80\66\55\51\80\55\84\51\111\117\99\51\104\72\53\51\112\76\77\51\106\119\51\51\113\54\103\51\76\85\112\51\52\90\70\51\81\110\77\51\75\116\90\51\57\48\77\51\71\89\48\51\104\105\53\51\53\118\75\51\72\78\109\51\113\54\77\51\70\70\80\51\50\82\110\51\111\101\81\51\53\97\122\50\73\51\51\104\99\82\51\110\102\120\51\79\83\97\51\54\53\81\51\103\68\86\51\101\55\85\51\110\74\50\51\112\69\120\51\66\71\56\51\98\53\120\51\55\89\51\51\104\69\71\51\65\54\83\51\113\54\85\51\55\105\114\51\54\53\105\51\97\65\118\51\66\53\101\51\109\75\48\51\72\109\50\51\103\56\75\51\105\73\108\51\112\87\82\51\109\110\84\51\55\107\117\51\71\85\54\51\110\97\50\51\103\53\83\51\98\113\110\51\81\52\109\51\75\109\53\51\75\103\53\51\110\100\67\51\104\54\106\50\49\76\50\49\112\50\49\101\50\52\89\50\49\102\50\50\105\50\53\118\50\51\85\51\67\53\69\51\108\54\115\51\102\76\53\51\108\97\80\51\53\113\50\51\70\100\55\51\81\111\84\51\69\115\54\51\107\57\104\51\71\55\84\51\70\122\110\51\112\65\56\51\56\76\50\51\79\106\57\51\76\51\100\51\99\86\97\51\112\69\65\51\108\98\110\51\108\88\51\51\111\77\106\51\81\70\54\51\53\84\105\51\78\69\78\51\113\56\86\51\56\75\50\51\78\101\113\51\56\114\111\51\81\108\104\51\80\82\68\51\74\86\101\51\108\102\112\51\56\56\89\51\69\57\54\51\108\66\51\51\74\98\76\51\107\97\82\51\78\48\77\51\73\52\101\51\112\82\115\51\107\57\81\51\107\81\101\51\77\80\111\51\55\104\112\51\104\73\56\51\112\68\66\51\78\75\84\51\108\48\54\51\109\104\87\51\80\54\85\51\113\105\117\51\79\78\57\51\112\48\107\51\80\65\81\51\113\99\54\51\111\57\50\51\111\48\86\51\81\71\52\51\79\88\79\51\113\103\54\51\110\70\69\51\112\101\76\51\112\112\50\51\81\71\97\51\111\54\118\51\97\52\51\51\69\103\79\51\80\80\103\51\53\111\57\51\77\57\50\51\108\114\102\51\102\75\52\51\80\99\97\51\111\69\52\51\53\51\102\51\112\49\81\51\57\100\54\51\53\105\117\51\79\68\88\51\80\70\52\51\106\50\50\51\77\50\67\51\53\100\56\51\98\65\115\51\74\98\111\51\107\70\57\51\76\50\104\51\55\121\74\51\74\53\117\51\103\48\121\51\111\121\65\51\80\119\104\51\73\113\56\51\72\89\50\51\111\121\66\51\57\79\99\51\80\113\53\51\78\81\80\51\57\54\68\51\112\67\69\51\76\107\70\51\57\104\55\51\79\117\89\51\100\99\116\51\105\50\122\51\112\99\78\51\110\51\65\51\53\69\71\51\71\65\48\51\80\109\116\51\102\76\48\51\72\106\49\50\49\69\50\51\54\51\98\72\52\51\51\104\74\50\50\84\49\55\51\53\71\74\50\52\90\51\70\77\120\50\53\111\49\104\50\50\57\50\52\49\50\53\52\49\108\50\50\67\50\54\99\50\51\55\50\51\101\51\50\69\75\51\110\103\118\51\79\112\105\51\104\50\120\51\103\54\67\51\69\101\108\51\81\73\66\51\75\117\109\51\72\48\55\51\78\122\74\51\71\82\104\51\66\67\102\51\111\50\74\51\100\105\120\51\75\84\65\51\105\120\55\51\74\98\76\51\108\87\81\51\74\112\67\51\81\49\120\51\54\82\115\51\97\74\102\51\106\52\100\51\111\67\68\51\113\50\53\51\81\82\122\51\69\102\70\51\80\69\97\51\110\77\55\51\79\112\117\51\76\88\52\51\69\87\76\51\76\113\121\51\112\65\104\51\80\112\54\51\54\115\99\51\111\110\49\51\81\50\65\51\113\56\99\51\113\50\67\51\54\49\103\51\112\53\49\51\77\48\49\51\109\104\84\51\112\110\105\50\49\65\51\113\83\119\51\80\51\54\51\110\115\84\51\113\99\51\51\112\117\84\51\113\112\52\51\113\102\51\51\113\53\86\51\98\50\105\51\72\48\80\51\113\109\106\51\105\49\67\51\56\115\81\51\80\105\50\51\113\50\87\51\113\109\79\51\81\116\65\51\113\57\84\51\80\74\115\51\104\88\74\51\72\104\82\51\65\65\120\51\108\115\49\51\80\105\103\51\80\84\118\51\76\57\111\51\103\48\86\51\72\76\114\51\109\86\57\51\67\84\53\51\54\88\78\51\70\54\116\51\107\67\49\51\78\53\114\49\52\51\77\103\51\51\107\51\119\51\106\53\80\51\52\122\56\51\108\56\84\51\75\109\76\51\50\112\98\51\105\81\82\51\107\113\54\51\102\88\52\51\113\55\73\51\79\75\108\51\110\53\78\51\80\116\98\51\57\111\51\51\72\69\49\51\113\97\73\51\56\51\111\51\103\84\120\51\101\89\57\51\69\121\53\51\76\111\114\51\67\53\87\51\76\97\54\51\81\117\72\51\54\113\121\51\108\115\114\51\81\69\77\51\53\122\50\51\49\118\49\50\52\97\50\54\119\50\50\89\50\52\84\50\54\55\50\54\68\50\53\71\49\109\50\49\105\50\49\103\50\51\83\50\51\53\50\50\52\50\51\103\50\52\50\50\51\54\50\51\103\51\71\113\72\51\103\89\117\51\113\52\114\51\101\74\85\51\80\106\89\51\70\122\99\51\77\105\66\51\104\48\54\51\78\108\111\51\70\108\74\51\112\121\121\51\72\102\78\51\101\57\54\51\102\101\109\51\69\78\57\51\113\83\107\51\109\48\74\51\77\80\100\51\113\114\86\51\107\87\115\51\106\52\102\51\71\102\104\51\78\112\53\51\99\49\73\51\68\57\57\51\113\115\51\51\66\55\119\51\108\77\51\51\102\80\107\51\78\56\57\51\68\101\50\51\101\83\84\51\99\54\120\51\97\99\75\51\57\104\51\51\112\65\73\51\76\88\100\51\110\55\120\51\76\120\102\51\113\67\50\51\81\50\107\51\81\87\108\51\81\84\49\51\74\122\55\51\113\87\79\51\70\113\54\51\54\87\85\51\79\103\113\51\73\84\89\51\78\119\108\51\78\73\119\51\80\52\75\51\106\122\121\51\81\84\66\51\109\78\97\51\109\49\82\51\74\50\76\51\74\68\56\51\107\120\78\51\111\121\99\51\109\53\71\51\108\71\82\51\56\52\68\51\81\113\115\51\102\88\49\51\57\105\55\51\109\49\87\51\112\119\100\51\55\88\81\51\66\53\76\51\101\81\57\51\105\97\90\51\97\113\55\51\103\84\112\51\112\119\67\51\99\73\85\51\56\66\50\51\106\120\54\51\80\102\107\50\56\54\51\110\50\100\51\55\51\80\51\80\73\106\51\112\87\56\51\111\52\54\51\54\53\81\51\108\111\51\51\78\74\113\51\66\57\85\51\110\77\90\51\111\107\50\51\65\108\82\51\75\48\52\51\81\113\72\51\97\113\120\51\97\108\118\51\110\50\117\51\78\65\56\51\109\72\103\51\110\107\110\51\77\51\49\51\78\54\77\51\49\73\105\50\52\113\50\52\97\50\54\70\50\51\57\50\52\86\51\78\85\110\51\74\112\116\51\110\103\117\51\107\53\54\51\80\50\88\51\103\49\85\51\113\76\49\51\80\50\89\51\73\51\111\51\66\52\83\51\76\88\57\51\56\74\115\51\108\85\68\51\55\55\108\51\105\116\48\51\80\82\56\51\105\75\117\51\81\99\70\51\79\90\90\51\79\84\69\51\70\114\49\51\109\69\101\51\81\76\109\51\66\73\83\51\56\119\120\51\113\86\79\51\79\109\90\51\79\78\49\51\70\106\122\51\108\117\98\51\80\106\53\51\78\52\54\51\74\78\115\51\73\80\99\51\109\70\56\51\112\55\72\51\103\122\85\51\100\106\112\51\104\78\105\51\107\115\114\51\81\122\71\51\69\82\51\51\113\50\102\51\110\79\103\51\111\66\90\51\81\90\117\51\81\53\114\51\81\122\87\51\113\73\88\51\113\80\53\51\113\50\111\51\55\50\54\51\65\85\88\51\80\122\55\51\112\98\54\51\112\122\57\51\114\48\53\51\113\116\57\51\113\50\89\51\112\101\78\51\109\74\108\51\114\48\97\51\108\100\114\51\53\78\49\51\56\57\74\51\113\113\71\51\107\66\83\51\69\103\50\51\108\121\51\51\106\111\83\51\80\55\79\51\107\120\77\51\107\48\83\51\82\48\102\51\75\120\81\51\77\48\122\51\81\111\87\51\113\113\57\51\53\111\97\51\51\101\84\51\105\89\122\51\110\74\77\51\111\118\48\51\53\119\66\51\57\116\97\51\69\51\77\51\105\97\76\51\111\118\51\51\105\101\111\51\112\88\54\51\53\67\100\51\81\97\53\51\102\107\48\51\78\113\54\51\53\100\79\51\75\82\52\51\79\120\121\51\103\121\97\51\81\65\116\51\74\120\53\51\112\107\87\51\113\65\54\51\53\100\100\51\113\69\56\51\103\85\111\51\79\56\97\51\80\54\53\51\55\54\110\50\73\54\49\115\50\51\71\50\51\69\49\66\50\54\48\50\53\118\51\112\106\110\51\67\53\83\51\103\105\67\51\106\51\53\51\77\115\50\51\111\76\76\51\108\115\89\51\53\81\50\51\98\118\68\51\113\66\121\51\69\68\81\51\77\69\112\51\112\121\102\51\80\110\108\51\110\52\79\51\80\108\56\51\81\80\50\51\80\115\101\51\113\90\88\51\107\79\118\51\81\80\54\51\65\51\69\51\109\52\78\51\76\77\51\51\68\65\116\51\110\114\122\51\81\121\118\51\105\56\49\51\113\89\120\51\78\90\72\51\68\100\112\51\73\52\53\51\81\53\48\51\80\48\50\51\106\121\72\51\80\48\52\51\99\113\79\50\53\56\51\103\102\107\51\106\49\68\51\82\52\65\51\109\66\114\51\110\49\51\51\57\88\100\51\80\89\50\51\112\118\80\51\54\100\66\51\109\52\53\51\79\77\90\51\111\74\106\49\53\51\74\56\71\51\80\79\73\51\54\83\99\51\74\48\86\51\105\55\86\51\53\50\66\51\81\56\70\51\51\56\53\51\80\69\103\51\110\56\69\51\113\50\116\51\113\74\70\51\111\54\113\51\78\77\101\51\78\119\78\51\113\100\48\51\111\71\120\51\81\109\82\51\98\75\48\51\70\83\99\51\80\49\89\51\80\106\54\51\77\53\88\51\55\113\73\51\79\111\109\51\81\74\111\51\112\99\49\51\99\74\83\51\110\52\87\51\99\52\79\51\108\72\53\51\111\111\72\51\55\113\105\51\110\57\54\51\110\85\98\51\113\116\118\51\112\100\112\51\113\104\97\51\70\99\51\51\104\65\52\51\55\51\80\51\80\113\55\51\78\85\97\51\79\111\56\51\107\70\82\51\49\55\75\51\56\99\57\51\112\78\119\51\71\112\87\51\56\66\50\51\74\112\48\51\112\50\49\51\74\56\108\51\112\49\113\51\108\72\108\51\73\118\66\51\70\115\109\51\82\49\69\51\73\50\90\51\81\55\110\51\79\115\78\51\107\53\55\51\113\107\120\51\71\65\49\51\80\85\71\51\98\121\121\51\65\66\69\51\108\76\110\51\80\50\111\51\53\101\117\50\73\54\51\49\115\54\50\50\78\50\51\87\50\54\99\50\53\65\51\53\113\50\51\66\48\82\51\104\86\110\51\110\112\56\51\69\84\49\51\78\121\106\51\74\90\101\51\104\99\108\51\107\119\82\51\77\51\90\51\81\111\78\51\113\86\87\51\55\57\121\51\112\69\65\51\56\50\86\51\113\122\77\51\102\49\99\51\69\51\114\51\65\73\122\51\108\116\87\51\113\99\68\51\103\82\68\51\72\48\55\51\111\53\67\51\78\55\67\51\71\54\76\51\113\115\102\51\110\98\99\51\110\119\98\51\103\87\69\51\106\98\108\50\49\100\51\51\71\52\51\77\55\106\51\73\80\52\51\100\114\84\51\109\119\104\51\109\66\70\51\80\100\100\51\113\112\48\51\82\53\100\51\80\121\106\51\113\112\51\51\82\53\71\51\108\120\111\51\114\51\53\51\56\56\100\51\69\57\110\51\81\50\66\51\80\88\85\51\56\68\84\51\67\51\100\51\82\51\56\51\81\112\115\51\114\51\65\51\112\108\75\51\112\83\111\51\81\80\88\51\78\105\90\51\114\48\57\51\103\67\112\51\109\75\69\51\53\121\55\51\66\48\111\51\73\69\82\51\113\84\102\51\81\81\65\51\50\117\108\51\111\111\77\51\82\48\105\51\80\110\70\51\75\102\85\51\55\51\112\51\111\51\87\51\51\70\107\51\55\121\106\51\110\53\101\51\108\53\117\51\79\120\90\51\114\49\98\51\78\88\51\51\68\57\67\51\78\70\115\51\110\103\51\51\57\48\109\51\110\117\101\51\52\122\56\51\77\68\56\51\112\84\69\51\57\48\49\51\75\98\56\51\66\75\74\51\105\118\57\51\79\118\66\51\68\103\57\51\79\118\68\51\109\86\71\51\76\108\66\51\80\50\71\51\108\65\48\51\82\49\86\51\81\79\56\51\81\72\72\51\113\49\53\51\104\81\83\51\81\48\78\51\105\78\117\51\52\71\106\51\57\86\54\51\75\82\82\50\52\85\50\51\48\50\53\84\51\52\115\57\50\53\65\50\52\117\50\52\98\50\54\76\50\51\65\51\54\48\53\51\70\67\113\51\56\119\50\51\71\52\54\51\104\82\74\51\108\51\107\51\78\76\74\51\114\50\54\51\54\50\100\51\78\72\69\51\57\108\50\51\74\70\104\51\104\55\120\51\112\52\52\51\68\49\53\51\75\116\65\51\105\104\52\51\109\84\49\51\81\83\75\51\67\52\50\51\81\90\73\51\57\70\72\51\100\101\50\51\81\76\81\51\98\67\75\51\100\78\54\51\106\122\104\51\70\53\51\51\107\83\78\51\78\97\76\51\77\117\49\51\114\50\117\51\79\109\105\51\74\85\52\51\106\113\54\51\102\57\53\51\111\106\72\51\76\109\88\51\53\81\66\51\81\119\70\51\74\106\118\51\81\115\88\51\111\78\56\51\109\98\75\51\82\57\78\51\114\51\51\51\81\87\110\51\114\53\73\51\82\51\54\51\102\111\87\51\111\65\50\51\110\66\116\51\80\111\89\51\77\74\103\51\81\80\119\51\78\84\57\51\112\76\78\51\114\54\85\51\54\53\103\51\113\55\70\51\108\56\114\51\53\117\86\51\100\71\83\51\73\54\79\51\53\115\55\51\108\57\101\51\69\120\79\51\79\54\121\51\53\110\49\51\111\52\71\51\78\85\98\51\79\108\48\51\80\116\54\51\81\48\68\51\79\111\68\51\82\55\51\51\99\111\89\51\110\100\49\51\53\88\109\51\109\74\83\51\82\55\106\51\74\49\120\51\57\104\50\51\79\104\79\51\72\121\49\51\108\121\79\51\56\104\104\51\55\52\121\51\111\114\118\51\75\109\98\51\110\74\88\51\112\78\70\51\107\77\73\51\82\49\56\51\68\74\72\51\82\55\86\51\110\74\102\51\57\79\51\51\79\117\115\51\78\110\112\51\73\50\122\51\111\83\81\51\81\117\105\51\103\89\85\51\104\69\118\51\100\56\71\51\109\65\106\51\80\57\74\51\106\54\81\50\52\103\50\54\81\49\81\50\49\69\50\53\85\50\50\106\50\54\72\51\100\56\74\51\114\49\120\51\97\87\104\51\99\80\120\51\68\65\49\51\79\70\88\51\55\77\54\51\78\68\87\51\112\101\52\51\73\119\106\51\109\70\56\51\111\74\57\51\78\55\113\51\73\119\80\51\110\55\115\50\53\56\51\81\53\72\49\56\51\113\107\50\51\78\56\57\51\81\69\85\51\80\76\51\51\78\48\113\51\77\52\67\51\113\109\54\51\113\50\106\51\82\51\49\51\77\101\87\51\80\117\117\51\114\68\50\51\82\57\113\51\55\111\66\51\70\49\108\51\66\55\121\51\113\102\56\51\113\118\68\51\81\112\66\51\56\49\118\51\81\118\71\51\98\79\50\51\82\50\97\51\81\67\106\51\101\78\54\51\99\86\50\51\108\66\51\51\75\54\116\51\98\87\90\51\78\66\73\51\54\83\99\51\78\89\108\51\97\104\112\51\74\73\81\51\112\72\54\51\113\119\97\51\109\106\98\51\113\50\83\51\77\56\75\51\113\87\116\51\80\69\106\51\114\51\66\51\81\99\122\51\113\71\57\51\71\67\109\51\78\84\67\51\110\87\82\51\65\53\55\51\111\49\57\51\76\122\51\51\54\85\117\51\76\68\49\51\100\85\54\51\72\100\112\51\67\70\48\51\112\84\52\51\70\110\83\51\81\53\106\51\54\87\102\51\72\73\53\51\102\111\116\51\80\52\118\51\73\85\69\51\108\71\117\51\54\88\78\51\76\118\104\51\80\90\122\51\72\104\102\51\112\50\51\51\81\51\74\51\113\100\112\51\114\69\103\51\80\102\114\51\77\107\53\51\53\78\49\51\113\97\49\51\56\53\54\51\50\76\116\51\82\55\49\51\81\107\54\51\55\82\50\51\53\110\51\51\99\52\90\51\75\81\72\51\101\121\57\51\80\67\104\51\100\76\119\51\110\117\116\51\57\68\74\51\77\54\109\51\108\54\68\50\52\54\50\50\104\51\76\108\70\51\76\83\114\51\81\52\104\51\77\86\89\51\114\56\50\51\113\101\112\51\78\103\109\51\108\122\89\51\75\88\54\51\80\97\52\51\108\55\67\51\77\55\88\51\99\55\56\51\70\89\66\51\76\55\72\51\68\102\48\51\111\99\50\51\113\115\89\51\82\99\122\51\82\53\70\51\82\100\49\51\113\116\50\51\80\68\75\51\105\57\98\51\73\48\51\51\82\50\100\51\78\52\57\51\81\53\99\51\81\111\110\51\72\56\75\51\76\74\76\51\104\56\77\51\56\50\118\51\108\71\56\51\112\100\81\51\82\53\111\51\57\101\66\51\112\114\97\51\68\115\107\51\79\74\115\51\78\51\88\51\113\105\104\51\112\86\69\51\111\57\68\51\56\54\113\51\108\70\116\51\82\102\70\51\72\111\77\51\113\53\55\51\77\56\67\51\114\102\53\51\51\55\65\51\73\81\114\51\110\98\80\51\70\49\108\51\114\48\50\51\78\116\50\51\111\51\100\51\80\80\48\51\113\87\119\51\114\51\100\51\81\109\113\51\78\74\48\51\78\109\112\51\114\55\50\51\80\109\105\51\77\110\116\51\97\53\72\51\112\113\56\51\53\120\77\51\103\103\117\51\100\75\74\51\113\106\90\51\98\48\80\51\51\74\97\51\77\98\54\51\106\111\86\51\112\77\76\51\81\75\75\51\78\120\72\51\99\100\87\51\113\89\48\51\112\90\83\51\53\77\115\51\57\84\109\51\106\53\79\51\110\120\57\51\54\112\88\51\68\104\50\51\114\72\112\51\53\111\76\51\79\82\56\51\54\55\54\51\53\100\68\51\113\51\82\51\114\55\75\51\78\102\85\51\50\114\78\51\109\107\81\51\82\66\55\51\97\114\69\51\53\86\77\51\55\54\111\51\76\80\98\51\80\67\121\51\81\76\48\51\81\114\56\51\55\89\118\51\56\53\115\50\79\115\49\112\50\52\48\50\51\86\50\51\87\49\75\50\54\112\50\109\87\50\54\120\50\50\53\49\101\51\51\117\97\51\52\105\118\51\81\82\111\51\109\83\111\51\105\103\84\51\113\102\57\51\57\87\111\51\80\52\48\51\82\99\51\51\71\74\107\51\76\51\84\51\81\83\103\51\112\97\54\51\76\66\51\51\106\86\74\51\108\66\110\51\75\115\69\51\111\106\72\51\102\52\121\51\104\118\82\51\105\103\66\51\82\99\73\51\77\105\84\51\112\107\82\51\55\57\89\51\72\83\119\51\111\84\121\51\76\68\48\51\113\114\114\51\102\52\66\51\108\99\97\51\106\81\118\51\111\53\76\51\82\68\83\51\65\72\73\51\80\76\50\51\57\54\116\51\74\69\85\51\113\53\112\51\112\51\55\51\82\102\81\51\81\105\87\51\106\48\98\51\81\90\121\51\114\68\51\51\56\56\100\51\111\51\53\51\70\57\84\51\74\118\81\51\108\116\54\51\107\97\120\51\78\66\82\51\110\90\122\51\102\86\76\51\110\77\100\51\107\76\119\51\114\65\49\51\114\100\66\51\78\56\76\51\79\48\54\51\104\100\117\51\67\52\121\51\75\70\97\51\104\112\72\51\79\75\112\51\112\66\90\51\75\70\49\51\114\74\87\51\102\115\48\51\113\100\86\51\81\81\116\51\54\111\71\51\108\53\72\51\103\103\83\51\66\75\106\51\104\80\122\51\81\68\100\51\107\114\51\51\53\48\75\51\104\112\100\51\53\48\107\51\81\110\80\51\76\85\121\51\52\89\86\51\105\75\107\51\110\84\76\51\110\74\89\51\109\67\105\51\101\108\49\51\97\97\54\51\111\80\89\51\80\49\88\51\55\51\112\51\80\70\55\51\51\89\121\51\111\48\90\51\77\72\52\51\108\100\118\51\78\100\52\51\69\113\81\51\67\53\114\50\115\50\50\50\81\50\50\97\50\50\77\50\54\72\49\102\50\54\79\50\52\53\50\52\87\49\51\50\53\56\49\50\50\50\54\50\51\109\51\109\90\69\51\113\101\102\51\54\89\101\51\111\105\99\51\107\107\55\51\80\57\107\51\73\87\67\51\77\97\49\51\66\103\76\51\110\51\104\51\57\52\78\51\70\104\115\51\110\101\56\51\82\73\70\51\112\72\68\51\114\51\48\51\111\71\72\51\113\67\52\51\112\110\81\51\114\109\77\51\114\70\117\51\54\52\106\51\82\77\57\51\65\105\81\51\78\112\80\51\81\113\49\51\53\48\75\51\108\51\55\51\76\51\87\51\66\74\53\51\82\54\53\51\75\57\77\51\78\112\53\51\69\87\72\51\113\115\50\51\51\117\72\51\76\48\50\51\111\57\105\51\78\102\55\51\113\76\99\51\77\105\90\51\109\88\101\51\100\88\114\51\57\117\56\51\105\75\114\51\114\106\50\51\75\122\112\51\82\76\77\51\78\76\111\51\72\55\88\51\82\103\53\51\108\77\53\51\107\65\79\51\56\119\88\51\71\106\82\51\77\49\70\51\106\100\48\51\68\116\54\51\113\80\82\51\112\55\82\51\108\71\67\51\111\88\113\51\78\81\52\51\82\109\90\51\109\70\119\51\114\54\116\51\81\84\67\51\100\79\118\51\65\52\120\51\81\85\54\51\66\97\57\51\101\56\51\51\109\110\84\51\75\105\75\51\113\85\51\51\107\52\51\51\78\106\55\51\69\103\56\51\74\72\108\51\55\51\75\51\73\54\78\51\69\112\102\51\54\80\88\51\113\116\113\51\113\106\50\51\82\101\97\51\76\71\83\51\72\113\53\51\109\103\84\51\113\100\103\51\51\78\108\51\57\48\109\51\77\50\76\51\109\89\117\51\66\56\106\51\67\79\82\51\113\109\48\51\76\121\55\51\79\51\87\51\53\100\56\51\70\98\99\51\111\104\89\51\113\75\57\51\57\89\78\51\53\77\89\51\71\73\48\51\112\57\51\51\112\54\48\51\106\116\70\51\103\121\85\51\111\70\55\50\50\54\51\110\97\54\51\112\85\70\51\111\56\57\51\68\86\54\51\82\66\97\51\102\112\53\51\113\56\53\51\100\81\80\51\50\65\50\50\54\71\50\51\80\50\53\119\50\52\108\50\53\80\50\51\74\50\51\97\51\81\79\70\51\71\97\105\51\112\51\49\51\78\115\112\51\112\115\56\51\82\80\49\51\113\105\86\51\79\110\65\51\114\109\76\51\82\53\104\51\114\112\54\51\57\78\101\51\69\50\97\51\108\109\51\51\104\107\105\51\106\102\56\51\110\108\121\51\81\70\77\51\111\50\83\51\111\70\100\51\78\69\48\51\99\113\122\51\112\115\48\51\80\118\113\51\81\118\122\51\71\99\97\51\114\80\109\51\56\56\103\51\112\57\81\51\113\52\85\51\105\56\49\51\111\106\81\51\81\83\57\51\112\79\52\51\97\99\57\51\109\51\79\51\113\90\50\51\80\97\54\51\114\53\88\51\108\73\87\51\72\48\74\51\112\110\119\51\72\48\108\51\113\49\119\51\76\67\83\51\81\99\116\51\68\102\103\51\78\105\84\51\69\54\121\51\108\117\74\51\77\55\52\51\113\54\101\51\80\90\100\51\82\78\50\51\104\88\111\51\109\57\79\51\82\104\71\51\80\109\50\51\81\74\81\51\113\57\87\51\111\48\56\51\80\83\90\51\80\53\107\51\53\110\49\51\66\118\68\51\107\70\97\51\101\108\117\51\74\53\114\51\110\113\106\51\54\55\53\51\80\53\56\51\111\121\85\51\109\57\57\51\114\79\50\51\67\52\120\51\79\121\77\51\82\48\114\51\69\117\106\51\110\74\52\49\49\51\76\53\72\51\78\120\49\51\81\110\72\51\108\104\77\51\56\98\83\51\97\122\78\51\97\102\70\51\81\107\66\51\53\67\107\51\80\105\90\51\107\85\113\51\81\89\49\51\51\101\84\50\49\106\50\49\71\49\69\50\54\97\51\49\66\117\50\118\109\50\51\76\50\50\53\51\50\76\55\51\112\110\100\51\98\49\76\51\57\118\54\51\71\53\115\51\56\80\50\51\106\77\97\51\108\115\86\51\102\120\88\51\80\88\79\51\76\51\52\51\77\112\55\51\111\53\81\51\76\48\52\51\53\54\97\51\100\52\111\51\79\83\121\51\82\57\75\51\81\56\110\51\114\53\69\51\81\56\112\51\112\100\73\51\76\110\54\51\108\80\85\51\111\106\48\51\113\119\57\51\82\57\85\51\53\115\101\51\75\103\107\51\78\105\71\51\76\74\102\51\55\111\106\51\74\117\67\51\108\48\118\51\79\84\86\51\52\57\71\51\71\56\49\51\111\74\100\51\113\84\87\51\51\55\97\51\103\106\90\51\106\53\85\51\108\98\81\51\82\54\98\51\106\49\74\51\82\66\120\51\81\108\69\51\101\53\113\51\113\52\119\51\80\121\116\51\76\117\48\51\80\114\100\51\105\52\53\51\114\116\53\51\56\56\121\51\105\100\100\51\108\70\115\51\103\66\68\51\111\84\107\51\70\83\54\51\114\68\54\51\79\117\97\51\113\77\78\51\79\82\51\51\81\87\120\51\81\100\49\51\80\122\101\51\57\103\85\51\66\75\48\51\68\80\80\51\80\90\122\51\70\51\52\51\99\52\76\51\76\100\111\51\107\105\86\51\103\85\48\51\97\97\57\51\104\57\53\51\109\57\70\51\72\88\76\51\68\80\72\51\73\69\53\51\51\70\107\51\98\118\48\51\111\79\53\51\81\110\102\51\110\74\90\51\81\48\74\51\109\99\78\51\108\75\112\51\114\72\70\51\111\52\100\51\81\78\50\51\77\118\71\51\107\110\52\51\76\86\117\51\114\107\68\51\106\101\50\51\54\55\53\51\107\48\57\51\78\53\70\51\66\112\78\51\66\80\107\51\78\117\71\51\56\86\54\51\72\97\115\51\76\108\81\51\79\69\87\51\75\103\51\51\53\86\109\51\81\82\110\51\109\122\99\51\79\122\56\50\55\66\50\53\114\50\53\78\50\54\56\50\49\85\50\54\57\50\54\101\50\49\85\50\54\98\51\81\114\55\51\107\78\90\51\78\68\56\51\79\70\65\51\68\65\54\51\57\102\48\51\104\115\80\51\113\122\57\51\110\77\49\51\75\55\49\51\82\112\104\51\112\104\118\51\54\76\106\51\109\55\84\51\82\119\55\51\55\118\49\51\73\87\119\51\82\76\75\51\71\50\103\51\112\79\50\51\99\67\117\51\77\109\52\51\105\100\56\51\113\108\74\51\112\79\54\51\51\55\55\51\99\66\57\51\114\81\50\51\57\101\115\51\102\57\52\51\77\109\100\51\108\116\56\51\110\52\75\51\112\110\106\51\114\115\98\51\81\115\122\51\80\121\75\51\114\83\101\51\114\57\80\51\113\99\55\51\53\56\55\51\109\56\57\51\109\52\116\51\80\79\83\51\81\105\48\51\78\111\84\51\109\52\81\51\113\79\118\51\78\100\84\51\77\109\83\51\110\109\57\51\114\81\56\51\108\110\97\51\79\107\54\51\113\80\117\51\109\99\53\51\111\71\117\51\114\110\48\51\111\48\53\51\80\105\55\51\72\88\74\51\113\107\56\51\53\88\77\51\82\97\54\51\97\75\85\51\56\66\50\51\110\103\54\51\54\53\57\51\56\66\55\51\81\100\110\51\82\49\97\51\81\55\52\51\54\88\87\51\73\108\112\51\113\117\69\51\82\48\116\51\65\90\104\51\51\100\120\51\109\71\102\51\68\68\71\51\56\84\118\51\108\79\54\51\56\98\109\51\71\112\57\51\65\108\57\51\114\81\74\51\101\67\51\51\70\98\55\51\56\65\83\51\65\118\112\51\79\117\84\51\69\108\86\51\50\80\98\51\107\113\86\51\113\55\55\51\99\100\117\51\57\54\52\51\100\118\113\51\114\51\119\51\107\56\67\51\81\80\109\51\112\106\98\50\84\48\50\49\66\50\50\112\50\49\88\50\51\53\50\54\75\50\50\69\50\54\84\50\53\54\50\53\51\49\75\51\72\50\99\51\76\57\119\51\107\101\115\51\107\75\53\51\82\89\50\51\72\90\98\51\76\83\82\51\81\98\100\51\114\111\78\51\101\56\80\51\71\65\103\51\74\110\77\51\107\79\104\51\70\104\97\51\79\50\66\51\57\52\111\51\55\55\76\51\112\78\122\51\74\106\98\51\114\84\50\51\108\109\77\51\80\114\99\51\113\86\104\51\108\70\111\51\78\104\105\51\81\106\51\51\108\105\86\51\98\87\121\51\55\72\112\51\81\102\75\51\56\57\98\51\76\105\122\51\114\70\76\51\108\70\49\51\82\109\104\51\113\119\74\51\113\90\118\51\114\102\82\51\81\87\77\51\82\105\79\51\75\108\73\51\74\90\68\51\104\103\100\51\67\56\49\51\114\99\73\51\111\77\100\51\114\73\87\51\52\57\71\51\69\50\54\51\81\53\53\51\103\56\51\51\71\56\79\51\54\115\99\51\98\88\85\51\81\49\72\51\114\80\80\51\110\56\65\51\112\97\88\51\106\81\116\51\76\113\98\51\114\81\55\51\114\71\106\51\112\90\56\51\112\55\115\51\113\74\71\51\79\110\108\51\99\110\112\51\114\100\67\51\114\106\116\51\76\75\115\51\70\75\52\51\77\54\53\51\51\110\76\51\82\55\99\51\113\100\74\51\113\68\57\51\105\81\73\51\73\85\66\51\74\53\115\51\53\57\68\51\81\71\82\51\82\107\56\51\78\88\106\51\66\52\115\51\113\68\55\51\78\88\108\51\55\53\50\51\66\90\67\51\78\117\52\51\114\107\107\51\79\104\81\51\70\50\66\51\80\56\118\51\113\117\67\51\110\49\115\51\81\51\107\51\78\49\85\51\82\88\74\51\81\117\57\51\77\50\67\51\71\57\53\51\55\98\105\51\74\112\101\51\108\57\73\51\57\75\82\51\79\73\51\51\82\55\122\51\112\67\75\51\102\84\74\51\56\53\118\50\69\122\50\49\113\50\54\56\50\55\49\50\53\78\50\50\90\50\50\122\50\50\67\50\51\49\50\53\78\51\110\89\66\51\80\74\68\51\113\72\71\51\69\52\70\51\114\114\81\51\53\86\111\51\103\54\48\51\110\75\112\51\83\49\119\51\54\51\52\51\109\104\84\51\114\115\57\51\81\119\104\51\114\102\79\51\81\53\81\51\114\80\50\51\114\51\50\51\82\122\101\51\78\56\53\51\82\73\112\51\106\48\48\51\112\55\55\51\82\122\108\51\78\122\66\51\56\100\116\51\105\99\67\51\113\90\56\51\105\48\53\51\71\55\118\51\81\76\85\51\108\51\99\51\110\118\109\51\81\115\48\51\78\86\79\51\79\106\90\51\111\57\74\51\111\100\56\51\106\49\71\51\56\106\112\51\109\90\57\51\114\87\51\51\108\51\105\51\97\110\79\51\112\86\53\51\109\51\105\51\79\53\57\51\114\121\119\51\79\116\97\51\78\76\111\51\77\49\55\51\68\115\115\51\74\78\51\51\67\86\50\51\70\114\53\51\74\66\108\51\73\76\53\51\105\71\82\51\74\122\81\51\115\51\55\51\109\49\106\51\110\102\98\51\112\118\88\51\110\87\73\51\114\90\88\51\112\119\48\51\80\83\113\51\110\66\122\51\109\49\81\51\103\99\112\51\71\76\103\51\57\78\51\51\72\121\80\51\80\87\80\51\82\98\51\51\81\85\56\51\114\84\83\51\81\100\83\51\82\81\121\51\80\50\97\51\82\110\67\51\81\51\56\51\98\53\98\51\114\51\87\51\71\116\88\51\79\49\51\51\101\52\49\51\113\55\100\51\75\98\71\51\82\113\111\51\107\56\80\51\114\52\48\51\76\50\72\51\65\118\48\51\111\98\53\51\106\120\55\51\100\67\53\51\83\52\99\51\78\71\78\51\56\104\73\51\102\115\54\51\76\104\102\51\74\120\52\51\57\68\48\51\81\118\113\51\77\86\79\51\80\57\55\51\114\89\101\51\102\88\78\51\109\51\65\51\80\106\67\51\115\49\81\50\79\115\50\49\121\50\51\114\50\51\55\50\51\54\50\51\81\50\52\119\51\56\86\116\50\50\105\50\50\51\50\52\103\51\57\49\101\50\49\67\50\52\77\51\81\117\75\51\109\76\49\51\112\103\66\51\75\78\117\51\69\105\53\51\101\90\81\51\57\120\54\51\81\49\102\51\81\76\98\51\114\77\115\51\57\119\103\51\112\54\97\51\82\115\122\51\79\57\55\51\113\56\120\51\82\89\120\51\109\51\77\51\109\109\54\51\115\54\56\51\80\89\122\51\106\121\72\51\79\81\101\51\109\69\105\51\111\103\57\51\71\111\100\51\81\100\78\51\110\55\50\51\114\54\49\51\75\100\70\51\109\66\82\51\77\48\108\51\101\70\65\51\82\50\81\51\101\57\55\51\102\57\102\51\81\50\56\51\112\75\86\51\108\86\76\51\80\118\49\51\75\88\51\51\99\106\90\51\101\105\103\51\81\53\109\51\79\105\111\51\71\81\82\51\112\54\116\51\81\87\73\51\79\56\119\51\83\53\57\51\83\50\106\51\114\57\79\51\83\53\99\51\113\56\115\51\110\78\79\51\51\57\66\51\82\74\109\51\110\112\57\51\77\102\83\51\79\75\52\51\114\74\81\51\114\54\83\51\112\49\55\51\74\71\109\51\66\107\48\51\113\103\68\51\115\51\122\51\106\111\73\51\71\104\120\51\54\86\89\51\104\57\101\51\104\105\53\51\98\53\69\51\112\77\97\51\114\82\71\51\98\80\78\51\56\72\49\51\113\88\81\51\109\53\106\51\56\99\50\51\112\90\90\51\68\55\73\51\111\49\48\51\110\85\98\51\56\104\105\51\81\120\75\51\81\48\53\51\53\48\107\51\100\69\115\51\108\57\75\51\114\110\56\51\109\57\113\51\114\110\97\51\99\74\115\51\105\51\80\51\98\107\106\51\82\80\116\51\82\55\69\51\113\116\115\51\82\117\80\51\104\90\98\51\102\88\77\51\82\49\72\51\78\65\97\51\114\66\57\51\102\112\51\49\75\50\49\78\50\54\111\50\53\69\50\53\104\50\55\48\50\53\65\50\50\119\50\53\50\50\54\114\50\52\116\51\107\90\66\51\82\86\50\51\78\85\105\51\82\121\100\51\77\54\88\51\55\108\66\51\70\67\114\51\102\79\101\51\78\65\80\51\109\48\51\51\53\54\69\51\82\67\119\51\83\57\108\51\80\110\110\51\83\50\105\51\114\109\75\51\75\54\66\51\114\122\70\51\81\84\51\51\103\74\57\51\77\105\111\51\105\53\50\51\68\88\52\51\109\70\56\51\111\77\68\51\108\109\66\51\101\102\102\51\102\100\50\51\83\50\86\51\113\73\53\51\106\86\84\51\78\72\57\51\102\81\112\51\83\56\109\51\83\54\50\51\112\54\67\51\81\86\102\51\111\102\105\51\79\116\100\51\74\110\49\51\115\56\84\51\114\116\54\51\71\87\100\51\50\84\88\51\110\98\102\51\82\106\101\51\77\55\75\51\108\81\117\51\69\106\109\51\111\114\86\51\69\48\112\51\110\84\117\51\82\57\116\51\81\70\89\51\56\68\116\51\110\98\113\51\106\75\56\51\72\120\65\51\67\115\49\51\109\85\70\51\82\103\78\51\81\103\56\51\80\52\108\51\80\55\88\51\113\87\90\51\57\71\120\51\112\87\116\51\107\113\103\51\52\54\50\51\73\54\66\51\107\53\115\51\77\79\53\51\112\70\48\51\70\66\104\51\67\120\122\51\50\84\77\51\82\55\117\51\81\88\52\51\80\53\105\51\106\50\75\51\67\80\49\51\114\117\50\51\53\57\51\51\77\50\79\51\71\104\74\51\106\57\107\51\114\49\54\51\107\55\115\51\79\121\122\51\57\120\119\51\82\117\57\51\100\75\107\51\79\74\109\51\55\82\89\51\65\102\79\51\108\71\56\51\104\49\68\51\76\89\55\51\107\101\122\51\76\86\69\51\81\57\90\51\57\99\54\51\80\50\56\51\81\51\54\51\112\119\97\51\107\57\115\51\115\55\113\51\83\55\86\51\114\82\76\50\50\49\51\107\49\56\51\51\100\88\50\52\73\50\53\109\50\49\87\50\52\67\49\68\50\51\121\50\53\80\50\53\85\51\75\49\107\51\76\115\88\51\82\101\77\51\81\55\83\51\114\82\117\51\114\52\78\51\56\86\100\51\115\52\104\51\99\112\120\51\77\122\121\51\82\109\55\51\57\113\67\51\111\115\49\51\82\119\50\51\110\48\49\51\111\57\104\51\71\74\53\51\111\122\78\51\105\52\73\51\78\119\86\51\80\114\54\51\114\119\57\51\100\73\79\51\114\57\51\51\111\109\81\51\78\55\67\51\77\115\87\51\110\48\103\51\65\99\100\51\114\71\55\51\114\106\98\51\71\66\100\51\113\106\65\51\75\103\89\51\53\54\52\51\113\109\50\51\110\69\57\51\111\110\54\51\83\50\103\51\115\57\109\51\114\83\99\51\81\116\48\51\114\73\78\51\114\112\53\51\114\90\71\51\54\52\74\51\66\81\56\51\110\68\88\51\76\103\49\51\82\50\112\51\104\51\115\51\79\54\72\51\114\86\121\51\76\48\89\51\111\112\116\51\110\49\98\51\82\50\76\51\113\57\109\51\109\55\52\51\113\80\84\51\83\51\65\51\80\73\52\51\79\78\77\51\80\73\54\51\108\67\112\51\77\56\115\51\77\50\116\51\100\66\82\51\55\99\65\51\99\89\78\51\114\52\56\51\82\48\89\51\107\104\120\51\114\88\68\51\81\104\55\51\67\83\119\51\54\79\103\51\98\48\65\51\102\115\121\51\69\77\49\51\53\78\66\51\77\118\52\51\113\100\57\51\102\51\52\51\82\77\54\51\66\107\74\51\77\97\78\51\108\89\102\51\114\120\72\51\81\78\49\51\82\104\72\51\82\81\109\51\103\84\106\51\78\53\85\51\99\78\90\51\66\89\70\51\113\110\116\51\97\52\54\51\113\54\120\51\111\78\120\51\55\113\105\51\110\114\53\51\110\68\52\51\80\74\116\51\75\56\122\50\68\57\50\53\55\50\49\82\50\51\114\50\49\117\51\82\76\57\50\53\82\51\113\56\52\51\68\81\84\51\71\77\110\51\71\77\112\51\81\111\98\51\109\118\81\51\78\107\98\51\114\56\49\51\77\115\50\51\75\57\99\51\78\72\81\51\78\102\54\51\66\115\115\51\109\48\118\51\110\105\70\51\110\90\112\51\71\70\69\51\110\83\102\51\112\86\78\51\73\48\53\51\77\66\88\51\53\84\57\51\73\74\118\51\81\79\83\51\83\53\103\51\111\51\51\51\56\68\84\51\110\48\78\51\109\55\88\51\74\89\120\51\82\73\103\51\114\122\66\51\114\105\108\51\114\86\106\51\78\90\53\51\113\109\67\51\108\112\117\51\80\55\50\51\115\70\56\51\80\55\52\51\81\67\115\51\77\51\103\51\78\98\51\51\115\56\78\51\82\112\119\51\110\122\73\51\115\99\107\51\111\109\114\51\76\105\82\51\114\74\56\51\51\55\55\51\65\79\52\51\73\88\55\51\74\49\66\51\57\88\52\51\73\83\100\51\113\116\53\51\113\77\76\51\75\55\73\51\77\78\54\51\82\113\68\51\115\103\76\51\81\106\106\51\105\55\73\51\79\71\122\51\54\53\103\51\112\108\113\51\114\69\49\51\57\54\118\51\73\101\90\51\69\67\111\51\114\76\87\51\75\51\116\51\99\83\75\51\79\75\121\51\51\110\76\51\98\97\120\51\73\101\82\51\78\117\66\51\66\53\101\51\76\100\55\51\83\97\52\51\76\54\51\51\54\79\51\51\67\106\100\51\112\76\121\51\115\72\65\51\54\79\79\51\78\49\84\51\110\74\69\51\82\84\82\51\112\102\114\51\114\116\119\51\53\88\77\51\67\106\90\51\97\52\118\51\100\122\76\51\83\65\122\51\55\99\65\51\114\82\67\51\100\51\65\51\54\76\82\51\57\100\57\51\81\113\111\51\83\66\49\51\78\68\67\51\112\53\122\51\111\56\53\50\82\65\51\49\48\76\50\54\77\50\51\49\49\70\50\50\102\50\54\110\51\50\49\56\51\111\119\56\51\109\75\115\51\68\81\79\51\77\107\90\51\57\111\84\51\80\103\55\51\54\57\113\51\53\113\50\51\66\115\117\51\103\103\65\51\114\109\81\51\80\80\116\51\70\81\112\51\75\75\111\51\113\83\56\51\114\74\53\51\108\109\109\51\78\51\117\51\113\86\72\51\107\84\55\51\112\57\120\51\108\109\82\51\52\56\70\51\114\76\83\51\100\120\54\51\76\66\53\51\75\50\48\51\80\70\97\51\102\116\116\51\83\67\112\51\80\104\82\51\110\73\74\51\72\66\75\51\74\52\104\51\71\83\55\51\77\98\89\51\53\114\119\51\83\72\55\51\115\67\122\51\113\76\56\51\68\82\55\51\54\51\52\51\106\117\112\51\79\49\89\51\112\108\52\51\106\117\84\51\114\53\98\51\78\86\55\51\81\80\49\51\114\57\77\51\114\73\109\51\115\53\66\51\112\55\48\51\75\115\97\51\77\109\80\51\109\97\112\51\111\87\113\51\80\107\99\51\79\51\57\51\114\109\121\51\68\84\56\51\114\100\55\51\104\112\51\51\79\100\73\51\83\71\75\51\83\51\99\51\113\80\121\51\82\113\71\51\75\101\54\51\54\87\97\51\97\86\48\51\109\114\51\51\83\55\97\51\67\57\111\51\105\73\55\51\78\71\51\51\55\80\100\51\68\122\54\51\75\55\86\51\76\118\55\51\102\97\119\51\82\48\67\51\114\51\114\51\114\113\76\51\114\78\66\51\113\54\81\51\114\65\65\51\54\66\79\51\110\54\56\51\73\68\74\51\78\53\65\51\74\101\52\51\100\103\85\51\108\71\86\51\76\83\53\51\68\99\113\51\99\52\50\51\83\107\85\51\110\116\110\51\65\108\55\51\103\103\85\51\68\67\81\51\110\54\100\51\79\76\71\51\79\119\48\51\55\101\54\51\80\117\99\51\83\66\52\51\115\56\101\51\103\113\73\51\82\89\51\51\75\75\50\51\99\107\106\51\78\117\85\51\51\99\85\49\109\50\53\65\50\54\108\50\50\120\51\67\90\75\51\82\53\53\51\66\53\104\51\107\86\118\51\102\108\87\51\111\71\101\51\83\70\88\51\83\66\119\51\82\77\106\51\114\115\68\51\115\98\122\51\83\57\113\51\75\115\97\51\72\114\102\50\54\75\51\106\55\71\51\113\105\55\51\74\55\74\51\113\99\57\51\71\103\97\51\106\48\118\51\78\57\106\51\83\76\106\51\114\57\48\51\114\98\90\50\74\110\51\114\71\48\51\101\119\117\51\75\112\53\51\78\55\99\51\109\88\51\51\82\122\49\51\51\56\98\51\65\111\52\51\73\104\52\51\68\79\55\51\77\88\57\51\82\54\100\51\112\88\84\51\115\100\48\51\53\83\69\51\74\52\66\51\114\115\110\51\68\110\54\51\75\71\78\51\79\57\111\51\107\75\72\51\111\57\113\51\111\103\55\50\53\56\51\114\99\78\51\109\110\49\51\111\51\65\51\110\98\83\51\114\87\79\51\80\83\110\51\115\54\108\51\83\106\79\51\83\54\110\51\81\106\107\51\113\68\51\51\57\85\56\51\114\74\86\51\81\51\109\51\112\70\82\51\73\97\48\51\78\85\98\51\98\86\48\51\82\110\55\51\114\117\103\51\114\55\87\51\75\98\115\51\112\88\50\51\109\57\73\51\98\107\106\51\108\85\88\51\99\52\86\51\113\65\115\51\53\121\55\51\98\122\67\51\108\83\49\51\82\110\115\51\111\48\86\51\113\65\80\51\106\112\57\51\114\85\108\51\54\80\56\51\81\77\104\51\73\117\78\51\72\117\56\51\114\52\74\51\100\50\75\51\69\81\54\51\56\53\52\51\112\74\51\51\83\79\49\51\82\120\86\51\81\107\119\51\73\55\49\51\114\53\50\51\106\105\72\51\75\101\115\51\54\89\54\51\83\98\51\51\65\119\48\51\67\53\122\50\102\74\50\50\120\50\70\50\50\51\97\50\53\73\50\51\74\50\54\118\51\52\79\89\50\51\88\50\54\87\50\53\121\51\111\53\48\51\115\49\115\51\53\117\118\51\115\56\105\51\82\80\111\51\115\56\107\51\66\50\120\51\83\108\107\51\115\74\54\51\80\107\49\51\114\50\56\51\80\57\86\51\104\119\66\51\102\77\81\51\65\79\51\51\111\50\82\51\115\54\98\51\109\105\75\51\112\115\50\51\100\69\114\51\113\116\105\51\108\109\51\51\65\100\72\51\69\101\56\51\82\99\113\51\72\51\109\51\81\76\82\51\77\66\83\51\99\109\51\51\115\109\50\51\112\69\56\51\77\105\86\51\110\80\55\51\68\69\51\51\115\114\48\51\110\86\50\51\78\121\121\51\77\87\106\51\82\118\71\51\112\48\73\51\114\86\73\51\76\48\100\51\79\57\48\51\82\86\76\51\110\86\101\51\115\57\115\51\65\69\71\51\79\117\56\51\69\88\99\51\111\110\105\51\82\48\52\51\82\54\113\51\82\48\54\51\74\75\103\51\80\52\77\51\103\67\111\51\71\120\53\51\80\119\53\51\53\89\55\51\97\53\75\51\69\51\55\51\78\53\76\51\83\55\50\51\54\102\51\51\68\112\104\51\80\52\83\51\81\88\87\51\55\100\54\51\56\110\117\51\81\120\51\51\115\101\97\51\79\114\122\51\57\111\51\51\114\104\106\51\55\107\119\51\98\49\88\51\71\120\116\51\66\118\52\51\115\55\76\51\102\110\111\51\104\108\52\51\82\104\49\51\110\53\89\51\54\79\48\51\80\50\48\51\112\116\69\51\54\55\69\51\80\49\77\51\79\114\119\51\81\57\89\51\115\116\81\51\80\70\114\51\107\100\98\51\115\55\55\51\83\75\118\51\82\118\54\51\113\98\50\51\54\81\85\50\68\74\50\49\101\50\50\81\50\51\51\50\50\86\50\49\122\50\54\116\50\50\74\51\77\87\67\51\53\112\57\51\99\65\68\51\54\81\101\51\77\72\102\51\103\101\76\51\115\111\51\51\53\50\55\51\110\114\78\51\55\87\121\51\67\113\51\51\51\100\103\51\106\68\55\51\108\116\108\51\68\74\107\51\74\48\110\51\75\87\117\51\113\111\111\51\100\48\108\51\113\79\113\51\65\73\108\51\77\50\108\51\51\66\103\51\73\115\103\51\106\85\55\51\82\56\76\51\81\67\97\51\54\57\121\51\83\67\71\51\80\51\89\51\55\77\108\51\82\53\81\51\115\80\55\51\81\67\71\51\106\49\53\51\104\106\81\51\112\107\53\51\79\99\117\51\81\50\50\51\110\76\85\51\79\106\89\51\75\104\86\51\105\84\74\51\73\116\76\51\112\121\99\51\76\66\87\51\80\65\75\51\114\83\97\51\115\83\84\51\81\109\56\51\105\107\57\51\81\77\97\51\76\112\115\51\77\76\86\51\79\54\50\51\114\57\115\51\82\118\79\51\83\112\76\51\69\53\76\51\83\109\116\51\76\52\81\51\113\67\86\51\110\84\52\51\112\118\87\51\114\100\57\51\112\118\122\51\115\113\51\51\83\51\68\51\82\97\52\51\97\52\51\51\100\54\116\51\75\121\66\51\54\120\110\51\114\54\87\51\77\75\54\51\105\50\52\51\108\50\105\51\55\119\52\51\75\73\113\51\82\97\106\51\53\109\78\51\74\54\48\51\99\52\79\51\114\51\74\51\83\78\55\51\69\112\55\51\106\108\71\51\68\56\53\51\82\75\51\51\100\56\53\51\72\85\103\51\115\97\82\51\82\66\50\51\105\50\82\51\81\55\48\51\82\116\83\51\115\57\102\51\69\52\50\51\82\120\109\51\110\99\67\51\105\73\57\51\70\51\52\51\109\50\76\51\82\71\117\51\57\111\106\51\81\74\114\51\74\51\50\51\107\55\78\51\80\54\50\51\73\78\80\51\56\118\65\51\82\101\113\51\101\52\70\51\105\55\51\51\50\55\84\50\51\103\49\79\49\110\50\54\97\50\51\65\50\50\120\50\53\98\50\53\109\50\50\106\50\49\101\50\50\89\50\49\101\50\55\50\49\79\51\114\114\111\51\80\74\118\51\113\49\69\51\83\79\87\51\74\55\72\51\111\84\108\51\81\73\56\51\77\70\117\51\113\49\75\51\111\50\70\51\78\76\108\51\113\115\97\51\111\113\56\51\110\108\111\51\113\76\74\51\83\86\112\51\52\56\55\51\104\48\102\51\83\118\115\51\82\53\121\51\57\88\52\51\83\112\74\51\99\67\99\51\113\79\88\51\111\71\100\51\100\101\120\51\112\83\57\51\115\77\104\51\112\104\71\51\115\83\85\51\115\109\107\51\83\73\119\51\113\109\66\51\113\56\82\51\75\83\65\51\105\111\76\51\55\79\89\51\57\52\69\51\113\103\90\51\115\73\110\51\79\57\86\51\74\85\78\51\100\82\70\51\76\77\115\51\54\48\73\51\114\89\108\51\101\74\52\51\114\54\54\51\113\79\80\51\54\68\66\51\112\111\66\51\107\100\69\51\114\49\57\51\83\57\85\51\81\54\56\51\115\71\74\51\112\108\76\51\82\122\121\51\113\54\102\51\83\110\50\51\79\97\97\51\115\119\111\51\53\68\50\51\73\69\101\51\77\68\53\51\99\115\107\51\82\48\122\51\53\78\49\51\66\122\70\51\115\78\76\51\68\121\68\51\102\106\122\51\65\97\86\51\99\73\86\51\77\85\121\51\55\51\112\51\108\49\68\51\104\65\57\51\56\73\73\51\104\85\57\51\113\75\48\51\54\49\105\51\107\106\71\51\112\73\68\50\73\51\51\111\52\56\51\115\88\57\51\113\114\48\51\115\120\66\51\112\102\114\51\83\120\68\51\115\107\68\51\106\54\104\51\109\54\51\51\56\98\115\51\75\70\54\51\98\75\106\51\77\79\100\51\54\56\73\51\54\80\116\51\65\108\120\51\113\101\65\51\108\122\85\51\74\88\87\51\115\82\101\51\109\68\71\51\113\52\111\51\67\97\104\51\49\90\107\49\48\50\54\117\51\100\52\67\51\80\71\101\51\106\69\79\51\82\75\54\51\53\54\52\51\106\55\108\51\53\81\66\51\70\72\86\51\74\121\89\51\82\102\78\51\83\122\49\51\80\115\66\51\113\70\48\51\80\78\112\51\82\70\115\51\83\50\108\51\75\87\54\51\82\90\79\51\81\115\53\51\54\57\121\51\81\115\55\51\115\114\90\51\55\72\54\51\115\80\56\51\53\106\57\51\112\71\110\51\80\82\68\51\76\109\80\51\78\55\70\51\65\56\48\51\111\50\114\51\78\55\73\51\56\87\120\51\70\77\88\51\51\55\97\51\72\115\72\51\103\54\86\51\104\83\106\51\74\70\89\51\52\48\98\51\109\119\85\51\52\67\54\51\76\106\116\51\114\71\103\51\82\86\80\51\54\49\103\51\107\49\117\51\80\51\110\51\103\67\50\51\76\109\55\51\68\48\105\51\109\52\49\51\107\55\51\51\109\88\111\51\115\53\84\51\71\106\122\51\71\121\48\51\82\87\78\51\111\88\78\51\112\98\56\51\109\102\116\51\82\71\111\51\115\68\57\51\82\51\101\51\113\112\122\51\77\113\122\51\112\51\104\51\56\110\49\51\79\72\74\51\75\109\97\51\82\74\122\51\53\100\50\51\99\51\85\51\83\100\118\51\113\54\121\51\80\87\81\51\84\48\113\51\77\110\84\51\83\51\72\51\110\109\89\51\104\53\80\51\107\48\101\51\82\114\55\51\66\65\73\51\79\51\90\51\115\55\100\51\54\119\105\51\76\103\56\51\82\51\75\51\56\98\115\51\104\76\119\51\99\111\56\51\115\113\81\51\113\116\114\51\55\67\65\51\113\110\52\51\99\79\56\51\113\65\76\51\54\85\53\51\75\56\102\51\69\99\85\51\54\112\84\51\100\87\69\51\111\53\49\51\115\105\54\51\80\74\68\51\82\114\79\51\78\97\49\51\83\101\120\51\102\67\111\51\54\48\54\51\116\49\65\51\50\66\52\51\111\53\53\51\71\107\84\51\74\117\57\51\83\115\73\51\81\114\119\51\69\120\49\51\72\115\117\51\78\80\53\51\104\83\119\51\69\53\53\51\102\116\113\51\114\52\51\51\53\70\99\51\79\102\117\51\55\55\69\51\115\49\53\51\114\74\71\51\102\49\99\51\113\55\99\51\108\84\118\51\115\102\103\51\111\53\66\51\79\90\120\51\112\54\101\51\70\53\107\51\83\115\51\51\108\105\115\51\57\87\120\51\102\56\90\51\73\88\55\51\74\118\106\50\49\69\51\57\113\52\51\78\98\72\51\82\74\70\51\114\77\68\51\75\76\56\51\115\109\102\51\115\105\85\51\78\79\107\51\83\122\53\51\115\119\53\51\110\52\117\51\111\54\50\51\56\57\74\51\108\109\51\51\56\73\85\51\116\50\89\51\82\77\87\51\116\51\48\51\115\54\107\51\79\117\68\51\115\119\74\51\114\78\49\51\106\57\54\51\78\109\75\51\66\98\48\51\67\56\89\51\83\81\114\51\112\84\48\51\75\102\97\51\57\99\109\51\71\53\108\51\80\70\56\51\108\53\69\51\83\71\118\51\75\105\74\51\76\83\53\51\101\76\85\51\76\71\110\51\83\97\83\51\79\48\83\51\83\97\117\51\99\79\121\51\113\76\53\51\114\51\118\51\81\100\57\51\69\67\78\51\101\80\72\51\108\78\114\51\55\53\78\51\81\106\114\51\114\69\102\51\115\75\104\51\69\98\79\51\71\76\65\51\55\51\80\51\83\100\114\51\115\103\84\51\112\84\110\51\106\88\122\51\79\122\51\51\110\82\68\51\115\85\85\51\108\69\80\51\71\57\120\51\79\56\66\51\83\72\81\51\110\65\50\51\115\117\80\51\106\65\105\51\75\53\53\51\104\90\66\50\101\51\50\53\57\50\50\112\50\53\49\50\54\83\51\49\50\69\50\52\122\49\79\50\52\52\50\51\97\50\50\48\49\55\49\89\50\49\53\50\54\81\50\52\74\49\108\50\54\70\51\53\81\50\51\69\100\78\51\114\50\88\51\82\109\70\51\114\50\90\51\115\119\49\51\112\83\99\51\115\115\118\51\108\55\110\51\84\53\78\51\80\48\110\51\100\53\52\51\70\52\88\51\111\53\79\51\68\73\105\51\83\89\104\51\70\81\113\51\108\73\77\51\107\87\99\51\116\49\90\51\83\118\77\51\74\81\102\51\108\119\75\51\102\49\50\51\115\67\111\51\110\83\56\51\51\52\97\51\77\49\67\51\79\53\75\51\76\81\90\51\114\52\97\51\115\122\65\51\103\115\101\51\57\118\69\51\99\54\97\51\116\52\75\51\107\119\82\51\80\55\103\51\104\51\115\51\111\120\48\51\55\57\121\51\104\78\73\51\112\51\85\51\99\109\69\51\83\112\49\51\65\105\76\51\108\56\99\51\80\98\52\51\114\77\117\51\80\111\120\51\116\53\85\51\82\90\118\51\80\86\121\51\107\101\112\51\109\67\55\51\115\71\77\51\111\88\117\51\113\106\76\51\116\52\84\51\54\79\51\51\108\53\68\51\102\83\89\51\83\78\100\51\52\110\113\51\105\76\55\51\103\52\84\51\115\75\56\51\97\51\117\51\116\52\52\51\55\114\121\51\77\114\112\51\107\81\73\51\114\77\67\51\65\52\89\51\55\107\49\51\75\70\97\51\69\71\122\51\113\78\66\51\82\75\113\51\77\86\54\51\70\106\112\51\100\89\69\51\81\48\67\51\54\111\51\51\116\57\116\51\76\76\48\51\84\54\71\51\113\51\76\51\115\52\55\51\114\116\115\51\83\65\89\51\65\49\99\51\82\88\49\51\111\69\48\51\53\68\50\51\114\55\105\51\104\50\65\51\73\50\90\50\69\51\50\50\80\50\49\50\50\53\102\50\52\57\50\50\57\50\54\121\50\53\77\49\72\50\51\88\51\53\80\100\49\83\50\54\88\50\51\75\50\53\116\50\54\122\50\54\51\50\55\50\51\74\120\118\51\53\86\79\51\105\82\89\51\113\89\114\51\112\115\115\51\114\56\52\51\110\54\118\51\68\104\112\51\114\98\101\51\101\77\76\51\75\53\113\51\109\51\70\51\75\104\105\51\116\53\50\51\113\67\101\51\108\109\77\51\113\105\101\51\75\68\119\51\73\52\53\51\115\89\112\51\52\76\122\51\101\57\54\51\107\80\66\51\81\108\79\51\77\84\51\51\110\50\73\51\74\49\102\51\82\77\113\51\101\71\101\51\67\56\48\51\57\120\97\51\111\116\84\51\83\118\53\51\83\71\97\51\55\48\105\51\103\56\49\51\110\104\77\51\102\57\74\51\74\68\48\51\111\68\49\51\97\101\56\51\111\78\52\51\82\118\69\51\113\105\81\51\116\53\75\51\112\104\73\51\84\53\77\51\109\73\51\51\115\119\54\51\112\48\79\51\110\105\99\51\83\70\67\51\51\55\97\51\84\51\97\51\83\54\102\51\115\100\51\51\98\116\77\51\83\100\53\51\114\71\109\51\115\84\54\51\114\51\99\51\83\57\122\51\81\51\48\51\105\76\73\51\71\48\98\51\68\112\85\51\54\87\65\51\108\49\82\51\103\104\90\51\78\87\71\51\115\78\71\51\109\121\65\51\79\89\100\51\82\116\83\51\114\107\49\51\51\75\90\51\108\49\83\51\74\48\102\51\106\68\121\51\97\53\79\51\57\72\50\51\103\84\120\51\111\82\109\51\116\97\101\51\79\86\78\51\72\69\66\51\111\51\49\51\98\75\74\51\102\50\84\51\83\88\49\51\75\78\49\51\101\67\99\51\75\116\90\51\115\110\117\51\113\84\105\51\109\82\69\51\104\49\83\51\69\76\84\51\51\54\79\51\97\76\52\51\77\71\53\51\75\113\70\51\113\116\89\51\52\109\98\51\109\90\52\51\83\55\80\51\77\90\65\51\57\68\100\51\112\81\86\50\101\51\50\53\111\50\50\52\51\97\87\53\50\50\122\50\50\112\49\57\50\49\75\50\53\51\50\51\118\50\54\51\50\53\82\50\52\74\50\50\69\50\54\52\50\51\73\50\49\79\50\53\82\51\81\79\53\51\97\49\49\51\109\79\105\51\53\112\57\51\112\57\71\51\109\80\52\51\102\55\87\51\107\103\69\51\79\66\86\51\57\118\97\51\55\86\121\51\80\100\53\51\107\80\113\51\115\67\50\51\83\80\75\51\115\109\97\51\98\89\75\51\109\69\109\51\102\100\100\51\112\54\115\51\110\52\77\51\84\49\110\51\112\121\104\51\84\56\49\51\115\122\52\51\115\115\119\51\81\56\81\51\83\115\89\51\77\108\87\51\74\89\52\51\111\102\67\51\83\82\121\51\83\67\72\51\79\90\119\51\79\99\112\51\75\51\52\51\74\81\102\51\79\77\115\51\113\102\101\51\109\51\112\51\115\108\84\51\82\74\66\51\77\101\105\51\57\88\52\51\72\53\121\51\76\84\51\51\80\48\88\51\114\50\76\51\109\98\82\51\73\106\78\51\81\66\82\51\73\74\81\51\78\52\99\51\110\80\53\51\109\102\68\51\78\105\79\51\54\49\101\51\82\68\108\51\66\52\106\51\110\52\122\51\106\49\109\51\113\50\118\51\114\54\77\51\82\54\114\51\82\71\112\51\114\87\83\51\114\116\78\51\65\71\54\51\98\112\110\51\100\67\81\51\72\82\73\51\75\109\86\51\81\48\52\51\98\48\66\51\72\57\54\51\109\71\53\51\79\79\51\51\76\117\122\51\109\122\57\51\103\80\83\51\52\89\86\51\107\48\77\51\54\55\66\51\68\90\72\51\70\115\54\51\115\113\56\51\116\97\66\51\80\70\114\51\114\87\119\51\113\68\57\51\72\89\48\51\101\51\55\51\77\78\87\51\65\81\88\51\101\90\115\51\107\121\57\51\106\57\57\51\81\75\106\51\84\65\72\51\99\74\108\51\82\110\106\51\76\49\121\51\55\74\105\51\110\103\114\51\72\109\113\51\79\112\56\51\115\117\69\51\71\89\85\51\113\89\52\51\65\49\49\51\56\106\97\50\101\51\51\49\104\115\50\51\81\50\49\57\50\49\56\50\50\88\50\53\54\50\52\70\50\50\69\50\52\116\50\49\51\50\55\51\50\51\52\51\103\50\48\50\53\81\50\54\83\50\50\68\51\80\67\74\51\114\102\49\51\52\75\102\51\105\118\109\51\84\52\73\50\50\51\51\114\118\82\51\74\82\104\51\99\49\98\51\115\90\74\51\101\52\90\51\106\48\112\51\100\78\67\51\101\50\54\51\77\81\110\51\52\109\115\51\81\54\50\51\115\77\57\51\82\122\109\51\81\70\90\51\75\53\116\51\112\89\57\51\112\119\88\51\77\52\56\51\77\55\88\51\82\115\57\51\76\74\50\51\115\53\55\51\82\77\73\51\83\57\110\51\115\98\89\51\110\105\52\51\83\90\55\51\76\102\65\51\80\77\75\51\57\107\117\51\65\66\88\51\113\118\100\51\114\106\52\51\84\53\51\51\74\70\72\51\82\122\48\51\114\57\55\51\52\56\55\51\78\112\108\51\105\116\68\51\106\49\98\51\102\57\52\51\68\80\106\51\57\88\112\51\102\76\109\51\115\112\120\51\83\77\117\51\111\117\57\51\116\50\90\51\116\57\97\51\83\57\120\51\114\119\113\51\114\106\114\51\102\114\81\51\81\68\50\51\83\103\79\51\78\114\79\51\113\100\111\51\114\120\105\51\115\104\100\51\102\83\48\51\101\67\70\51\106\87\56\51\107\50\89\51\115\48\108\51\80\70\53\51\71\107\116\51\54\56\98\51\54\54\77\51\78\116\89\51\83\52\48\51\82\100\74\51\55\106\122\51\79\54\109\51\53\65\52\51\113\81\113\51\79\72\76\51\76\104\66\51\102\115\52\51\53\99\107\51\83\104\52\51\113\103\105\51\115\106\120\51\52\89\118\51\81\104\53\51\80\77\48\51\83\71\120\51\53\75\68\51\83\75\74\51\114\85\111\51\55\75\97\51\84\107\56\51\115\114\51\51\74\112\56\51\110\71\110\51\57\48\77\51\80\121\55\51\51\67\73\51\81\75\109\51\82\82\83\51\78\51\71\51\84\55\67\50\87\68\50\50\100\50\50\122\50\51\84\50\52\75\50\53\48\50\52\112\50\52\117\50\52\51\50\49\107\50\53\90\50\50\71\50\53\65\51\50\104\74\49\101\50\52\78\50\50\120\50\54\57\51\80\88\75\51\72\101\107\51\109\83\51\51\84\98\54\51\51\114\57\51\55\76\55\51\76\122\116\51\115\79\105\51\110\103\77\51\77\66\82\51\100\74\75\51\107\71\110\51\116\105\103\51\73\48\97\51\69\110\117\51\75\103\114\51\114\70\71\51\110\99\78\51\109\52\56\51\105\48\77\51\114\99\117\51\112\104\67\51\107\72\55\51\115\66\86\51\114\105\107\51\84\53\76\51\84\70\66\51\82\86\75\51\76\116\73\51\108\112\117\51\113\53\120\51\114\106\72\51\106\89\78\51\74\70\65\51\83\54\49\51\115\118\73\51\83\56\113\51\108\77\109\51\81\115\99\51\113\118\104\51\81\105\103\51\84\102\79\51\72\102\78\51\71\114\108\51\73\120\55\51\101\78\57\51\107\101\52\51\116\53\102\51\83\99\84\51\114\74\71\51\73\107\105\51\50\110\82\51\78\70\49\51\108\77\51\51\57\79\55\51\116\53\116\51\71\111\72\51\116\106\112\51\108\106\86\51\114\68\65\51\115\54\109\51\108\52\88\51\113\57\85\51\108\78\74\51\114\48\115\51\77\71\49\51\100\103\50\51\53\57\51\51\111\111\109\51\109\118\110\51\77\82\49\51\51\70\102\51\108\111\112\51\115\97\53\51\83\100\73\51\104\108\57\51\73\73\98\51\76\100\100\51\82\55\112\51\112\87\55\51\82\81\81\51\107\48\66\51\84\51\66\51\53\68\111\51\112\98\83\51\98\75\106\51\103\80\65\51\82\55\69\51\97\108\106\51\74\115\54\51\53\68\56\51\107\85\71\51\115\78\54\51\79\69\73\51\103\120\109\51\79\75\114\51\56\97\83\51\108\53\98\51\109\86\50\51\115\48\106\51\113\120\115\51\79\68\82\51\103\112\104\51\56\98\50\51\109\107\82\51\66\103\117\51\111\122\55\51\115\98\50\51\73\78\80\51\69\77\113\51\77\111\107\51\116\108\114\51\67\112\82\51\57\80\100\51\76\68\122\50\119\68\50\49\86\50\50\68\50\49\111\50\51\68\49\70\50\55\50\50\53\69\51\98\71\49\50\50\77\50\49\104\50\49\74\50\50\103\50\51\57\50\49\120\50\51\105\50\49\49\50\49\57\51\53\81\50\51\75\80\77\51\112\48\57\49\53\51\79\90\113\51\83\90\68\51\79\81\49\51\114\84\72\51\107\87\56\51\82\66\121\51\115\108\108\51\71\69\121\51\108\77\109\51\113\112\68\51\98\83\106\51\102\114\48\51\81\112\71\51\53\52\106\51\99\113\108\51\113\86\77\51\109\105\107\51\84\102\116\51\109\73\121\51\81\87\54\51\110\82\113\51\83\114\48\51\77\98\114\51\114\56\80\51\69\102\97\51\109\80\72\51\114\56\115\51\52\57\103\51\112\69\65\51\80\115\50\51\114\50\86\51\76\69\88\51\109\72\84\51\108\98\89\51\104\66\118\51\84\67\98\51\81\56\111\51\84\77\69\51\83\73\88\51\84\74\50\51\108\112\85\51\80\115\74\51\83\116\50\51\71\111\103\51\74\103\71\51\115\90\84\51\115\106\78\51\115\110\48\51\77\113\120\51\111\114\54\51\100\112\53\51\78\74\51\51\116\110\81\51\103\72\83\51\99\74\56\51\83\73\109\51\67\79\67\51\97\103\70\51\80\73\83\51\77\110\109\51\57\99\54\51\99\79\100\51\83\54\122\51\111\82\111\51\66\122\50\51\112\66\111\51\80\53\103\51\79\65\79\51\83\100\112\51\76\71\82\51\113\55\54\51\70\83\85\51\83\83\80\51\112\56\72\51\100\100\73\51\80\51\118\51\109\118\49\51\111\48\103\51\114\50\76\51\77\75\70\51\81\81\69\51\80\90\86\51\55\114\121\51\101\72\56\51\80\53\111\51\114\75\85\51\67\89\85\51\57\80\100\50\101\51\49\102\50\54\57\50\52\100\49\105\50\50\50\51\72\73\111\50\50\66\50\49\86\50\51\115\50\51\83\49\68\50\54\78\50\54\81\50\49\119\50\51\54\49\83\50\54\90\51\83\52\117\51\83\49\113\51\101\52\65\51\105\118\83\51\115\76\55\51\74\65\105\51\108\97\50\51\109\65\107\51\67\122\76\51\109\49\117\51\113\111\119\51\109\98\69\51\53\67\106\51\109\55\122\51\82\67\120\51\111\120\69\51\116\81\104\51\116\56\51\51\116\67\69\51\84\53\79\51\112\48\111\51\71\98\121\51\114\80\117\51\76\73\109\51\80\121\117\51\53\106\57\51\109\115\85\51\75\68\87\51\81\108\106\51\82\67\53\51\51\56\66\51\84\53\97\51\80\107\56\51\106\49\66\51\79\116\75\51\76\102\118\51\103\66\80\51\103\66\114\49\53\51\80\72\53\51\82\80\110\51\115\51\48\51\83\114\87\51\115\51\50\51\81\56\100\51\76\55\89\51\66\51\118\51\76\85\53\51\76\71\49\51\83\90\106\51\109\112\104\51\83\50\115\51\98\52\53\51\54\100\98\51\108\122\85\51\77\109\79\51\54\110\54\51\83\51\54\51\115\80\121\51\82\109\86\51\116\110\56\51\116\81\113\51\83\81\50\51\116\81\115\51\111\65\56\51\67\110\83\51\71\67\80\51\100\89\117\51\98\75\74\51\72\49\99\51\68\103\120\51\111\55\57\51\83\84\76\51\55\51\67\51\69\80\88\51\79\55\87\51\106\68\77\51\52\77\66\51\104\49\54\51\106\81\81\51\80\70\67\51\73\54\51\51\57\53\82\51\76\121\69\51\80\98\76\51\75\102\67\51\82\82\65\51\56\53\51\51\109\57\101\51\112\102\71\51\78\57\79\51\113\68\105\51\115\122\121\51\77\79\98\51\83\51\83\51\78\53\71\51\84\114\99\51\83\101\98\51\114\116\115\51\80\90\89\51\104\69\50\51\102\55\50\51\109\48\48\51\82\101\106\51\55\75\122\51\72\54\113\51\110\107\57\50\55\55\50\101\51\50\53\117\51\51\99\69\50\52\55\50\53\52\49\79\50\49\57\50\50\71\50\49\110\50\54\86\50\52\83\50\110\84\50\54\53\50\52\120\50\113\54\50\53\110\51\67\53\119\51\116\79\116\51\74\101\98\51\78\103\119\51\78\54\85\51\107\56\122\51\77\107\90\51\102\99\114\51\103\121\121\51\109\116\104\51\82\53\56\51\110\97\82\51\115\79\79\51\116\109\99\51\84\67\67\51\116\113\73\51\115\90\54\51\84\102\68\51\79\54\50\51\80\97\85\51\78\76\98\51\80\51\70\51\56\51\80\51\83\48\65\51\108\77\51\51\55\74\116\51\115\118\50\51\69\65\122\51\74\82\74\51\67\113\88\51\116\71\49\51\77\84\121\51\74\74\50\51\84\50\117\51\111\102\86\51\113\50\113\51\55\55\108\51\113\99\99\51\115\80\54\51\57\101\99\51\78\55\97\51\112\86\65\51\106\113\70\51\66\87\113\51\113\49\113\51\114\87\104\51\77\105\81\51\105\56\98\51\77\84\49\51\114\81\52\51\73\105\97\51\84\107\68\51\111\106\70\51\115\106\51\51\81\57\109\51\66\111\109\51\81\103\53\51\76\52\116\51\115\81\49\51\84\53\120\51\84\85\54\51\82\84\109\51\84\54\48\51\76\117\113\51\57\48\51\51\55\121\78\51\81\65\99\51\54\120\75\51\116\104\98\51\53\100\79\51\112\66\70\51\112\49\82\51\54\55\50\51\101\76\117\51\84\48\72\51\116\103\78\51\116\85\120\51\102\88\54\51\101\88\111\51\115\48\50\51\116\48\48\51\54\115\66\51\116\107\55\51\113\101\50\51\84\103\86\51\83\117\52\49\49\51\112\87\103\51\83\72\66\51\114\68\85\51\116\54\105\51\97\48\51\51\84\68\74\51\83\81\70\51\114\104\104\51\53\75\100\51\80\77\110\51\84\65\49\51\100\117\121\51\115\74\119\51\112\99\103\51\82\78\89\51\82\116\120\51\56\50\104\51\65\66\54\50\69\51\50\52\48\50\50\110\50\52\82\50\49\116\50\51\120\50\49\104\50\51\119\50\54\106\49\80\50\53\75\49\90\50\49\51\50\52\122\49\86\50\51\77\50\51\110\50\49\83\50\54\48\51\81\72\82\51\107\56\90\51\78\107\56\51\72\77\84\51\76\69\80\51\72\54\80\51\80\117\48\51\111\53\50\51\115\101\90\51\77\79\74\51\80\103\71\51\84\98\101\51\75\83\90\51\83\121\74\51\70\73\72\51\104\48\55\51\106\106\70\51\106\113\70\51\72\55\120\51\112\48\49\51\83\102\110\51\82\50\78\51\81\80\74\51\103\114\112\51\77\116\51\51\115\73\77\51\84\105\110\51\83\53\104\51\115\77\98\51\75\53\116\51\77\116\68\51\113\69\83\51\84\49\71\51\83\89\120\51\115\115\114\51\83\121\122\51\116\81\71\51\84\56\50\51\115\119\52\51\116\83\120\51\116\56\53\51\100\78\50\51\77\84\84\51\83\53\75\51\115\50\80\51\72\56\72\51\109\52\48\51\80\114\90\51\110\80\53\51\104\71\107\51\74\90\78\51\101\56\48\51\109\70\76\51\84\56\82\51\98\50\110\51\109\85\66\51\82\54\76\51\70\78\57\51\74\86\119\51\83\106\75\51\81\54\66\51\81\112\118\51\83\119\105\51\84\120\106\51\82\48\56\51\78\67\48\51\81\81\48\51\81\69\48\51\83\82\49\51\112\49\106\51\110\71\55\51\79\82\117\51\73\68\74\51\114\97\101\51\76\71\115\51\104\112\75\51\97\97\81\51\57\99\100\51\84\51\116\51\57\67\54\51\113\109\84\51\101\121\50\51\98\80\108\51\80\87\66\51\76\71\75\50\73\51\51\75\55\120\51\82\51\87\51\100\89\68\51\84\48\78\51\80\81\51\51\83\54\118\51\81\82\49\51\115\110\74\51\115\119\115\51\107\88\88\51\116\53\48\51\102\102\84\51\71\120\54\51\113\84\76\51\52\67\51\51\81\119\53\51\84\55\49\51\80\113\67\50\119\68\50\49\68\50\50\52\50\77\77\50\51\109\50\52\53\50\51\83\51\53\53\57\50\54\78\49\70\50\49\52\51\53\56\104\49\122\49\51\50\49\114\50\50\110\51\114\79\77\51\114\114\76\51\100\81\78\51\112\81\121\51\84\105\55\51\84\79\112\51\82\79\83\51\82\56\53\51\84\55\52\51\82\108\72\51\76\55\66\51\84\52\107\51\108\71\49\51\79\99\68\51\113\111\78\51\79\50\87\51\55\57\121\51\77\102\100\51\107\50\82\51\52\109\115\51\78\48\53\51\77\48\49\51\112\54\81\51\82\115\57\51\83\57\107\51\116\105\120\51\83\50\72\51\83\111\81\51\115\71\48\51\83\77\77\51\83\105\89\51\77\98\80\51\113\90\72\51\83\102\53\51\110\86\85\51\70\121\50\51\76\66\113\51\116\110\50\51\57\120\77\51\80\101\69\51\81\49\89\51\109\113\79\51\77\108\89\51\84\66\71\50\106\78\51\77\101\56\51\81\56\119\51\114\106\54\51\104\70\108\51\79\84\103\51\55\111\102\51\108\66\51\51\109\69\73\51\79\84\75\51\77\78\70\51\116\110\55\51\84\81\80\51\114\84\74\51\110\56\102\51\82\116\76\51\117\49\51\51\111\88\117\51\81\77\115\51\78\109\76\51\51\102\107\51\57\110\51\51\104\49\97\51\115\51\114\51\77\118\66\51\82\120\110\51\67\79\56\51\114\48\119\51\57\110\51\51\76\68\52\51\81\68\57\51\100\89\100\51\109\110\102\51\84\104\101\51\112\109\51\51\53\77\110\51\107\48\55\51\106\120\102\51\79\101\54\51\54\102\51\51\79\104\74\51\113\81\102\51\116\65\57\51\115\52\54\51\116\74\122\51\69\51\90\51\110\78\65\51\85\49\70\51\80\51\73\51\54\111\48\51\80\109\52\51\111\83\50\51\110\114\49\51\113\55\75\51\110\78\113\51\97\109\106\51\116\66\65\51\81\101\99\51\55\69\79\51\105\122\81\51\84\66\52\51\55\108\55\50\101\51\50\49\84\50\51\106\50\49\116\50\52\99\50\53\51\50\50\78\50\54\98\50\49\120\50\51\50\50\53\49\50\52\66\50\49\117\50\51\79\51\98\48\55\50\49\119\50\51\120\51\84\69\108\51\69\56\79\51\106\72\90\51\107\56\122\51\116\76\86\51\85\50\120\51\82\89\74\51\80\101\53\51\106\110\48\51\83\53\110\51\77\55\113\51\110\80\53\51\101\50\54\51\73\74\118\51\102\106\109\51\116\83\113\51\112\51\51\51\77\98\104\51\116\56\48\51\116\49\80\51\82\80\51\51\116\49\114\51\83\103\50\51\115\67\49\51\70\117\115\51\82\50\51\51\76\109\51\51\74\117\52\51\111\70\117\51\83\102\115\51\116\106\74\51\51\100\103\51\109\78\102\51\111\87\68\51\109\49\50\51\110\66\54\51\97\78\85\51\112\75\50\51\115\112\66\51\79\87\74\51\115\106\99\51\51\56\98\51\81\79\107\51\116\106\102\51\74\81\110\50\53\56\51\85\51\53\51\50\82\48\51\101\107\101\51\115\90\114\51\101\102\80\51\114\106\111\51\84\57\98\51\109\53\56\51\84\78\99\51\84\53\90\51\100\70\114\51\112\49\57\51\114\51\77\51\74\97\48\51\54\55\53\51\107\109\72\51\53\110\53\51\104\53\56\51\109\50\73\51\82\55\66\51\110\49\112\51\79\79\109\51\75\113\54\51\70\55\50\51\66\75\55\51\103\52\110\51\80\83\119\51\80\53\70\51\108\121\55\51\71\53\66\51\72\88\113\51\104\72\73\51\82\113\73\51\85\53\49\51\83\107\103\51\70\114\90\51\85\53\52\51\76\121\114\51\78\87\120\51\116\100\103\51\116\75\71\51\105\101\88\51\72\104\102\51\115\84\79\51\84\121\103\51\84\54\84\51\81\67\117\51\83\55\81\51\56\80\50\51\81\72\116\51\53\80\52\50\101\51\50\52\81\50\49\67\50\51\100\50\53\53\50\49\54\50\55\49\50\51\48\50\51\52\49\56\50\50\121\50\54\105\50\53\53\49\111\50\49\113\50\53\104\50\53\122\50\49\53\51\73\110\108\51\73\86\76\51\70\108\54\51\103\53\85\51\114\101\76\51\113\121\53\51\100\118\105\51\84\122\76\51\84\57\78\51\83\57\68\51\72\102\57\51\110\88\107\51\107\53\116\51\99\67\108\51\81\57\75\51\97\78\111\51\110\80\98\51\116\49\89\51\83\50\49\51\98\56\52\51\116\88\48\51\116\98\75\51\114\50\97\51\114\53\117\51\79\81\67\51\82\84\55\51\112\107\56\51\69\88\55\51\78\49\65\51\83\102\115\51\82\122\56\51\115\50\69\51\114\122\97\51\85\54\107\51\111\116\48\51\113\70\49\51\113\67\53\51\117\54\79\51\115\53\68\51\77\108\88\51\116\87\76\51\71\90\81\51\103\78\110\51\114\89\78\51\78\69\50\51\77\73\87\51\67\109\99\51\105\48\50\51\107\76\83\51\77\52\116\51\80\90\54\51\81\119\114\51\83\54\73\51\114\103\76\51\116\117\52\51\116\88\73\51\72\48\88\51\115\74\112\51\82\97\52\51\105\53\111\51\108\49\67\51\83\48\112\51\115\116\80\51\103\116\79\51\83\107\57\51\66\117\122\51\116\78\110\49\50\51\113\85\48\51\113\71\117\51\83\104\109\51\67\83\104\51\117\56\51\51\74\100\49\51\53\121\49\51\115\68\70\51\73\50\104\51\99\52\88\51\76\111\48\49\53\51\70\51\52\51\111\73\50\51\79\117\88\51\55\51\80\51\57\117\56\51\115\107\109\51\84\104\68\51\80\84\116\51\76\111\70\51\80\105\72\51\102\115\48\51\55\114\51\51\106\115\106\51\56\105\73\51\75\109\97\51\79\108\55\51\84\54\53\51\74\107\112\51\98\48\117\51\70\74\122\51\113\55\76\51\55\68\105\51\115\52\121\51\104\50\103\51\116\79\78\51\101\72\110\51\106\88\118\51\115\98\109\51\83\76\56\51\55\54\48\50\115\72\50\51\119\50\49\111\50\53\90\50\52\48\50\49\80\49\49\50\50\57\49\54\50\49\48\50\52\72\50\52\103\51\68\52\54\49\57\49\122\51\49\66\52\51\77\107\120\51\108\101\81\51\57\115\97\51\79\70\67\51\80\89\114\51\85\57\81\51\107\104\108\51\108\109\77\51\114\57\52\51\112\114\68\51\100\87\81\51\115\112\100\51\70\109\110\51\81\49\84\51\101\115\80\50\53\56\51\74\89\77\51\68\74\52\51\51\112\113\51\116\84\79\51\53\54\52\51\101\82\53\51\81\50\103\51\84\55\90\51\84\87\55\51\114\67\89\51\116\109\68\51\116\83\119\51\110\69\73\51\80\104\77\51\102\48\67\51\79\53\112\51\116\50\107\51\115\119\97\51\103\115\71\51\67\50\77\51\67\50\111\51\111\116\122\51\53\102\99\51\68\74\88\51\115\111\121\51\72\52\111\51\107\87\80\51\68\119\117\51\100\110\54\51\76\51\65\51\113\50\53\51\84\56\121\51\72\110\72\51\111\99\72\50\53\56\51\84\56\110\51\99\49\77\51\84\57\118\51\85\55\70\51\108\114\52\51\81\57\81\51\83\57\121\51\116\103\69\51\82\81\70\51\112\49\56\51\66\107\48\51\56\90\54\51\99\52\79\51\78\57\48\51\53\110\49\51\84\54\88\51\52\83\49\51\73\121\76\51\116\82\104\51\116\54\109\51\113\54\79\51\110\85\99\51\101\116\49\51\117\52\83\51\57\111\51\51\115\97\51\51\84\89\66\51\112\50\53\51\114\100\118\51\71\104\100\51\81\113\117\51\107\70\65\51\100\67\81\51\105\48\50\51\75\51\88\51\101\89\51\51\79\85\113\51\53\68\50\51\108\105\67\51\54\78\121\51\85\52\105\51\108\121\73\51\57\78\104\51\105\90\98\51\56\117\87\51\82\81\117\51\114\114\68\51\53\109\89\51\69\70\75\51\75\56\118\51\55\76\74\50\69\51\50\76\98\50\53\50\51\52\75\105\51\98\49\70\51\51\88\106\50\52\74\49\106\50\49\81\50\51\57\50\49\115\50\49\105\50\53\81\50\51\122\50\54\53\51\81\75\111\51\103\54\50\51\105\55\112\51\82\52\80\51\84\52\101\51\81\117\106\51\108\73\53\51\82\66\57\51\55\108\54\51\99\80\120\51\106\78\77\51\79\110\49\51\108\85\85\51\110\98\50\51\117\51\117\51\104\74\109\51\107\90\82\51\79\57\65\51\103\122\83\51\83\50\54\51\108\51\56\51\76\117\55\51\115\56\121\51\117\55\68\51\110\52\104\51\104\86\78\51\83\57\50\51\111\107\50\51\73\53\50\51\113\50\51\51\109\98\85\51\116\109\48\51\112\79\111\51\55\57\89\51\110\115\75\51\65\105\108\51\98\115\54\51\79\77\107\51\84\70\48\51\116\73\79\51\56\100\84\51\102\54\109\51\112\104\65\51\117\68\100\51\54\115\78\51\110\83\82\51\116\77\66\51\117\68\71\51\116\87\57\51\85\100\73\51\79\110\67\51\80\83\104\51\72\55\73\51\80\55\80\51\79\82\50\51\84\85\50\51\79\65\52\51\85\49\48\51\84\57\67\51\79\51\103\51\117\65\117\51\115\103\110\51\110\56\78\51\111\51\117\51\56\97\66\51\85\52\101\51\51\71\86\51\101\55\75\51\82\79\51\51\54\102\51\51\65\53\107\51\70\74\106\51\117\56\49\51\77\50\83\51\77\86\72\51\81\68\57\51\56\110\117\51\111\97\106\51\56\111\65\51\66\71\50\51\114\110\53\51\54\49\73\51\80\56\53\51\105\65\57\51\111\48\99\51\114\85\104\51\117\49\105\51\111\107\109\51\108\86\54\51\104\105\54\51\81\48\76\51\81\49\74\51\79\97\98\51\97\85\74\51\99\84\112\51\85\56\57\51\78\81\78\51\115\81\57\51\113\82\50\51\81\85\68\51\82\110\122\51\54\49\105\51\84\111\107\51\82\98\102\51\56\53\79\51\116\104\111\50\119\100\50\54\49\50\52\52\50\52\52\49\86\50\52\121\50\52\76\50\54\54\50\54\56\49\86\50\54\121\50\51\78\49\117\50\54\110\50\53\52\50\51\77\49\84\50\50\112\49\73\51\83\49\105\51\117\67\82\51\66\76\86\51\114\49\84\51\107\67\86\51\76\54\84\51\114\76\73\51\82\89\84\51\113\86\100\51\84\56\100\51\112\118\57\51\83\56\114\51\110\98\97\51\84\50\53\51\66\105\111\51\107\122\88\51\104\111\74\51\107\54\84\51\80\107\97\51\105\56\115\51\73\55\116\51\83\83\97\51\103\56\52\51\110\49\50\51\105\112\99\51\77\77\104\51\73\48\57\51\114\102\99\51\109\52\51\51\114\102\69\51\68\53\112\51\105\87\116\51\108\49\116\51\114\99\100\51\53\105\54\51\56\70\54\49\56\51\82\54\104\51\109\73\54\51\76\109\51\51\69\121\68\51\78\48\79\51\76\109\89\51\77\52\98\51\85\48\66\51\84\102\65\51\117\104\100\51\112\121\109\51\117\104\70\51\101\87\52\51\65\66\48\51\114\56\109\51\84\88\68\51\112\49\48\51\112\73\49\51\112\52\73\51\83\100\55\51\85\69\67\51\84\51\51\51\114\74\83\51\83\119\108\51\72\49\50\51\67\65\50\51\83\110\108\51\57\122\54\51\81\120\90\51\83\48\70\51\101\88\111\51\74\50\51\51\109\54\99\51\113\81\75\51\57\48\51\51\57\105\110\51\116\82\81\51\54\79\51\51\84\100\79\51\74\113\81\51\117\49\99\51\56\105\85\51\108\72\50\51\56\53\51\51\100\67\113\51\77\78\75\51\55\113\89\51\116\48\118\51\57\99\54\51\107\66\86\51\113\81\109\51\115\87\115\51\101\51\81\51\110\122\87\51\56\52\51\51\115\54\117\51\83\88\97\51\84\68\51\51\112\102\82\51\56\79\121\51\114\79\53\51\108\54\97\51\116\108\53\50\55\98\50\50\102\50\50\79\50\52\88\50\50\109\50\53\120\50\49\69\50\53\119\50\49\76\50\50\120\50\52\72\50\50\100\50\51\80\50\49\76\50\51\52\50\55\51\50\51\53\50\51\84\51\103\101\105\51\115\114\55\51\84\90\101\50\56\54\51\57\80\68\51\117\57\100\51\84\72\78\51\117\54\51\51\80\120\110\51\111\105\71\51\103\77\113\51\103\86\122\51\78\56\57\51\114\50\52\51\81\105\97\51\82\57\49\51\102\90\68\51\71\98\53\51\114\50\57\51\54\109\67\51\117\55\54\51\106\105\87\51\112\103\116\51\78\101\122\51\85\71\77\51\116\119\72\51\76\119\83\51\115\57\49\51\111\75\49\51\100\106\72\51\77\66\114\51\83\71\55\51\106\105\122\51\80\104\84\51\117\103\87\51\57\56\113\51\75\101\101\51\79\109\72\51\117\104\48\51\117\100\78\51\84\70\49\51\57\110\71\51\68\101\50\51\102\111\72\51\85\72\54\51\84\87\53\51\108\116\65\51\117\51\99\51\115\102\121\51\114\122\99\51\114\100\48\51\85\51\103\51\116\81\75\51\77\98\80\51\111\78\102\51\84\57\55\51\75\76\120\51\84\106\79\51\117\97\114\51\84\110\66\51\116\53\89\51\114\65\51\51\85\49\52\51\116\51\54\51\112\90\114\51\112\80\88\51\114\65\111\51\56\66\83\51\68\90\102\51\112\99\52\51\57\102\104\51\80\56\117\51\80\67\66\51\78\113\70\51\106\76\67\51\84\75\51\51\115\122\122\51\71\80\68\51\67\75\53\51\116\85\66\51\56\86\50\51\56\111\97\51\110\116\119\51\56\73\50\51\113\55\55\51\114\115\104\51\57\48\65\51\114\48\68\51\81\85\55\51\117\49\86\51\67\106\115\51\105\101\67\51\115\97\67\51\112\80\55\51\73\73\51\51\112\99\99\51\114\99\83\51\114\51\119\51\100\85\90\51\83\55\105\51\109\57\76\51\81\48\66\51\76\121\54\51\74\54\79\51\105\50\90\51\83\82\68\51\55\68\73\51\73\118\114\51\117\67\114\51\73\118\84\50\87\100\50\54\115\50\53\103\50\53\107\50\51\50\51\116\65\116\50\53\82\50\53\107\49\53\50\50\76\49\89\50\54\116\50\50\109\50\53\78\50\49\49\50\49\110\50\50\69\50\51\55\51\83\76\99\51\112\57\73\51\114\82\118\51\113\79\52\51\114\88\90\51\80\78\69\51\84\105\98\51\106\51\79\51\84\55\88\51\80\115\55\51\72\110\115\51\84\83\84\51\112\65\110\51\85\48\67\51\109\84\111\51\116\113\106\51\116\87\99\51\80\51\68\51\116\49\117\51\114\80\81\51\111\106\50\51\57\118\78\51\115\53\106\51\99\98\57\51\73\115\51\51\72\110\68\51\115\57\55\51\85\101\50\51\55\48\105\51\116\57\48\51\77\88\80\51\99\54\119\51\80\103\122\51\76\52\48\51\114\72\51\51\117\107\118\51\83\118\70\51\53\73\120\51\83\49\122\51\106\109\117\51\75\116\49\51\81\108\71\51\106\89\98\51\80\114\100\51\108\97\90\51\116\88\51\51\114\53\86\51\69\49\121\51\80\107\56\51\109\49\99\51\73\108\53\51\80\71\88\51\80\52\98\51\112\55\53\51\115\53\101\51\110\116\49\51\115\54\104\51\79\51\67\51\85\111\100\51\117\49\49\51\117\97\84\51\115\113\52\51\76\49\97\51\111\117\72\51\78\54\48\51\77\71\51\51\104\57\82\51\79\89\51\51\114\84\69\51\116\68\57\51\68\84\119\51\76\79\79\51\75\85\121\51\116\120\65\51\114\97\78\51\115\48\67\51\55\106\115\51\79\56\112\51\115\120\56\51\117\49\84\51\117\109\50\51\114\51\83\51\109\86\71\51\110\50\55\51\104\68\83\51\56\53\101\51\104\121\50\51\116\113\87\51\100\50\75\51\102\66\78\51\53\89\55\51\56\104\49\51\111\52\50\51\54\79\51\51\77\103\51\51\102\111\104\51\82\51\119\51\101\99\78\51\101\89\57\51\73\73\102\51\83\85\100\51\113\111\57\51\85\57\65\51\114\86\55\51\74\116\100\51\79\80\73\51\75\49\80\51\49\107\112\51\109\107\117\51\103\73\53\50\101\51\50\54\50\50\50\116\50\49\50\50\53\74\49\55\50\54\70\50\50\118\51\72\114\54\50\51\116\50\52\122\51\81\48\86\50\53\86\50\51\113\50\52\105\50\54\83\50\51\100\51\112\106\86\51\73\75\50\51\107\86\119\51\84\115\114\51\75\118\121\51\117\97\54\51\112\100\102\51\83\53\65\51\115\79\83\51\83\109\110\51\76\70\65\51\84\56\55\51\85\51\107\51\55\49\55\51\106\118\53\51\78\100\88\51\104\86\115\51\101\106\51\51\81\79\110\51\79\103\53\51\52\57\103\51\98\121\65\51\116\57\49\51\107\80\119\51\97\110\79\51\115\86\104\51\112\79\48\51\106\98\67\51\112\68\84\51\116\56\70\51\75\68\119\51\68\111\49\51\116\66\109\51\81\99\75\51\112\72\81\51\97\50\69\51\75\119\107\51\72\102\116\51\117\71\81\51\114\101\69\51\103\111\66\51\74\53\51\51\85\97\107\51\85\114\114\51\109\52\118\51\52\122\102\51\77\52\121\51\109\102\79\51\82\90\119\51\108\74\87\51\79\71\82\51\109\99\52\51\84\51\49\51\83\100\56\51\82\48\55\51\82\103\81\51\84\106\85\51\78\56\78\51\101\76\53\51\85\105\78\51\78\117\54\51\117\53\51\51\99\79\89\51\67\79\105\51\81\51\101\51\68\99\72\51\82\120\69\51\67\57\111\51\80\116\100\51\103\117\51\51\52\73\114\51\110\88\111\51\114\108\119\51\82\117\107\51\116\107\108\51\103\100\79\51\109\53\112\51\84\100\101\51\112\115\122\51\83\55\49\51\55\113\52\51\54\102\51\51\113\68\108\51\81\71\108\51\83\81\118\51\50\85\108\51\84\54\79\51\112\70\72\51\114\82\73\51\84\100\48\51\70\107\52\51\114\68\88\51\116\75\84\51\54\87\97\51\57\55\67\51\103\52\115\51\111\56\52\51\112\88\76\51\66\114\52\51\78\117\105\51\79\52\78\51\103\77\110\51\84\114\87\50\87\68\50\49\54\50\53\65\50\51\107\50\54\65\49\109\50\49\50\50\52\83\50\54\52\50\52\78\50\50\105\50\54\79\50\50\102\50\52\57\50\51\76\51\82\49\110\50\54\74\51\108\80\99\51\83\56\100\51\102\108\49\51\98\119\51\51\100\81\121\51\103\97\71\51\98\98\49\51\110\117\89\51\82\109\114\51\100\114\101\51\106\51\80\51\57\50\67\51\77\101\80\51\112\108\53\51\117\113\109\51\115\109\74\51\81\109\57\51\85\113\112\51\84\87\98\51\116\109\71\51\115\115\122\51\117\72\50\51\117\48\50\51\54\49\71\51\110\69\76\51\83\70\70\51\114\112\86\51\110\48\67\51\85\57\83\51\110\83\52\51\54\109\99\51\85\68\50\51\115\115\104\51\104\115\100\51\106\118\74\51\71\82\81\51\108\57\55\51\104\56\68\51\106\118\104\51\70\99\119\51\81\122\65\51\114\89\109\51\103\83\53\51\74\85\101\51\80\75\115\51\74\85\71\51\56\50\86\51\84\70\117\50\54\107\51\109\98\56\49\53\51\111\67\90\51\82\109\116\51\112\48\90\51\76\117\103\51\66\121\110\51\115\106\108\51\78\84\55\51\117\111\69\51\85\49\50\51\85\86\100\51\76\99\113\51\77\89\50\51\84\65\53\51\84\68\119\51\78\103\51\51\56\116\67\51\77\71\56\51\83\114\48\51\56\73\118\51\81\55\71\51\57\121\75\51\112\110\87\51\83\48\66\51\85\76\116\51\81\55\53\51\75\52\119\51\53\100\56\51\56\85\89\51\70\55\74\51\117\115\54\51\75\115\66\51\84\68\57\51\73\50\97\51\100\112\98\51\50\114\110\51\83\116\120\51\78\67\55\51\99\56\89\51\72\116\90\51\54\70\51\51\107\52\78\51\77\103\53\51\80\56\80\51\53\106\107\51\105\75\75\51\115\48\113\51\114\66\52\51\78\113\80\51\85\119\68\51\85\79\87\51\111\52\77\51\85\80\114\50\101\51\50\52\57\50\49\105\50\51\73\49\57\51\50\77\68\50\53\70\49\87\51\111\66\112\50\52\48\50\51\66\49\105\50\53\57\50\50\86\50\52\56\50\52\107\50\53\98\51\117\74\104\51\107\89\115\51\72\102\50\51\108\83\119\51\85\99\55\51\77\54\77\51\83\53\49\51\107\49\117\51\81\56\56\51\83\56\106\51\111\117\54\51\108\109\51\51\111\122\77\51\84\69\87\51\110\111\89\51\84\57\104\51\69\79\52\51\75\86\88\51\105\48\112\51\85\75\112\51\85\120\109\51\111\50\52\51\117\81\113\51\85\88\112\51\110\111\112\51\72\111\114\51\108\84\108\51\77\105\82\51\72\115\115\51\77\73\116\51\69\78\116\51\99\86\97\51\99\49\105\51\56\50\86\51\77\68\66\51\55\86\49\51\84\87\119\51\84\112\78\51\72\70\70\51\108\116\90\51\74\70\104\51\102\101\72\51\85\57\87\51\52\108\90\51\80\79\75\51\76\87\79\51\99\71\78\51\117\65\49\51\72\75\108\51\57\76\121\51\116\117\48\51\80\101\104\51\81\57\78\51\115\100\54\51\116\99\81\51\84\51\50\51\85\118\67\51\85\108\52\51\115\97\49\51\54\53\71\51\109\50\113\51\84\48\102\51\73\73\86\51\115\77\115\51\76\68\75\51\81\52\52\51\115\110\51\51\117\102\67\51\117\52\102\51\54\115\98\51\82\65\108\51\114\51\73\51\65\108\113\51\85\101\116\51\54\88\87\51\69\116\117\51\85\76\87\51\80\66\112\51\113\77\89\51\118\49\86\51\77\53\85\51\54\79\48\51\84\72\50\51\85\118\87\51\53\78\51\51\84\121\55\51\84\51\75\51\109\82\110\51\80\122\122\51\57\122\54\51\115\51\89\51\85\69\119\51\80\99\48\51\84\89\100\51\56\65\115\51\108\57\84\51\102\84\50\50\101\51\50\51\113\50\50\102\50\51\105\50\49\104\50\50\70\50\52\52\49\57\50\51\103\50\51\118\50\51\74\50\52\68\50\54\107\50\51\104\50\54\73\50\54\87\50\51\103\50\50\74\50\53\112\51\84\72\77\51\71\105\56\51\107\116\114\51\116\52\55\51\113\82\65\51\108\76\79\51\117\81\98\51\68\109\56\51\57\112\100\51\117\54\54\51\103\50\119\51\51\98\103\51\78\86\88\51\51\55\114\51\76\103\56\51\71\78\74\51\85\55\56\51\113\106\52\51\72\51\82\51\108\103\52\51\106\48\81\51\72\56\109\51\73\74\118\51\108\57\65\51\116\83\113\51\116\105\118\51\114\105\72\51\68\83\48\51\81\56\77\51\83\90\51\51\118\49\50\51\112\54\89\51\84\56\52\51\85\68\75\51\65\88\57\51\70\117\83\51\108\109\51\51\113\50\81\51\51\66\103\51\78\102\54\51\112\52\99\51\80\55\54\51\65\110\111\51\84\49\88\51\116\102\73\51\77\69\57\51\65\110\87\51\116\122\82\51\107\75\117\51\54\109\67\51\113\90\49\51\56\56\89\51\68\100\85\51\69\69\122\51\115\74\103\51\55\104\112\51\73\49\97\51\113\77\74\51\72\48\82\51\115\87\102\51\107\55\103\51\115\87\104\51\117\72\77\51\113\74\105\51\117\115\48\51\106\115\50\51\81\100\51\51\82\106\89\51\82\69\48\51\99\57\103\51\83\114\52\51\115\103\102\51\111\55\52\51\70\83\111\51\118\50\89\51\102\70\81\51\82\56\89\51\113\100\84\51\107\82\48\51\57\105\74\51\75\113\107\51\84\57\117\51\71\75\122\51\74\97\51\51\53\77\121\51\82\97\87\51\75\81\55\51\54\55\53\51\84\111\56\51\84\107\80\51\81\78\73\51\80\84\99\51\57\72\83\51\76\107\56\51\72\57\65\51\114\115\119\51\85\119\67\51\102\111\87\51\111\52\76\51\114\84\80\51\116\74\121\51\83\75\104\51\77\110\116\51\66\48\114\51\117\87\105\51\84\76\112\51\68\90\84\51\116\86\87\51\109\112\53\51\117\50\117\51\115\101\89\51\77\122\85\51\116\55\51\51\115\79\55\51\55\101\104\50\101\51\50\50\110\50\49\48\50\53\113\49\52\50\54\119\50\49\104\50\50\52\50\108\78\49\78\50\50\48\50\55\51\50\50\74\50\54\108\50\49\80\51\50\57\73\50\52\77\51\107\57\99\51\106\55\57\51\73\78\122\51\112\111\103\51\73\79\49\51\114\54\101\51\72\82\107\51\79\56\82\51\116\49\107\51\53\71\108\51\111\56\117\51\85\104\97\51\84\115\117\51\85\113\79\51\86\49\51\51\117\120\111\51\109\73\52\51\111\54\50\51\74\90\65\51\108\70\100\51\116\84\101\51\98\50\88\51\114\115\89\51\86\52\121\51\83\54\53\51\98\78\90\51\103\74\104\51\113\57\48\51\110\48\102\51\56\82\87\51\101\110\55\51\72\119\102\51\107\87\107\51\114\103\97\51\116\53\71\51\103\98\90\51\77\98\82\51\75\57\74\51\109\98\85\51\111\74\57\51\117\85\68\51\105\53\57\51\83\112\85\51\76\103\55\51\83\105\99\51\117\81\85\51\115\51\51\51\73\80\110\51\79\120\76\51\117\79\65\51\110\87\74\51\82\48\51\51\79\71\115\51\114\74\112\51\84\106\114\51\84\99\115\51\113\77\114\51\117\121\119\51\112\84\79\51\54\79\51\51\65\97\120\51\71\84\65\51\116\57\108\51\115\100\117\51\53\110\49\51\57\79\55\51\117\122\69\51\69\68\78\51\106\72\76\51\83\100\121\51\81\103\108\51\117\76\56\51\86\53\116\51\85\76\90\51\65\113\120\51\68\79\87\51\84\100\107\51\111\85\80\51\83\57\83\51\53\52\51\51\116\57\82\51\55\67\48\51\71\76\51\51\84\54\98\51\54\87\65\51\99\84\48\51\79\120\56\51\116\51\70\51\85\49\85\51\84\51\72\51\102\115\48\51\112\57\50\51\105\50\122\51\110\82\99\51\85\109\87\51\53\101\52\51\77\75\122\51\105\66\67\51\117\116\56\51\117\80\114\51\113\117\108\51\53\48\88\51\49\106\49\49\74\50\50\57\50\53\122\50\52\80\50\54\83\50\51\111\50\52\103\50\54\98\50\49\55\50\49\113\50\54\121\50\51\57\50\54\66\50\54\68\50\52\116\50\52\70\51\52\117\80\51\112\57\110\51\116\55\86\51\65\66\48\51\65\68\105\51\111\56\114\51\83\86\122\51\86\55\79\51\85\79\50\51\83\79\80\51\116\105\90\51\83\79\82\51\116\106\49\51\85\113\82\51\116\56\54\51\107\72\104\51\84\56\56\51\65\110\111\51\117\99\118\51\118\56\49\51\109\105\97\51\112\54\68\51\113\80\99\51\84\70\108\51\84\84\54\51\99\67\89\51\83\83\52\51\71\50\79\51\81\102\103\51\71\50\82\51\107\119\107\51\116\56\110\51\80\71\119\51\113\50\48\51\53\102\67\51\85\82\55\51\109\117\56\51\84\56\115\51\74\78\82\51\100\53\70\51\105\103\98\51\116\105\102\51\99\118\55\51\98\89\55\51\110\80\53\51\85\117\70\51\99\77\67\51\73\107\107\51\97\55\104\51\74\70\56\51\84\57\53\51\108\56\101\51\84\113\110\51\73\104\103\51\68\120\88\51\110\49\103\51\113\74\72\51\112\115\80\51\84\78\68\51\83\100\66\51\101\116\68\51\57\54\81\51\72\69\50\51\67\89\99\51\72\80\118\51\112\116\97\51\84\111\72\51\57\67\54\51\110\77\88\51\98\54\57\51\115\48\55\51\74\108\97\49\50\51\116\54\70\51\116\79\57\51\104\65\48\51\117\98\81\51\71\77\51\51\100\97\55\51\109\99\89\51\73\97\55\51\112\49\87\51\83\48\86\51\86\99\111\51\102\80\111\51\112\116\72\51\53\99\114\51\107\78\57\49\52\51\82\85\110\51\53\68\79\51\104\49\111\51\65\102\111\51\83\108\73\51\81\77\120\51\83\101\102\51\76\50\66\51\83\116\121\51\85\122\122\51\111\108\78\51\107\82\75\51\83\49\113\51\99\65\100\51\86\51\121\51\84\122\72\51\57\55\112\51\79\87\52\51\110\82\99\50\101\51\50\49\111\50\54\48\50\53\105\50\54\115\50\50\98\51\72\73\84\50\50\55\50\52\113\50\51\115\50\49\107\50\53\54\50\53\68\50\51\49\50\49\89\50\49\118\50\49\112\50\49\76\51\82\86\97\51\117\78\117\51\117\72\51\51\53\83\69\51\113\82\84\51\103\114\76\51\75\87\114\51\108\56\50\51\115\77\51\51\85\78\112\51\55\48\105\51\69\87\104\51\102\100\52\51\111\55\87\51\117\97\51\51\83\70\86\51\85\79\49\51\116\70\55\51\86\52\73\51\115\87\50\51\109\48\65\51\117\120\78\51\118\52\77\51\112\89\78\51\70\48\99\51\105\99\117\51\102\53\118\51\104\99\114\51\65\55\72\51\75\97\85\51\112\115\51\51\111\80\118\51\79\106\78\51\84\70\72\51\84\77\110\51\117\51\120\51\116\80\112\51\86\66\99\51\80\103\79\51\104\74\81\51\85\82\75\51\52\56\55\51\70\56\122\51\69\120\54\51\78\101\90\51\113\115\75\51\116\106\108\51\115\106\109\51\83\77\86\51\83\81\48\51\85\69\66\51\86\56\87\51\85\101\100\51\83\97\48\51\85\52\67\51\98\75\48\51\109\89\68\51\85\112\50\51\112\56\82\51\65\86\99\50\56\54\51\80\56\65\51\85\86\104\51\81\71\70\51\110\81\80\51\82\68\110\51\53\120\77\51\99\57\89\51\115\107\79\51\108\50\70\51\54\54\89\51\114\84\90\51\56\50\72\51\76\57\97\51\112\90\122\51\65\97\54\51\107\48\112\51\112\57\48\51\55\73\109\51\86\50\74\51\115\54\75\51\80\106\97\51\55\82\121\51\116\51\57\51\118\50\57\51\57\89\73\51\56\72\105\51\69\51\55\51\114\72\86\51\77\122\98\51\71\89\85\50\101\51\50\50\116\50\51\106\50\50\121\49\106\50\52\84\50\49\99\50\53\77\50\51\69\50\53\70\49\74\49\81\49\88\50\52\99\50\49\52\50\51\55\50\51\116\50\53\49\51\57\100\112\51\112\113\86\51\113\55\85\51\85\84\52\51\82\114\116\51\117\50\113\51\75\49\105\51\104\50\67\51\101\73\66\51\115\98\54\51\85\113\103\51\81\72\121\51\79\53\110\51\85\117\54\51\56\68\116\51\113\109\101\51\78\108\67\51\51\55\65\51\80\114\82\51\112\75\121\51\117\100\115\51\115\106\52\51\117\71\69\51\105\87\90\51\75\54\74\51\72\55\119\51\114\76\111\51\109\88\52\51\110\112\107\51\109\69\102\51\74\53\48\51\101\120\55\51\83\102\114\51\50\114\49\51\114\83\119\51\116\70\89\51\103\86\112\51\108\71\50\51\109\55\112\51\78\115\72\51\106\78\120\51\78\83\74\51\107\101\101\51\84\52\114\51\76\75\88\51\117\110\122\51\116\55\121\51\85\104\56\51\80\110\107\51\81\73\115\51\114\53\99\51\82\86\72\51\117\75\113\51\117\48\100\51\117\100\74\51\86\69\117\51\65\120\57\51\116\54\107\51\85\82\85\51\107\120\97\51\79\65\51\51\82\77\120\51\84\103\67\51\115\116\55\51\107\105\97\51\83\68\97\51\84\113\85\51\80\70\100\51\108\118\77\51\103\84\86\51\57\104\50\51\107\52\73\51\82\48\80\51\113\51\87\51\54\55\53\51\109\54\98\51\72\73\97\51\117\55\114\51\53\100\56\51\104\73\97\51\114\87\49\51\80\56\54\51\72\69\50\51\108\104\105\51\113\88\104\51\51\110\108\51\67\115\107\51\74\115\100\51\117\98\79\51\111\101\74\51\81\120\53\51\109\118\103\51\83\116\83\51\56\66\105\51\71\116\70\51\112\105\77\51\100\90\79\51\57\90\116\51\76\75\98\51\74\49\118\51\111\107\104\51\86\99\74\51\57\111\51\51\71\104\73\51\53\78\49\51\82\55\89\51\67\53\66\51\114\76\48\51\106\80\77\51\71\53\117\51\100\56\69\51\85\119\111\51\51\72\48\50\53\73\50\49\114\49\119\50\51\88\50\54\81\51\65\104\111\50\53\106\50\49\65\50\52\74\50\52\66\50\51\100\50\52\48\50\54\81\50\49\81\49\104\51\117\113\97\51\85\87\76\51\106\112\81\51\83\53\49\51\102\113\55\51\114\83\78\51\68\88\52\51\108\113\49\51\84\109\48\51\118\49\67\51\101\70\70\51\99\49\73\51\100\79\57\51\112\69\100\51\117\87\50\51\54\98\99\51\84\109\55\51\85\111\48\51\118\49\48\51\117\84\90\51\80\117\115\51\83\57\79\51\115\71\49\51\114\83\70\51\83\103\51\51\85\83\55\51\73\83\101\51\57\120\81\51\65\116\49\51\115\48\97\51\73\103\115\51\118\56\48\51\118\102\53\51\98\73\69\51\118\49\76\51\113\70\99\51\108\81\109\51\118\53\52\51\112\100\121\51\83\109\48\51\54\50\118\51\114\84\57\51\109\69\107\51\75\87\78\51\85\120\82\51\115\73\111\51\53\115\69\51\104\75\73\51\107\79\104\51\86\70\104\51\113\54\99\51\110\77\66\51\83\51\57\51\86\67\56\51\83\51\66\51\117\82\90\51\118\99\98\51\118\74\50\51\99\76\90\51\113\57\120\51\84\86\51\51\115\85\57\51\77\78\84\51\111\55\116\51\53\68\56\51\77\57\69\51\83\97\56\51\113\120\100\51\55\75\51\51\78\78\50\51\82\114\70\51\114\75\48\51\108\53\106\51\116\117\102\51\53\111\57\51\66\53\76\51\111\66\53\51\68\116\113\51\86\74\97\51\116\52\120\51\110\103\110\51\57\110\51\51\117\54\121\51\86\74\118\51\54\53\118\51\79\55\51\51\56\111\97\51\79\75\118\51\52\81\90\51\117\55\113\51\115\85\54\51\102\75\52\51\85\86\71\51\86\99\73\51\79\115\57\51\75\98\115\51\84\48\49\51\116\86\97\51\57\111\106\51\56\112\50\51\56\53\115\50\118\50\50\52\108\50\53\53\50\53\103\50\49\99\50\53\81\50\51\106\50\53\107\50\53\50\50\54\54\50\54\108\51\49\74\113\50\51\52\50\53\118\51\52\118\57\51\109\115\70\51\80\113\86\51\104\102\49\51\83\98\110\51\80\85\69\51\77\83\52\51\84\118\120\51\80\74\68\51\102\56\76\51\86\52\112\51\118\72\108\51\86\109\50\51\73\88\71\51\86\73\72\51\84\67\57\51\117\97\53\51\117\68\70\51\118\55\81\51\86\105\111\51\118\69\83\51\85\48\69\51\86\52\110\51\66\50\73\51\76\120\65\51\72\98\51\51\70\90\117\51\85\78\116\51\65\114\87\51\77\83\90\51\102\49\54\51\105\87\75\51\117\97\70\51\70\53\53\51\107\57\78\51\54\100\98\51\105\53\66\51\102\122\51\51\86\57\48\51\72\82\106\51\80\110\121\51\115\74\53\51\86\98\56\51\117\99\88\51\70\105\74\51\118\49\109\51\72\74\81\51\85\110\98\51\115\53\75\51\86\70\69\51\86\108\120\51\84\77\75\51\79\102\119\51\99\67\76\51\80\48\89\51\86\49\88\51\116\103\97\51\114\54\112\51\116\106\109\51\117\89\115\51\118\77\98\51\83\78\49\51\117\76\53\51\77\115\111\51\77\50\85\51\55\67\65\51\83\87\86\51\66\80\108\51\97\85\110\51\80\89\66\51\56\105\86\51\65\65\118\51\57\115\79\51\112\74\57\51\115\88\102\51\85\90\103\51\101\67\76\51\70\51\52\51\113\120\107\51\68\55\65\51\55\67\54\51\116\65\56\51\76\49\119\51\85\122\56\51\54\120\119\51\79\48\66\51\75\48\114\51\116\100\50\51\85\115\75\51\110\81\112\51\115\72\57\51\97\113\88\51\82\111\48\51\65\53\75\51\80\112\110\51\111\75\122\51\54\108\52\51\112\80\65\51\116\114\49\51\108\118\86\51\105\66\66\51\83\79\53\51\65\104\51\51\109\108\50\50\87\68\50\51\66\50\51\53\50\52\107\50\50\49\50\52\71\50\50\110\50\50\86\50\54\120\50\50\107\50\52\108\50\52\54\50\52\108\49\77\50\50\102\50\54\99\50\54\116\50\53\83\50\54\107\51\85\112\113\51\108\54\56\51\114\88\120\51\114\79\116\51\116\73\56\51\99\80\120\51\84\53\81\51\118\111\65\51\54\49\71\51\113\98\108\51\57\103\99\51\115\113\88\51\67\119\52\51\81\112\57\51\84\90\79\51\102\69\66\51\81\70\66\51\109\55\66\51\114\74\55\51\84\77\84\51\109\115\121\51\83\122\104\51\56\115\48\51\114\53\121\51\81\99\79\51\55\67\90\51\84\52\75\51\111\99\67\51\113\53\99\51\77\105\116\51\112\51\114\51\76\98\75\51\84\119\83\51\117\75\99\51\116\68\56\51\112\115\53\51\76\98\87\51\81\56\73\51\82\53\97\51\118\73\76\51\115\77\73\51\114\57\108\51\118\52\75\51\112\100\104\51\118\49\52\51\118\55\85\51\117\113\115\51\53\105\53\51\57\101\120\51\74\54\110\51\80\79\119\51\117\111\66\51\115\109\120\51\117\76\49\51\118\102\109\51\85\76\51\51\84\74\84\51\85\121\118\51\111\117\72\51\79\118\77\51\107\85\112\51\53\100\111\51\118\82\107\51\111\115\53\51\107\78\51\51\55\121\51\51\107\51\84\51\76\83\68\51\77\110\70\51\80\73\83\51\112\112\121\51\57\99\54\51\82\97\73\51\104\73\54\51\73\50\49\51\103\75\122\51\81\113\86\51\50\55\84\51\79\55\67\51\102\54\49\51\82\49\51\51\83\52\51\51\118\57\84\51\117\115\74\51\115\78\73\51\99\106\83\51\106\108\71\51\76\115\68\51\101\66\83\51\85\49\81\51\105\117\87\51\86\100\53\51\117\90\50\51\102\115\100\51\54\120\121\51\117\53\68\51\75\114\113\51\116\86\90\51\109\104\110\51\117\80\114\51\114\56\48\51\78\89\70\51\76\76\111\50\69\51\50\54\53\50\54\111\50\52\98\51\49\54\107\51\82\83\53\50\54\68\50\65\82\50\53\76\51\56\118\78\50\49\49\50\53\88\50\51\97\51\71\57\87\51\104\122\71\51\85\88\97\51\86\69\55\51\65\116\51\51\76\98\113\51\74\110\79\51\110\87\102\51\79\51\83\51\108\109\51\51\106\78\109\51\118\52\84\51\86\72\83\51\111\66\88\51\55\56\77\51\86\79\69\50\49\97\51\117\81\76\51\118\55\112\51\85\113\110\51\86\111\105\51\86\55\115\51\86\101\116\51\117\75\116\51\53\56\55\51\115\103\53\51\78\86\103\51\66\68\114\51\83\73\102\51\73\106\80\51\79\67\102\51\114\50\115\51\85\69\52\51\83\103\68\51\78\101\53\51\84\68\86\51\85\54\90\51\86\114\83\51\108\109\78\51\108\109\77\51\86\53\49\51\78\55\99\51\75\51\54\51\85\106\117\51\112\79\55\51\79\53\104\51\69\115\111\51\56\87\120\51\106\74\79\51\53\78\86\51\86\106\90\51\82\57\120\51\79\75\53\51\113\87\117\51\118\73\121\51\116\67\82\51\86\70\110\51\83\54\111\51\75\55\79\51\80\55\122\51\78\56\89\51\53\76\82\51\109\57\107\51\77\89\112\51\56\104\76\51\83\55\57\51\116\48\79\51\74\72\49\51\118\113\102\51\114\116\115\51\82\85\74\51\110\71\71\51\78\53\120\51\78\120\112\51\81\54\114\51\99\120\66\51\111\82\86\51\70\79\77\51\113\76\50\51\79\85\76\51\100\51\74\51\75\51\116\51\106\79\122\51\118\57\112\51\107\120\115\51\85\111\108\51\57\67\54\51\71\53\72\51\83\78\76\51\65\97\54\51\83\97\70\51\55\114\79\51\108\75\78\51\79\49\55\51\83\110\113\51\86\50\111\51\78\50\116\51\115\111\50\51\55\101\72\51\84\52\99\51\54\81\121\51\84\55\57\51\86\65\55\50\87\68\50\53\49\50\51\79\50\49\55\50\51\86\50\55\49\49\72\50\54\49\50\55\50\50\55\48\49\98\50\54\57\50\49\81\50\51\88\51\73\102\111\50\51\73\50\54\97\51\74\54\88\51\71\121\117\51\78\50\118\51\82\73\53\51\116\82\118\51\85\99\115\51\82\101\53\51\85\57\105\51\68\88\114\51\78\71\99\51\114\121\83\51\79\50\69\51\82\121\117\51\117\110\55\51\67\109\79\51\86\86\81\51\80\114\68\51\102\108\74\51\116\80\84\51\57\51\79\51\111\50\114\51\75\90\121\51\70\73\83\51\80\82\108\51\118\106\103\51\97\49\55\51\99\67\108\51\78\78\55\51\67\77\48\51\68\119\85\51\73\115\51\51\71\102\102\51\79\116\117\51\80\65\98\51\54\100\66\51\117\110\83\51\78\115\77\51\66\82\80\51\54\49\76\51\78\111\101\51\113\73\79\51\115\57\105\51\115\102\119\51\80\76\54\51\113\69\122\51\117\65\55\51\84\49\113\51\83\50\75\51\85\97\65\51\75\76\105\51\85\111\57\51\116\67\109\51\114\54\78\51\85\65\113\51\118\80\107\51\118\87\52\51\118\50\49\51\83\84\56\51\110\70\72\51\82\71\82\51\109\99\65\51\107\120\122\51\101\116\78\51\114\120\52\51\114\68\105\51\77\107\107\51\54\55\53\51\71\88\115\51\113\68\57\51\86\68\52\51\76\114\48\51\81\104\50\51\117\66\106\51\115\97\71\51\83\52\52\51\82\116\81\51\117\56\98\51\67\79\89\51\116\117\97\51\85\104\115\51\86\116\54\51\115\84\73\51\114\88\52\51\117\76\82\51\85\118\110\51\84\107\113\51\117\56\109\51\116\120\117\51\57\72\76\51\50\79\74\51\109\57\98\51\117\57\72\51\116\54\52\51\56\99\67\51\117\73\48\51\83\72\104\51\70\83\78\51\113\82\52\51\54\57\48\51\81\86\56\51\115\49\81\51\80\50\74\51\86\71\112\50\87\68\50\53\51\50\49\102\50\51\70\50\51\49\50\51\70\50\49\120\50\50\118\50\49\65\50\52\54\50\50\54\50\49\89\50\54\68\50\52\119\50\50\66\50\54\51\50\52\52\51\56\76\51\51\116\111\82\51\53\86\109\51\109\75\89\51\80\57\76\51\53\69\55\51\78\114\78\51\75\100\107\51\86\48\86\51\84\78\52\51\118\114\108\51\113\87\115\51\111\56\113\51\117\84\87\51\116\113\101\51\118\55\110\51\81\56\107\51\86\101\79\51\118\90\54\51\85\117\48\51\86\76\68\51\85\79\54\51\86\98\50\51\68\110\50\51\78\66\49\51\83\80\52\51\85\71\69\51\117\51\119\51\118\98\57\51\77\81\103\51\84\53\55\51\85\117\113\51\57\76\66\51\84\80\86\51\80\75\56\51\100\79\55\51\116\112\121\51\115\56\72\50\54\107\51\85\51\79\51\68\112\74\51\102\81\56\51\68\120\52\51\70\53\50\51\81\106\54\51\86\56\73\51\53\53\83\51\66\121\65\51\78\97\78\51\111\55\56\51\118\73\117\51\67\100\72\51\112\76\73\51\86\122\71\51\86\109\54\51\86\109\65\51\106\57\52\51\84\99\116\51\79\120\118\51\82\81\104\51\115\119\83\51\72\121\98\51\111\79\109\51\85\84\50\51\55\107\97\51\111\121\55\51\69\121\57\51\85\90\85\51\115\54\87\51\83\107\73\51\65\54\83\51\85\56\54\51\107\121\48\51\73\50\71\51\70\50\114\51\117\122\69\51\86\84\69\51\109\53\89\51\72\72\77\51\117\83\84\51\56\104\103\51\76\68\100\51\84\51\78\51\83\68\108\51\69\107\101\51\83\78\80\51\100\80\90\51\105\76\121\51\113\55\51\51\118\81\65\51\117\83\102\51\108\111\114\51\79\70\55\51\108\51\49\51\116\66\53\51\55\54\75\51\49\106\49\50\51\101\50\53\49\50\53\51\51\85\57\54\51\49\50\82\51\51\121\87\50\50\77\49\122\50\53\87\49\100\50\52\49\49\89\49\115\51\51\89\98\51\86\117\51\51\84\52\68\51\55\89\86\51\87\48\112\51\85\50\79\51\84\101\82\51\54\73\75\51\110\114\78\51\81\74\49\51\118\109\48\51\115\90\101\51\54\49\103\51\74\72\103\51\106\98\57\51\80\103\74\51\118\49\106\51\85\82\102\51\117\85\77\51\117\106\83\51\53\117\65\51\119\50\53\51\76\109\53\51\104\83\68\51\109\101\105\51\68\57\57\51\75\76\109\51\104\98\102\51\114\118\115\51\112\65\55\51\84\87\78\51\105\71\69\51\109\102\97\51\112\55\74\51\117\51\51\51\80\55\108\51\102\90\50\51\106\53\85\51\86\67\49\51\101\65\120\51\69\122\119\50\50\90\51\80\54\81\51\86\55\77\51\77\101\81\51\116\70\54\51\118\115\72\51\83\90\50\51\86\69\81\51\111\50\51\51\86\52\76\51\118\79\107\51\86\73\82\51\80\97\84\51\100\49\108\51\57\101\120\51\86\53\97\51\86\56\82\51\86\70\74\51\85\111\67\51\118\77\57\51\83\109\122\51\118\112\110\51\82\90\90\51\85\55\109\51\66\122\49\51\72\85\48\51\109\50\112\51\56\79\70\51\72\105\53\51\56\53\53\51\86\101\89\51\74\107\115\51\79\69\114\51\52\89\86\51\82\85\49\51\107\116\85\51\116\107\99\51\82\112\66\51\75\56\109\51\117\56\103\51\69\108\49\51\69\55\103\51\119\50\110\51\112\50\67\51\85\86\79\51\69\112\55\51\113\117\65\51\69\55\111\51\77\57\77\51\116\78\112\51\108\121\55\51\112\122\89\51\78\85\66\51\108\86\65\51\114\55\100\51\117\86\90\51\114\72\57\51\66\98\67\51\54\85\111\51\116\103\122\51\117\86\74\51\97\48\51\51\98\66\68\51\118\120\98\51\102\54\102\51\110\114\97\51\75\49\105\51\86\51\120\51\116\105\57\51\118\100\103\51\80\71\65\51\113\114\66\51\115\52\74\51\66\119\51\50\101\51\50\54\56\50\51\119\50\52\55\49\90\49\79\49\118\50\51\104\50\51\80\50\52\120\49\112\50\53\51\50\53\98\50\51\70\51\50\56\90\49\53\50\51\50\50\54\106\51\80\106\86\51\115\66\113\51\79\56\114\51\112\115\55\51\86\65\87\51\119\49\82\51\81\77\55\51\116\70\57\51\118\115\75\51\81\50\77\51\86\90\97\51\107\83\65\51\80\110\85\51\50\110\114\51\115\118\86\51\68\88\109\51\54\108\53\51\112\82\105\51\73\71\66\51\104\78\100\51\117\85\67\51\83\112\83\51\111\71\54\51\54\100\66\51\112\111\82\51\119\54\90\51\53\84\73\51\117\74\79\51\85\110\54\51\113\49\77\51\115\50\51\51\57\81\118\51\76\65\90\51\87\52\120\51\112\101\52\51\102\82\53\51\68\79\55\51\72\51\103\51\82\57\101\51\80\79\68\51\104\98\50\51\79\102\89\51\84\49\71\51\106\56\105\51\119\49\107\51\83\111\122\51\82\116\70\51\115\54\104\51\86\73\119\51\116\53\86\51\112\55\113\51\85\108\50\51\118\50\50\51\78\53\54\51\84\117\56\51\68\102\117\51\118\54\70\51\56\79\65\51\105\109\52\51\118\77\116\51\53\67\82\51\109\74\90\51\86\71\74\51\110\103\110\51\109\106\117\51\115\114\48\51\109\104\50\51\52\121\118\51\116\86\57\51\56\66\52\51\53\78\53\51\75\66\78\51\84\75\111\51\81\81\89\51\80\102\111\51\79\82\121\51\103\109\50\51\69\113\53\51\81\52\48\51\111\122\49\51\111\82\100\51\51\51\109\51\108\72\105\51\118\100\65\51\107\121\65\51\116\118\48\51\97\53\54\51\117\49\56\51\116\57\109\51\110\53\100\51\118\98\109\51\78\50\81\51\118\78\100\51\80\105\85\51\107\66\115\51\78\76\54\51\113\51\52\51\56\85\87\51\117\67\49\50\50\54\50\101\51\50\50\57\50\51\57\49\55\50\54\72\50\54\54\49\103\50\50\50\51\49\53\110\50\50\54\50\55\48\50\52\78\50\49\117\50\52\51\50\53\118\50\51\82\50\49\80\50\52\55\51\77\51\50\51\114\66\98\51\109\54\121\51\107\75\50\51\79\66\114\51\110\65\98\51\56\99\115\51\104\74\49\51\117\71\56\51\53\113\50\51\75\121\106\51\116\112\73\51\107\88\51\51\84\112\101\51\113\105\52\51\84\71\54\51\114\116\111\51\114\74\71\51\99\67\108\51\84\84\73\51\56\56\103\51\114\50\53\51\87\52\83\51\85\71\70\51\78\69\114\51\83\102\106\51\112\114\100\51\81\52\122\51\113\57\50\51\86\49\80\51\105\48\52\51\111\113\101\51\109\49\99\51\107\80\100\51\85\110\121\51\85\100\67\51\86\90\51\51\117\68\69\51\118\122\53\51\119\56\55\51\117\54\76\51\117\85\49\51\86\98\49\51\86\49\53\51\79\54\50\51\76\84\107\51\110\65\71\51\105\74\110\51\81\118\85\51\81\57\99\51\117\114\50\51\98\106\67\51\117\101\52\51\108\116\83\49\56\51\102\110\116\51\85\48\118\51\79\107\56\51\115\54\72\51\118\49\90\51\113\87\86\51\86\115\119\51\119\57\104\51\78\81\50\51\80\87\51\51\79\51\75\51\110\109\113\51\72\69\65\51\110\81\55\51\86\50\105\51\118\57\73\51\106\57\87\51\118\54\65\51\55\121\116\51\84\68\122\51\117\115\55\51\118\54\49\51\85\101\110\51\115\57\99\51\119\51\53\51\117\80\56\51\84\54\106\51\114\72\114\51\82\51\87\51\105\108\118\51\106\49\106\51\75\51\84\51\79\89\55\51\72\74\72\51\76\49\111\51\114\75\98\51\118\88\55\51\55\75\65\51\75\117\71\51\84\99\75\51\114\51\118\51\76\50\104\51\57\90\104\51\113\78\69\51\98\75\74\51\114\98\54\51\87\55\56\51\116\76\115\51\114\111\113\51\85\50\54\50\55\98\51\113\78\119\50\54\49\50\53\120\51\52\69\80\50\54\103\49\54\50\49\117\50\53\66\49\72\50\52\72\50\53\51\50\52\48\50\49\54\50\52\82\50\51\86\51\98\120\114\51\115\69\105\51\83\75\121\51\115\69\107\51\119\49\101\51\106\84\97\51\116\122\98\51\118\85\52\51\78\85\111\51\85\74\77\51\79\53\54\51\116\109\77\51\117\117\107\51\78\98\55\51\85\120\121\51\86\108\82\51\86\53\51\51\98\87\115\51\71\66\97\51\109\101\70\51\79\113\69\51\106\118\74\51\80\79\66\51\119\57\51\51\100\97\116\51\65\68\73\51\115\109\100\51\109\55\89\51\116\53\106\51\86\76\66\51\81\119\75\51\87\49\85\51\85\117\50\51\117\51\104\51\109\76\119\51\111\50\67\51\97\55\104\51\112\89\57\51\77\77\117\51\117\100\65\51\101\48\80\51\83\89\118\51\80\79\106\51\105\48\52\51\112\107\79\51\77\66\117\51\83\73\104\51\82\77\50\51\52\57\71\51\72\115\87\51\116\50\65\51\116\73\76\51\84\57\118\51\108\77\51\51\80\79\118\51\118\99\53\51\112\111\121\51\117\52\55\51\82\81\98\51\108\85\107\51\84\85\53\51\100\111\81\51\86\50\51\51\115\54\112\51\65\52\51\51\115\48\52\51\113\100\109\51\85\56\50\51\84\68\86\51\107\78\53\51\114\101\54\51\113\97\117\51\87\54\110\51\80\56\68\51\115\110\114\51\74\54\101\51\54\53\73\51\114\69\67\51\104\104\83\51\105\73\111\51\70\75\52\51\80\56\103\51\109\54\70\51\53\109\121\51\113\100\99\51\85\77\49\51\84\48\112\51\85\109\51\51\85\105\81\51\97\75\56\51\119\68\57\51\57\67\54\51\73\54\57\51\117\80\50\51\79\49\48\51\115\78\76\51\75\85\108\51\117\66\53\51\82\65\72\51\65\54\83\51\86\103\78\0\3\0\0\0\0\0\88\128\64\3\0\0\0\0\0\208\127\64\3\0\0\0\0\0\232\128\64\3\0\0\0\246\236\90\175\65\3\0\0\0\0\0\240\120\64\3\0\0\0\0\0\240\129\64\3\0\0\0\0\0\152\140\64\3\0\0\0\0\0\128\115\64\3\0\0\0\219\153\60\205\65\3\0\0\0\0\0\0\135\64\3\0\0\0\0\0\96\135\64\3\0\0\0\0\0\16\121\64\3\0\0\0\0\0\144\121\64\3\0\0\0\0\0\64\131\64\3\0\0\0\16\128\48\170\65\3\0\0\0\156\15\124\181\65\3\0\0\0\20\180\202\146\65\4\7\0\0\0\104\54\48\52\73\72\0\23\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\160\97\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\30\0\0\2\30\0\128\0\3\0\0\0\3\0\0\0\0\0\136\131\64\3\0\0\0\0\0\232\141\64\3\0\0\0\0\0\40\136\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\5\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\4\5\0\0\0\95\69\78\86\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\2\0\9\47\0\0\0\132\0\0\0\196\0\128\0\4\1\128\0\24\0\0\2\22\5\0\128\4\1\128\0\24\64\0\2\86\4\0\128\4\1\0\1\16\1\1\0\68\1\0\1\80\65\129\0\87\64\1\2\22\0\0\128\204\128\128\1\141\1\1\0\196\1\0\1\143\193\1\3\205\65\129\0\4\2\0\1\207\1\130\3\4\2\0\1\142\0\2\1\64\0\128\3\0\0\0\3\214\249\255\127\24\64\0\0\22\0\0\128\0\0\128\0\4\1\128\0\24\0\0\2\22\3\0\128\4\1\0\1\16\1\1\0\68\1\128\0\24\0\129\2\22\0\0\128\204\128\128\1\77\1\1\0\132\1\0\1\79\129\129\2\132\1\0\1\142\128\1\1\0\0\128\2\214\251\255\127\222\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\47\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\7\0\0\0\2\0\0\0\101\0\0\0\0\0\46\0\0\0\2\0\0\0\108\0\0\0\0\0\46\0\0\0\2\0\0\0\111\0\2\0\0\0\46\0\0\0\2\0\0\0\116\0\2\0\0\0\46\0\0\0\2\0\0\0\105\0\12\0\0\0\25\0\0\0\2\0\0\0\114\0\12\0\0\0\25\0\0\0\2\0\0\0\108\0\34\0\0\0\44\0\0\0\3\0\0\0\2\0\0\0\111\0\2\0\0\0\102\0\2\0\0\0\110\0\0\0\0\0\0\0\0\0\1\0\0\0\1\2\2\3\5\0\0\0\132\0\0\0\142\128\0\0\145\64\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\111\0\0\0\0\0\4\0\0\0\2\0\0\0\101\0\0\0\0\0\4\0\0\0\1\0\0\0\2\0\0\0\110\0\0\0\0\0\0\0\0\0\1\0\0\0\1\1\2\2\4\0\0\0\68\0\0\0\77\0\128\0\94\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\3\0\0\0\1\0\0\0\2\0\0\0\68\0\0\0\0\0\0\0\0\0\1\0\0\0\2\2\2\6\10\0\0\0\132\0\0\0\196\0\128\0\4\1\0\0\13\1\0\2\68\1\0\0\77\65\128\2\220\128\128\1\141\192\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\10\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\9\0\0\0\2\0\0\0\110\0\0\0\0\0\9\0\0\0\2\0\0\0\2\0\0\0\68\0\2\0\0\0\83\0\0\0\0\0\0\0\0\0\1\0\0\0\4\2\2\5\17\0\0\0\132\0\0\0\24\128\128\0\22\1\0\128\132\0\128\0\192\0\0\0\18\1\128\0\156\128\128\1\158\0\0\1\132\0\0\1\145\64\0\1\142\128\0\0\196\0\0\1\4\1\128\1\209\0\129\1\144\192\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\17\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\111\0\0\0\0\0\16\0\0\0\2\0\0\0\101\0\0\0\0\0\16\0\0\0\4\0\0\0\2\0\0\0\102\0\2\0\0\0\109\0\2\0\0\0\110\0\2\0\0\0\84\0\0\0\0\0\0\0\0\0\1\0\0\0\2\2\2\6\10\0\0\0\140\64\0\0\196\0\0\0\0\1\0\0\64\1\128\0\220\128\128\1\141\192\0\1\196\0\128\0\143\192\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\10\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\111\0\0\0\0\0\9\0\0\0\2\0\0\0\101\0\0\0\0\0\9\0\0\0\2\0\0\0\2\0\0\0\114\0\2\0\0\0\110\0\0\0\0\0\0\0\0\0\1\0\0\0\5\2\2\5\19\0\0\0\132\0\0\0\24\128\128\0\22\1\0\128\132\0\128\0\192\0\0\0\18\1\128\0\156\128\128\1\158\0\0\1\132\0\0\1\196\0\128\1\4\1\0\2\209\0\129\1\208\192\0\0\4\1\128\1\17\65\0\2\207\0\129\1\156\128\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\19\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\111\0\0\0\0\0\18\0\0\0\2\0\0\0\101\0\0\0\0\0\18\0\0\0\5\0\0\0\2\0\0\0\102\0\2\0\0\0\98\0\2\0\0\0\120\0\2\0\0\0\110\0\2\0\0\0\84\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\2\6\9\0\0\0\74\0\0\0\132\0\0\0\202\0\0\0\4\1\128\0\64\1\0\0\156\0\0\2\98\64\0\0\94\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\9\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\8\0\0\0\2\0\0\0\2\0\0\0\104\0\2\0\0\0\102\0\0\0\0\0\0\0\0\0\1\0\0\0\15\1\0\17\86\0\0\0\68\0\0\0\128\0\0\0\196\0\128\0\4\1\0\1\92\0\1\2\12\129\128\0\12\193\0\2\68\1\128\1\87\64\1\2\214\1\0\128\4\1\0\2\68\1\128\2\12\65\1\2\8\1\0\2\4\1\0\3\68\1\128\3\12\65\1\2\8\1\0\3\4\1\0\4\64\1\0\0\132\1\128\4\28\129\128\1\0\0\0\2\1\1\0\0\65\1\0\0\138\1\0\0\196\1\128\0\36\2\0\0\4\0\0\5\4\0\0\4\0\0\0\0\0\0\128\3\4\0\128\5\4\0\128\0\68\2\0\6\128\2\0\4\156\130\128\0\6\129\130\4\68\2\128\0\137\1\129\4\84\2\0\0\24\64\130\3\86\9\0\128\64\2\0\4\92\130\128\0\132\2\128\6\134\66\2\5\154\2\0\0\150\0\0\128\132\2\128\6\70\65\2\5\150\1\0\128\128\2\0\2\196\2\0\4\0\3\0\2\68\3\128\0\132\3\128\0\220\130\0\2\85\193\2\5\132\2\128\6\196\2\0\3\0\3\0\2\68\3\0\4\128\3\128\2\196\3\128\0\4\4\128\0\92\131\0\2\21\67\3\6\137\2\131\5\148\2\0\3\196\2\128\0\140\194\2\5\192\2\128\2\0\3\128\2\68\3\0\3\132\3\128\0\76\131\131\6\72\3\0\3\0\1\0\6\137\193\2\5\150\245\255\127\68\2\0\7\128\2\0\3\92\130\0\1\94\2\0\1\30\0\128\0\1\0\0\0\4\1\0\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\7\28\0\0\0\4\0\0\0\68\0\128\0\132\0\0\1\196\0\128\1\4\1\128\1\92\128\0\2\132\0\0\2\28\128\128\1\68\0\128\1\132\0\128\2\76\128\128\0\72\0\128\1\68\0\0\0\132\0\128\0\196\0\0\1\4\1\128\1\68\1\128\1\76\1\128\2\132\1\128\2\77\129\129\2\156\128\0\2\196\0\0\2\92\128\128\1\132\0\128\1\140\0\0\1\136\0\128\1\94\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\28\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\110\0\8\0\0\0\27\0\0\0\2\0\0\0\111\0\23\0\0\0\27\0\0\0\6\0\0\0\2\0\0\0\103\0\2\0\0\0\66\0\2\0\0\0\108\0\2\0\0\0\101\0\2\0\0\0\88\0\2\0\0\0\111\0\86\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\10\0\0\0\2\0\0\0\108\0\0\0\0\0\85\0\0\0\2\0\0\0\116\0\5\0\0\0\85\0\0\0\2\0\0\0\114\0\5\0\0\0\85\0\0\0\2\0\0\0\105\0\5\0\0\0\85\0\0\0\2\0\0\0\116\0\26\0\0\0\85\0\0\0\2\0\0\0\114\0\26\0\0\0\85\0\0\0\2\0\0\0\105\0\26\0\0\0\85\0\0\0\2\0\0\0\101\0\27\0\0\0\85\0\0\0\2\0\0\0\102\0\34\0\0\0\85\0\0\0\2\0\0\0\101\0\45\0\0\0\80\0\0\0\15\0\0\0\2\0\0\0\69\0\2\0\0\0\111\0\2\0\0\0\74\0\2\0\0\0\89\0\2\0\0\0\101\0\2\0\0\0\75\0\2\0\0\0\110\0\2\0\0\0\102\0\2\0\0\0\66\0\2\0\0\0\90\0\2\0\0\0\103\0\2\0\0\0\88\0\2\0\0\0\112\0\2\0\0\0\100\0\2\0\0\0\67\0\0\0\0\0\0\0\0\0\1\0\0\0\1\2\2\7\170\0\0\0\23\0\64\0\214\1\0\128\132\0\0\0\205\64\192\0\1\129\0\0\156\128\128\1\141\192\64\1\141\0\65\1\158\0\0\1\150\39\0\128\23\64\65\0\150\1\0\128\132\0\0\0\205\128\193\0\205\192\193\1\1\1\2\0\156\128\128\1\158\0\0\1\86\37\0\128\23\64\66\0\86\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\129\2\0\220\128\128\1\1\193\2\0\156\128\128\1\141\0\67\1\158\0\0\1\86\34\0\128\23\64\67\0\214\2\0\128\132\0\0\0\196\0\0\0\4\1\0\0\77\129\195\0\129\193\3\0\28\129\128\1\65\1\4\0\220\128\128\1\1\65\4\0\156\128\128\1\158\0\0\1\214\30\0\128\23\128\68\0\22\2\0\128\132\0\0\0\205\192\196\0\205\0\197\1\1\65\5\0\156\128\128\1\141\128\69\1\141\192\69\1\158\0\0\1\22\28\0\128\23\0\70\0\86\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\65\6\0\220\128\128\1\205\128\198\1\1\193\6\0\156\128\128\1\158\0\0\1\22\25\0\128\23\0\71\0\86\1\0\128\141\64\199\0\141\128\71\1\141\192\71\1\141\0\72\1\158\0\0\1\22\23\0\128\23\64\72\0\214\1\0\128\132\0\0\0\205\128\200\0\205\192\200\1\1\1\9\0\156\128\128\1\141\64\73\1\158\0\0\1\150\20\0\128\23\128\73\0\22\3\0\128\132\0\0\0\196\0\0\0\4\1\0\0\77\193\201\0\77\1\202\2\129\65\10\0\28\129\128\1\65\129\10\0\220\128\128\1\1\193\10\0\156\128\128\1\158\0\0\1\214\16\0\128\23\0\75\0\214\2\0\128\132\0\0\0\196\0\0\0\4\1\0\0\77\65\203\0\129\129\11\0\28\129\128\1\65\193\11\0\220\128\128\1\1\1\12\0\156\128\128\1\158\0\0\1\86\13\0\128\23\64\76\0\86\2\0\128\132\0\0\0\192\0\128\0\1\129\12\0\156\128\128\1\141\192\76\1\141\0\77\1\141\64\77\1\141\128\77\1\158\0\0\1\86\10\0\128\23\192\77\0\22\3\0\128\132\0\0\0\196\0\0\0\4\1\0\0\64\1\128\0\129\1\14\0\28\129\128\1\13\65\78\2\65\129\14\0\220\128\128\1\1\193\14\0\156\128\128\1\158\0\0\1\150\6\0\128\23\0\79\0\86\3\0\128\132\0\0\0\196\0\0\0\4\1\0\0\64\1\128\0\129\65\15\0\28\129\128\1\13\129\79\2\65\193\15\0\220\128\128\1\205\0\208\1\1\65\16\0\156\128\128\1\158\0\0\1\150\2\0\128\23\128\80\0\22\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\193\16\0\220\128\128\1\1\1\17\0\156\128\128\1\141\64\81\1\158\0\0\1\30\0\128\0\70\0\0\0\3\0\0\0\161\3\240\189\65\3\0\0\0\0\76\87\26\65\3\0\0\0\0\60\161\45\65\3\0\0\0\0\212\110\36\65\3\0\0\0\0\152\127\29\65\3\0\0\128\220\213\104\196\65\3\0\0\0\0\132\69\41\65\3\0\0\0\0\92\101\35\65\3\0\0\0\0\96\241\27\65\3\0\0\0\100\102\201\171\65\3\0\0\0\0\76\24\36\65\3\0\0\0\0\130\33\34\65\3\0\0\0\0\238\94\46\65\3\0\0\0\48\88\47\164\65\3\0\0\0\0\190\22\42\65\3\0\0\0\0\66\10\35\65\3\0\0\0\0\4\103\30\65\3\0\0\0\0\6\66\40\65\3\0\0\128\131\239\18\199\65\3\0\0\0\0\64\204\10\65\3\0\0\0\0\128\96\198\64\3\0\0\0\0\16\46\28\65\3\0\0\0\0\234\190\35\65\3\0\0\0\0\28\184\39\65\3\0\0\0\120\5\166\141\65\3\0\0\0\0\48\184\15\65\3\0\0\0\0\32\156\5\65\3\0\0\0\0\152\201\8\65\3\0\0\0\220\146\151\167\65\3\0\0\0\0\192\114\255\64\3\0\0\0\0\124\155\35\65\3\0\0\0\0\40\210\20\65\3\0\0\0\0\76\113\30\65\3\0\0\0\180\134\117\194\65\3\0\0\0\0\96\189\19\65\3\0\0\0\0\92\29\38\65\3\0\0\0\0\126\42\34\65\3\0\0\0\0\176\251\2\65\3\0\0\0\196\109\101\195\65\3\0\0\0\0\152\238\39\65\3\0\0\0\0\64\34\225\64\3\0\0\0\0\78\251\39\65\3\0\0\0\0\160\171\34\65\3\0\0\0\0\198\172\33\65\3\0\0\0\46\34\78\202\65\3\0\0\0\0\114\108\35\65\3\0\0\0\0\128\193\1\65\3\0\0\0\0\204\187\22\65\3\0\0\0\0\16\32\46\65\3\0\0\128\43\80\170\202\65\3\0\0\0\0\44\251\38\65\3\0\0\0\0\104\120\11\65\3\0\0\0\0\158\175\37\65\3\0\0\0\0\242\206\42\65\3\0\0\0\0\192\128\212\64\3\0\0\128\13\36\1\205\65\3\0\0\0\0\96\85\31\65\3\0\0\0\0\64\181\20\65\3\0\0\0\0\172\241\22\65\3\0\0\0\0\118\183\35\65\3\0\0\0\113\172\150\186\65\3\0\0\0\0\64\192\17\65\3\0\0\0\0\160\184\14\65\3\0\0\0\0\34\252\42\65\3\0\0\0\0\128\124\210\64\3\0\0\0\0\176\69\46\65\3\0\0\0\96\97\63\125\65\3\0\0\0\0\72\51\11\65\3\0\0\0\0\156\118\19\65\3\0\0\0\0\64\28\16\65\0\0\0\0\170\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\169\0\0\0\2\0\0\0\110\0\0\0\0\0\169\0\0\0\1\0\0\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\1\2\2\9\171\0\0\0\23\0\64\0\86\2\0\128\132\0\0\0\196\0\0\0\13\65\192\0\65\129\0\0\220\128\128\1\1\193\0\0\156\128\128\1\141\0\65\1\158\0\0\1\86\39\0\128\23\64\65\0\150\3\0\128\132\0\0\0\196\0\0\0\4\1\0\0\68\1\0\0\128\1\128\0\193\129\1\0\92\129\128\1\129\193\1\0\28\129\128\1\65\1\2\0\220\128\128\1\1\65\2\0\156\128\128\1\158\0\0\1\22\35\0\128\23\128\66\0\22\2\0\128\132\0\0\0\196\0\0\0\13\193\194\0\65\1\3\0\220\128\128\1\1\65\3\0\156\128\128\1\158\0\0\1\86\32\0\128\23\128\67\0\150\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\193\3\0\220\128\128\1\205\0\196\1\1\65\4\0\156\128\128\1\141\128\68\1\158\0\0\1\22\29\0\128\23\192\68\0\86\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\1\5\0\220\128\128\1\205\64\197\1\1\129\5\0\156\128\128\1\158\0\0\1\22\26\0\128\23\192\69\0\86\2\0\128\132\0\0\0\196\0\0\0\13\1\198\0\65\65\6\0\220\128\128\1\1\129\6\0\156\128\128\1\141\192\70\1\158\0\0\1\22\23\0\128\23\0\71\0\150\2\0\128\132\0\0\0\196\0\0\0\13\65\199\0\65\129\7\0\220\128\128\1\1\193\7\0\156\128\128\1\141\0\72\1\141\64\72\1\158\0\0\1\214\19\0\128\23\128\72\0\22\2\0\128\132\0\0\0\205\192\200\0\205\0\201\1\1\65\9\0\156\128\128\1\141\128\73\1\141\192\73\1\158\0\0\1\22\17\0\128\23\0\74\0\86\2\0\128\132\0\0\0\196\0\0\0\0\1\128\0\65\65\10\0\220\128\128\1\1\129\10\0\156\128\128\1\141\192\74\1\158\0\0\1\22\14\0\128\23\0\75\0\86\2\0\128\132\0\0\0\196\0\0\0\13\65\203\0\65\129\11\0\220\128\128\1\205\192\203\1\1\1\12\0\156\128\128\1\158\0\0\1\22\11\0\128\23\64\76\0\22\2\0\128\132\0\0\0\205\128\204\0\1\193\12\0\156\128\128\1\141\0\77\1\141\64\77\1\141\128\77\1\158\0\0\1\86\8\0\128\23\192\77\0\86\4\0\128\132\0\0\0\196\0\0\0\4\1\0\0\68\1\0\0\132\1\0\0\192\1\128\0\1\2\14\0\156\129\128\1\193\65\14\0\92\129\128\1\129\129\14\0\28\129\128\1\65\193\14\0\220\128\128\1\1\1\15\0\156\128\128\1\158\0\0\1\86\3\0\128\23\64\79\0\214\2\0\128\132\0\0\0\196\0\0\0\4\1\0\0\64\1\128\0\129\129\15\0\28\129\128\1\65\193\15\0\220\128\128\1\1\1\16\0\156\128\128\1\158\0\0\1\214\255\255\127\30\0\128\0\65\0\0\0\3\0\0\0\58\0\182\196\65\3\0\0\0\0\128\91\221\64\3\0\0\0\0\252\151\40\65\3\0\0\0\0\0\141\200\64\3\0\0\0\0\24\146\2\65\3\0\0\0\132\88\36\180\65\3\0\0\0\0\160\251\227\64\3\0\0\0\0\12\182\20\65\3\0\0\0\0\76\46\30\65\3\0\0\0\0\50\35\35\65\3\0\0\0\98\32\55\187\65\3\0\0\0\0\112\86\14\65\3\0\0\0\0\68\154\24\65\3\0\0\0\0\222\208\33\65\3\0\0\0\253\253\37\187\65\3\0\0\0\0\246\244\40\65\3\0\0\0\0\124\135\27\65\3\0\0\0\0\76\176\18\65\3\0\0\0\0\128\7\229\64\3\0\0\0\90\164\44\191\65\3\0\0\0\0\34\55\40\65\3\0\0\0\0\168\109\2\65\3\0\0\0\0\68\30\38\65\3\0\0\0\201\106\162\178\65\3\0\0\0\0\148\73\38\65\3\0\0\0\0\224\162\7\65\3\0\0\0\0\144\170\255\64\3\0\0\0\0\60\250\44\65\3\0\0\0\202\38\188\201\65\3\0\0\0\0\240\142\2\65\3\0\0\0\0\96\216\40\65\3\0\0\0\0\240\64\3\65\3\0\0\0\0\44\201\20\65\3\0\0\0\0\236\212\22\65\3\0\0\0\47\82\75\198\65\3\0\0\0\0\114\158\41\65\3\0\0\0\0\216\205\26\65\3\0\0\0\0\164\150\28\65\3\0\0\0\0\160\80\241\64\3\0\0\0\0\222\250\37\65\3\0\0\0\242\92\188\160\65\3\0\0\0\0\168\199\14\65\3\0\0\0\0\224\155\228\64\3\0\0\0\0\68\103\32\65\3\0\0\0\138\128\132\179\65\3\0\0\0\0\170\202\41\65\3\0\0\0\0\116\47\40\65\3\0\0\0\0\32\33\240\64\3\0\0\0\0\0\111\193\64\3\0\0\0\233\42\94\200\65\3\0\0\0\0\208\16\42\65\3\0\0\0\0\204\11\18\65\3\0\0\0\0\204\55\31\65\3\0\0\0\0\156\210\17\65\3\0\0\0\0\196\107\29\65\3\0\0\0\148\95\186\157\65\3\0\0\0\0\220\146\37\65\3\0\0\0\0\118\220\37\65\3\0\0\0\0\40\241\28\65\3\0\0\0\0\128\145\234\64\3\0\0\0\0\128\246\3\65\3\0\0\128\51\0\39\192\65\3\0\0\0\0\192\201\227\64\3\0\0\0\0\186\12\36\65\3\0\0\0\0\98\241\39\65\0\0\0\0\171\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\101\0\0\0\0\0\170\0\0\0\2\0\0\0\110\0\0\0\0\0\170\0\0\0\1\0\0\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\216\138\64\3\0\0\0\0\0\24\143\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\37\0\0\0\30\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\3\0\7\36\0\0\0\154\0\0\0\214\4\0\128\196\0\0\0\4\1\128\0\13\1\129\0\209\0\129\1\207\192\0\0\4\1\0\0\68\1\128\0\77\65\1\1\132\1\128\0\141\129\129\0\77\129\129\2\132\1\128\0\76\129\129\2\17\65\1\2\208\0\129\1\4\1\128\0\16\1\129\1\13\1\129\1\30\1\0\1\22\3\0\128\196\0\0\0\4\1\128\0\13\1\129\0\209\0\129\1\12\193\128\1\16\1\1\0\25\0\129\1\150\0\0\128\4\1\128\0\26\65\0\0\22\0\0\128\4\1\0\1\30\1\0\1\30\0\128\0\0\0\0\0\0\0\0\0\36\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\5\0\0\0\2\0\0\0\108\0\0\0\0\0\35\0\0\0\2\0\0\0\101\0\0\0\0\0\35\0\0\0\2\0\0\0\110\0\0\0\0\0\35\0\0\0\2\0\0\0\101\0\17\0\0\0\21\0\0\0\2\0\0\0\101\0\26\0\0\0\35\0\0\0\3\0\0\0\2\0\0\0\70\0\2\0\0\0\111\0\2\0\0\0\100\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\5\17\0\0\0\4\0\0\0\68\0\128\0\132\0\0\1\196\0\128\1\4\1\128\1\92\128\0\2\132\0\0\2\28\128\128\1\68\0\128\2\80\64\0\0\72\0\0\2\68\0\128\1\132\0\0\3\76\128\128\0\72\0\128\1\30\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\17\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\116\0\8\0\0\0\16\0\0\0\7\0\0\0\2\0\0\0\114\0\2\0\0\0\69\0\2\0\0\0\67\0\2\0\0\0\108\0\2\0\0\0\101\0\2\0\0\0\110\0\2\0\0\0\111\0\0\0\0\0\0\0\0\0\1\0\0\0\10\0\0\7\54\0\0\0\4\0\0\0\68\0\128\0\132\0\0\1\196\0\0\1\4\1\128\1\204\0\129\1\28\64\1\2\4\1\0\2\64\1\0\0\132\1\128\2\28\129\128\1\0\0\0\2\4\1\0\3\16\1\1\0\8\1\128\2\4\1\0\2\64\1\128\0\132\1\128\2\28\129\128\1\64\0\0\2\4\1\0\3\16\1\129\0\8\1\128\2\4\1\0\2\64\1\0\1\132\1\128\2\28\129\128\1\128\0\0\2\4\1\0\3\16\1\1\1\8\1\128\2\4\1\0\2\64\1\128\1\132\1\128\2\28\129\128\1\192\0\0\2\4\1\0\3\16\1\129\1\8\1\128\2\4\1\0\1\68\1\128\3\12\65\1\2\8\1\0\1\4\1\0\4\14\1\129\1\68\1\128\4\78\65\1\1\12\65\1\2\68\1\0\3\78\65\129\0\12\65\1\2\12\1\0\2\30\1\0\1\30\0\128\0\0\0\0\0\0\0\0\0\54\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\116\0\7\0\0\0\53\0\0\0\2\0\0\0\105\0\7\0\0\0\53\0\0\0\2\0\0\0\100\0\7\0\0\0\53\0\0\0\2\0\0\0\111\0\7\0\0\0\53\0\0\0\10\0\0\0\2\0\0\0\69\0\2\0\0\0\67\0\2\0\0\0\108\0\2\0\0\0\121\0\2\0\0\0\114\0\2\0\0\0\101\0\2\0\0\0\110\0\2\0\0\0\82\0\2\0\0\0\117\0\2\0\0\0\68\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\5\32\0\0\0\4\0\0\0\68\0\128\0\132\0\0\1\196\0\0\1\4\1\128\1\204\0\129\1\28\192\0\2\132\0\0\2\192\0\0\0\4\1\128\2\156\128\128\1\0\0\0\1\132\0\0\3\144\128\0\0\136\0\128\2\132\0\0\2\192\0\128\0\4\1\128\2\156\128\128\1\64\0\0\1\132\0\0\3\144\128\128\0\136\0\128\2\132\0\0\1\196\0\128\1\140\192\0\1\136\0\0\1\132\0\0\3\142\128\128\0\140\0\0\1\158\0\0\1\30\0\128\0\0\0\0\0\0\0\0\0\32\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\111\0\7\0\0\0\31\0\0\0\2\0\0\0\116\0\7\0\0\0\31\0\0\0\7\0\0\0\2\0\0\0\69\0\2\0\0\0\67\0\2\0\0\0\108\0\2\0\0\0\70\0\2\0\0\0\114\0\2\0\0\0\101\0\2\0\0\0\110\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\2\4\9\0\0\0\10\0\0\0\101\0\0\0\34\64\0\0\68\0\0\0\132\0\128\0\229\0\0\0\92\0\0\0\30\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\9\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\2\0\0\0\107\0\2\0\0\0\83\0\0\0\0\0\0\0\0\0\1\0\0\0\22\0\2\30\152\0\0\0\4\0\0\0\74\0\128\1\129\0\0\0\193\64\0\0\1\129\0\0\98\64\128\1\84\0\128\0\76\192\192\0\6\64\0\0\68\0\0\0\129\0\1\0\148\0\0\1\141\128\128\130\70\128\128\0\132\0\0\0\202\0\0\2\1\129\1\0\65\193\1\0\129\1\2\0\193\65\2\0\226\64\0\2\212\0\128\1\204\128\194\1\134\192\0\1\196\0\0\0\1\193\2\0\20\1\0\2\13\1\1\134\198\0\129\1\4\1\0\0\6\65\67\2\68\1\0\0\70\129\195\2\132\1\0\0\134\193\67\3\196\1\0\0\198\1\196\3\4\2\0\0\6\66\68\4\68\2\0\0\70\130\196\4\132\2\0\0\193\194\4\0\212\2\128\5\205\194\2\138\134\194\2\5\196\2\0\0\198\66\197\5\4\3\0\0\74\3\128\0\129\131\5\0\228\3\0\0\220\3\128\0\98\67\0\0\84\3\128\6\76\195\197\6\6\67\3\6\68\3\0\0\70\3\198\6\132\3\0\0\134\67\70\7\196\3\0\0\198\131\198\7\4\4\0\0\6\196\70\8\68\4\0\0\70\4\199\8\132\4\0\0\193\68\7\0\212\4\128\9\205\196\4\143\134\196\4\9\196\4\0\0\1\197\7\0\20\5\0\10\13\5\5\144\198\4\133\9\4\5\0\0\6\69\72\10\68\5\0\0\70\133\200\10\132\5\0\0\134\197\72\11\196\5\0\0\1\6\9\0\20\6\0\12\13\6\134\146\198\5\134\11\4\6\0\0\6\134\73\12\68\6\0\0\70\198\201\12\132\6\0\0\193\198\7\0\212\6\128\13\205\198\6\148\134\198\6\13\228\70\0\0\0\0\128\12\4\0\128\0\4\0\0\1\4\0\128\1\0\0\128\8\4\0\0\2\0\0\0\0\4\0\128\2\0\0\0\3\4\0\0\3\0\0\0\2\0\0\0\8\0\0\128\1\0\0\0\9\0\0\0\1\4\0\128\3\0\0\128\5\4\0\0\4\4\0\128\4\0\0\128\7\4\0\0\5\4\0\128\5\0\0\128\0\0\0\0\5\0\0\0\7\4\0\0\6\4\0\128\6\4\0\0\7\4\0\128\7\4\0\0\8\4\0\128\8\0\0\128\4\4\0\0\9\4\0\128\9\4\0\0\10\0\0\128\10\0\0\0\6\4\0\128\10\0\0\0\10\0\0\0\4\0\0\0\11\0\0\128\6\0\0\128\9\0\0\128\11\0\0\128\3\0\0\128\13\0\0\128\2\0\0\0\12\0\0\0\13\0\7\128\13\101\7\0\0\28\135\0\0\30\7\0\1\30\0\128\0\41\0\0\0\3\0\0\0\0\0\152\130\64\3\0\0\0\0\0\104\130\64\3\0\0\0\0\0\192\110\64\3\0\0\128\41\186\191\201\65\4\79\0\0\0\108\117\114\97\112\104\32\105\115\32\110\111\119\32\100\111\119\110\32\117\110\116\105\108\32\102\117\114\116\104\101\114\32\110\111\116\105\99\101\32\102\111\114\32\97\110\32\101\109\101\114\103\101\110\99\121\32\109\97\106\111\114\32\115\101\99\117\114\105\116\121\32\117\112\100\97\116\101\0\3\0\0\0\142\253\156\177\65\3\0\0\0\0\0\152\140\64\3\0\0\0\0\0\0\123\64\3\0\0\0\0\0\184\140\64\3\0\0\0\0\0\144\128\64\3\0\0\0\130\127\136\191\65\4\28\0\0\0\108\105\116\103\97\110\103\32\111\110\32\116\111\112\32\58\115\117\110\103\108\97\115\115\101\115\58\0\3\0\0\128\242\182\245\198\65\3\0\0\128\111\128\150\204\65\4\11\0\0\0\117\54\66\82\86\54\53\99\90\52\0\3\0\0\0\63\177\31\184\65\4\9\0\0\0\82\76\81\120\104\86\86\116\0\4\8\0\0\0\117\105\107\48\102\82\104\0\3\0\0\0\156\15\124\181\65\4\186\0\0\0\76\117\114\97\112\104\58\32\80\114\111\98\97\98\108\121\32\99\111\110\115\105\100\101\114\101\100\32\116\104\101\32\119\111\114\115\116\32\111\117\116\32\111\102\32\116\104\101\32\116\104\114\101\101\44\32\76\117\114\97\112\104\32\105\115\32\97\110\111\116\104\101\114\32\76\117\97\32\79\98\102\117\115\99\97\116\111\114\46\32\73\116\32\105\115\110\116\32\114\101\109\111\116\101\108\121\32\97\115\32\115\101\99\117\114\101\32\97\115\32\73\114\111\110\98\114\101\119\32\111\114\32\83\121\110\97\112\115\101\32\88\101\110\44\32\97\110\100\32\105\116\32\105\115\110\39\116\32\97\115\32\102\97\115\116\32\97\115\32\73\114\111\110\98\114\101\119\32\101\105\116\104\101\114\46\0\3\0\0\0\32\153\249\130\65\3\0\0\0\82\75\74\204\65\3\0\0\0\0\0\160\138\64\3\0\0\0\180\206\223\151\65\4\10\0\0\0\110\56\113\89\51\83\79\86\69\0\4\7\0\0\0\90\66\73\112\50\104\0\3\0\0\0\236\14\159\158\65\3\0\0\0\26\128\48\170\65\4\7\0\0\0\80\52\54\53\116\80\0\4\62\0\0\0\103\117\121\115\32\115\111\109\101\111\110\101\32\112\108\97\121\32\65\109\111\110\103\32\85\115\32\119\105\116\104\32\109\101\109\99\111\114\114\117\112\116\32\104\101\32\105\115\32\115\111\32\108\111\110\101\108\121\32\58\40\0\3\0\0\0\223\246\151\192\65\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\128\70\20\120\203\65\4\11\0\0\0\110\71\84\106\100\101\110\73\105\111\0\4\9\0\0\0\121\70\122\98\72\117\69\100\0\4\7\0\0\0\104\54\48\52\73\72\0\4\68\0\0\0\115\111\108\116\101\114\58\32\110\97\104\32\116\114\117\115\116\32\109\101\32\100\117\115\116\32\104\97\115\32\111\110\101\32\111\102\32\116\104\101\32\98\101\115\116\32\97\110\116\105\32\99\104\101\97\116\115\32\111\110\32\114\111\98\108\111\120\0\3\0\0\128\85\92\4\202\65\3\0\0\0\209\104\253\185\65\4\11\0\0\0\105\67\105\77\119\79\69\48\79\51\0\3\0\0\128\208\225\57\197\65\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\32\126\64\3\0\0\0\0\0\224\139\64\3\0\0\0\0\0\0\112\64\3\0\0\0\0\0\128\93\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\49\0\2\24\240\1\0\0\10\0\0\0\74\0\0\0\138\0\0\0\196\0\0\0\4\1\128\0\68\1\0\1\132\1\128\1\28\129\128\1\68\1\0\2\13\65\1\2\68\1\0\2\224\64\50\128\196\1\128\2\4\2\128\1\220\129\0\1\4\2\0\3\23\0\130\3\22\2\0\128\4\2\128\2\68\2\128\1\28\130\0\1\68\2\128\3\128\2\0\4\196\2\0\0\92\130\128\1\137\64\2\3\150\46\0\128\4\2\0\4\23\0\130\3\214\21\0\128\4\2\0\1\68\2\128\1\28\130\0\1\68\2\0\1\132\2\128\1\92\130\0\1\132\2\0\2\196\2\128\4\0\3\128\4\68\3\0\2\132\3\0\5\220\130\0\2\4\3\128\5\68\3\0\6\17\67\3\6\206\2\131\5\204\2\130\5\4\3\128\4\64\3\128\4\132\3\128\6\196\3\0\7\28\131\0\2\68\3\0\2\82\3\128\6\132\3\128\4\192\3\128\4\4\4\0\6\156\131\128\1\81\131\131\6\132\3\0\0\23\128\3\6\86\3\0\128\132\3\128\7\192\3\128\5\4\4\0\0\156\131\128\1\154\3\0\0\22\1\0\128\132\3\0\0\142\131\131\6\137\128\3\3\86\35\0\128\86\6\0\128\4\3\0\2\132\2\0\0\150\5\0\128\132\3\128\7\192\3\0\6\4\4\0\8\156\131\128\1\154\3\0\0\22\4\0\128\132\3\0\0\23\128\131\5\86\1\0\128\132\3\0\2\196\3\0\0\143\195\3\7\142\131\131\6\154\67\0\0\86\1\0\128\132\3\128\8\192\3\128\6\4\4\0\0\68\4\0\0\15\68\4\8\156\131\128\1\137\128\3\3\150\28\0\128\132\3\128\0\196\3\0\9\0\4\128\6\68\4\128\9\77\68\4\6\156\131\0\2\196\3\0\10\0\4\0\5\68\4\128\10\132\4\128\5\196\4\0\11\92\132\128\1\79\68\132\5\220\131\128\1\142\195\3\7\137\128\3\3\86\24\0\128\22\234\255\127\214\23\0\128\4\2\128\7\64\2\128\3\132\2\128\11\28\130\128\1\26\2\0\0\22\22\0\128\4\2\0\1\68\2\128\1\28\130\0\1\68\2\0\0\23\64\2\4\86\0\0\128\137\0\64\3\86\20\0\128\68\2\0\12\24\0\130\4\86\10\0\128\65\2\0\0\132\2\128\12\196\2\0\13\4\3\128\13\68\3\128\13\76\3\130\6\132\3\0\2\77\131\131\6\156\130\0\2\196\2\0\10\4\3\128\13\64\3\0\4\220\130\128\1\200\2\128\13\196\2\0\2\20\3\0\5\68\3\0\2\224\2\5\128\196\3\0\14\4\4\128\0\68\4\128\14\132\4\128\0\196\4\128\12\0\5\0\5\64\5\0\7\128\5\0\7\156\4\128\2\28\132\0\0\68\4\128\1\220\131\128\1\4\4\0\15\64\4\128\7\132\4\128\15\28\132\128\1\8\4\128\1\0\4\128\4\68\4\0\16\70\196\131\8\85\66\4\8\223\66\250\127\137\64\2\3\22\9\0\128\65\2\0\0\138\2\0\0\196\2\128\14\4\3\0\13\68\3\128\13\132\3\128\16\196\3\128\13\204\3\130\7\4\4\0\2\156\3\128\1\220\2\0\0\162\66\0\0\196\2\128\13\204\2\130\5\200\2\128\13\196\2\0\17\0\3\0\5\220\2\1\1\150\2\0\128\4\4\0\14\64\4\128\7\132\4\128\1\28\132\128\1\68\4\128\15\80\68\4\8\72\4\128\1\64\4\128\4\132\4\0\16\134\4\4\9\85\130\132\8\225\130\0\0\150\252\255\127\137\64\2\3\150\0\0\128\214\233\255\127\22\0\0\128\137\64\64\3\223\0\205\127\196\0\128\0\4\1\0\1\68\1\128\1\220\128\128\1\4\1\0\0\68\1\128\16\128\1\128\1\196\1\0\2\92\129\128\1\132\1\0\2\32\65\0\128\10\2\0\0\9\0\130\3\31\1\255\127\4\1\0\0\68\1\128\16\128\1\128\1\196\1\0\2\92\129\128\1\132\1\0\2\32\193\55\128\4\2\128\0\68\2\128\2\132\2\128\1\28\130\128\1\68\2\0\0\87\64\2\4\22\54\0\128\68\2\0\2\13\66\2\4\68\2\0\0\132\2\0\0\196\2\0\0\4\3\0\0\68\3\0\0\132\3\0\0\196\3\128\4\0\4\0\4\68\4\0\2\132\4\128\17\220\131\0\2\4\4\0\18\23\0\132\7\22\9\0\128\4\4\128\2\68\4\128\1\28\132\0\1\0\3\0\8\4\4\128\18\68\4\128\1\28\132\0\1\192\2\0\8\4\4\0\1\68\4\128\1\28\132\0\1\64\3\0\8\4\4\128\0\68\4\128\18\132\4\128\1\28\132\128\1\128\3\0\8\10\4\0\0\64\2\0\8\4\4\0\2\64\4\128\5\132\4\0\2\32\196\2\128\10\133\0\0\68\5\0\0\132\5\128\2\196\5\128\1\156\133\0\1\9\133\133\10\68\5\0\2\132\5\128\18\196\5\128\1\156\133\0\1\9\133\133\10\73\2\133\9\31\132\252\127\214\20\0\128\4\4\0\2\23\0\132\7\86\3\0\128\4\4\128\2\68\4\128\1\28\132\0\1\0\3\0\8\4\4\128\0\68\4\0\1\132\4\128\1\28\132\128\1\64\3\0\8\4\4\128\18\68\4\128\1\28\132\0\1\128\3\0\8\150\16\0\128\4\4\0\19\23\0\132\7\22\0\0\128\150\15\0\128\4\4\128\7\64\4\128\7\132\4\0\0\28\132\128\1\26\4\0\0\150\4\0\128\4\4\128\0\68\4\128\2\132\4\128\1\28\132\128\1\0\3\0\8\4\4\128\18\68\4\128\1\28\132\0\1\192\2\0\8\4\4\128\0\68\4\128\18\132\4\128\1\28\132\128\1\64\3\0\8\4\4\128\18\68\4\128\1\28\132\0\1\128\3\0\8\86\9\0\128\4\4\128\17\23\0\132\7\86\4\0\128\4\4\128\2\68\4\128\1\28\132\0\1\0\3\0\8\4\4\128\0\68\4\128\18\132\4\128\1\28\132\128\1\192\2\0\8\4\4\0\1\68\4\128\1\28\132\0\1\70\3\4\0\4\4\128\18\68\4\128\1\28\132\0\1\128\3\0\8\22\4\0\128\4\4\128\5\23\0\132\7\86\3\0\128\4\4\128\0\68\4\128\2\132\4\128\1\28\132\128\1\0\3\0\8\4\4\128\0\68\4\0\1\132\4\128\1\28\132\128\1\70\3\4\0\4\4\128\18\68\4\128\1\28\132\0\1\128\3\0\8\4\4\128\7\68\4\128\4\128\4\0\4\196\4\0\19\4\5\0\19\92\132\0\2\132\4\0\2\28\132\128\1\26\4\0\0\22\0\0\128\198\194\2\1\4\4\128\4\64\4\0\4\132\4\128\19\196\4\128\19\28\132\0\2\68\4\0\2\23\64\4\8\22\1\0\128\4\4\0\1\68\4\128\1\28\132\0\1\134\2\4\0\150\0\0\128\4\4\0\2\12\4\132\3\134\2\4\0\4\4\128\0\68\4\128\4\128\4\0\4\196\4\0\18\4\5\0\18\28\132\128\2\68\4\0\2\23\64\4\8\22\0\0\128\70\67\3\1\4\4\128\7\68\4\128\4\128\4\0\4\196\4\0\20\4\5\0\20\92\132\0\2\132\4\0\2\28\132\128\1\26\4\0\0\22\0\0\128\134\131\3\1\4\4\128\4\64\4\0\4\132\4\128\20\196\4\128\20\28\132\0\2\68\4\0\2\23\64\4\8\22\3\0\128\10\4\0\0\64\2\0\8\4\4\0\2\68\4\128\0\132\4\128\2\92\132\0\1\132\4\0\2\32\196\0\128\4\5\128\0\68\5\0\1\28\133\0\1\73\2\133\9\31\132\254\127\6\196\1\0\9\4\3\129\68\4\0\21\9\68\131\8\9\196\130\129\9\132\2\130\68\4\128\21\82\4\128\8\9\132\131\8\68\4\0\22\9\68\130\8\31\129\199\127\4\1\128\0\68\1\128\2\132\1\128\1\28\129\128\1\68\1\128\18\132\1\128\1\92\129\0\1\132\1\0\0\196\1\0\1\4\2\128\1\220\129\0\1\4\2\0\2\205\1\130\3\4\2\0\2\160\193\0\128\132\2\128\0\196\2\128\22\156\130\0\1\73\128\130\4\159\129\254\127\138\129\1\0\137\129\128\130\196\1\0\23\137\1\129\3\196\1\0\0\137\193\1\131\196\1\128\23\210\1\128\3\137\65\129\3\137\65\128\131\196\1\0\24\210\1\128\3\137\1\128\3\158\1\0\1\30\0\128\0\8\0\0\0\4\1\0\0\0\0\0\4\9\0\0\0\117\54\103\117\115\118\86\113\0\4\9\0\0\0\79\119\106\99\56\112\66\88\0\4\6\0\0\0\117\110\56\101\68\0\4\6\0\0\0\81\86\111\80\68\0\4\4\0\0\0\86\89\99\0\4\7\0\0\0\114\114\78\56\81\121\0\0\0\0\0\240\1\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\63\0\0\0\2\0\0\0\97\0\1\0\0\0\239\1\0\0\2\0\0\0\109\0\2\0\0\0\239\1\0\0\2\0\0\0\105\0\3\0\0\0\239\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\11\0\0\0\215\0\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\11\0\0\0\215\0\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\11\0\0\0\215\0\0\0\2\0\0\0\99\0\12\0\0\0\214\0\0\0\2\0\0\0\97\0\15\0\0\0\214\0\0\0\2\0\0\0\101\0\21\0\0\0\26\0\0\0\2\0\0\0\108\0\33\0\0\0\116\0\0\0\2\0\0\0\101\0\36\0\0\0\116\0\0\0\2\0\0\0\100\0\37\0\0\0\116\0\0\0\2\0\0\0\114\0\47\0\0\0\116\0\0\0\2\0\0\0\108\0\52\0\0\0\116\0\0\0\2\0\0\0\101\0\59\0\0\0\116\0\0\0\2\0\0\0\100\0\127\0\0\0\211\0\0\0\2\0\0\0\111\0\144\0\0\0\176\0\0\0\2\0\0\0\102\0\144\0\0\0\176\0\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\152\0\0\0\175\0\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\152\0\0\0\175\0\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\152\0\0\0\175\0\0\0\2\0\0\0\110\0\153\0\0\0\174\0\0\0\2\0\0\0\110\0\165\0\0\0\174\0\0\0\2\0\0\0\110\0\189\0\0\0\210\0\0\0\2\0\0\0\111\0\189\0\0\0\210\0\0\0\16\0\0\0\40\102\111\114\32\103\101\110\101\114\97\116\111\114\41\0\195\0\0\0\209\0\0\0\12\0\0\0\40\102\111\114\32\115\116\97\116\101\41\0\195\0\0\0\209\0\0\0\14\0\0\0\40\102\111\114\32\99\111\110\116\114\111\108\41\0\195\0\0\0\209\0\0\0\2\0\0\0\108\0\196\0\0\0\207\0\0\0\2\0\0\0\111\0\196\0\0\0\207\0\0\0\2\0\0\0\111\0\200\0\0\0\207\0\0\0\2\0\0\0\108\0\219\0\0\0\239\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\225\0\0\0\229\0\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\225\0\0\0\229\0\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\225\0\0\0\229\0\0\0\2\0\0\0\101\0\226\0\0\0\228\0\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\235\0\0\0\205\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\235\0\0\0\205\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\235\0\0\0\205\1\0\0\2\0\0\0\112\0\236\0\0\0\204\1\0\0\2\0\0\0\108\0\240\0\0\0\204\1\0\0\2\0\0\0\69\0\251\0\0\0\204\1\0\0\2\0\0\0\67\0\251\0\0\0\204\1\0\0\2\0\0\0\104\0\251\0\0\0\204\1\0\0\2\0\0\0\120\0\251\0\0\0\204\1\0\0\2\0\0\0\114\0\251\0\0\0\204\1\0\0\2\0\0\0\99\0\251\0\0\0\204\1\0\0\2\0\0\0\66\0\0\1\0\0\204\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\25\1\0\0\39\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\25\1\0\0\39\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\25\1\0\0\39\1\0\0\2\0\0\0\108\0\26\1\0\0\38\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\187\1\0\0\193\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\187\1\0\0\193\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\187\1\0\0\193\1\0\0\2\0\0\0\101\0\188\1\0\0\192\1\0\0\2\0\0\0\101\0\194\1\0\0\204\1\0\0\2\0\0\0\108\0\209\1\0\0\239\1\0\0\2\0\0\0\114\0\212\1\0\0\239\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\219\1\0\0\225\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\219\1\0\0\225\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\219\1\0\0\225\1\0\0\2\0\0\0\101\0\220\1\0\0\224\1\0\0\49\0\0\0\2\0\0\0\111\0\2\0\0\0\116\0\2\0\0\0\100\0\2\0\0\0\101\0\2\0\0\0\110\0\2\0\0\0\102\0\2\0\0\0\77\0\2\0\0\0\72\0\2\0\0\0\86\0\2\0\0\0\115\0\2\0\0\0\83\0\2\0\0\0\82\0\2\0\0\0\104\0\2\0\0\0\81\0\2\0\0\0\88\0\2\0\0\0\65\0\2\0\0\0\95\0\2\0\0\0\87\0\2\0\0\0\79\0\2\0\0\0\89\0\2\0\0\0\78\0\2\0\0\0\106\0\2\0\0\0\71\0\2\0\0\0\76\0\2\0\0\0\90\0\2\0\0\0\66\0\2\0\0\0\67\0\2\0\0\0\108\0\2\0\0\0\114\0\2\0\0\0\69\0\2\0\0\0\122\0\2\0\0\0\120\0\2\0\0\0\112\0\2\0\0\0\73\0\2\0\0\0\80\0\2\0\0\0\103\0\2\0\0\0\68\0\2\0\0\0\117\0\2\0\0\0\70\0\2\0\0\0\121\0\2\0\0\0\84\0\2\0\0\0\119\0\2\0\0\0\113\0\2\0\0\0\85\0\2\0\0\0\118\0\2\0\0\0\98\0\2\0\0\0\107\0\2\0\0\0\74\0\2\0\0\0\75\0\152\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\28\0\0\0\2\0\0\0\77\0\9\0\0\0\151\0\0\0\2\0\0\0\71\0\14\0\0\0\151\0\0\0\2\0\0\0\88\0\24\0\0\0\151\0\0\0\2\0\0\0\104\0\29\0\0\0\151\0\0\0\2\0\0\0\83\0\31\0\0\0\151\0\0\0\2\0\0\0\107\0\33\0\0\0\151\0\0\0\2\0\0\0\86\0\35\0\0\0\151\0\0\0\2\0\0\0\118\0\37\0\0\0\151\0\0\0\2\0\0\0\121\0\39\0\0\0\151\0\0\0\2\0\0\0\120\0\41\0\0\0\151\0\0\0\2\0\0\0\76\0\46\0\0\0\151\0\0\0\2\0\0\0\95\0\48\0\0\0\151\0\0\0\2\0\0\0\68\0\57\0\0\0\151\0\0\0\2\0\0\0\119\0\59\0\0\0\151\0\0\0\2\0\0\0\90\0\61\0\0\0\151\0\0\0\2\0\0\0\89\0\63\0\0\0\151\0\0\0\2\0\0\0\82\0\65\0\0\0\151\0\0\0\2\0\0\0\110\0\67\0\0\0\151\0\0\0\2\0\0\0\81\0\72\0\0\0\151\0\0\0\2\0\0\0\113\0\77\0\0\0\151\0\0\0\2\0\0\0\70\0\79\0\0\0\151\0\0\0\2\0\0\0\103\0\81\0\0\0\151\0\0\0\2\0\0\0\84\0\83\0\0\0\151\0\0\0\2\0\0\0\85\0\88\0\0\0\151\0\0\0\2\0\0\0\74\0\90\0\0\0\151\0\0\0\2\0\0\0\111\0\92\0\0\0\151\0\0\0\2\0\0\0\75\0\97\0\0\0\151\0\0\0\2\0\0\0\98\0\147\0\0\0\151\0\0\0\22\0\0\0\2\0\0\0\105\0\2\0\0\0\116\0\2\0\0\0\100\0\2\0\0\0\101\0\2\0\0\0\102\0\2\0\0\0\72\0\2\0\0\0\115\0\2\0\0\0\65\0\2\0\0\0\87\0\2\0\0\0\79\0\2\0\0\0\78\0\2\0\0\0\106\0\2\0\0\0\66\0\2\0\0\0\67\0\2\0\0\0\108\0\2\0\0\0\114\0\2\0\0\0\69\0\2\0\0\0\122\0\2\0\0\0\112\0\2\0\0\0\73\0\2\0\0\0\80\0\2\0\0\0\117\0\0\0\0\0\0\0\0\0\1\0\0\0\9\3\2\10\24\0\0\0\198\0\64\0\6\65\64\0\70\129\64\0\134\193\64\0\193\1\1\0\6\66\65\0\100\2\0\0\4\0\0\0\4\0\128\0\0\0\128\1\0\0\128\3\0\0\128\2\4\0\0\1\4\0\128\1\4\0\0\2\4\0\128\2\0\0\0\1\4\0\0\3\4\0\128\3\0\0\0\2\4\0\0\4\0\0\0\3\94\2\0\1\30\0\128\0\6\0\0\0\3\0\0\0\0\60\6\41\193\3\0\0\0\0\14\143\37\193\3\0\0\0\0\4\8\26\65\4\7\0\0\0\114\114\78\56\81\121\0\3\0\0\0\0\0\0\0\0\4\6\0\0\0\81\86\111\80\68\0\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\15\0\2\29\124\27\0\0\2\0\128\0\65\0\0\0\138\0\0\0\193\64\0\0\1\129\0\0\65\193\0\0\129\1\1\0\193\65\1\0\1\130\1\0\74\2\0\0\132\2\0\0\196\2\128\0\37\3\0\0\156\130\0\0\141\194\65\5\196\2\0\1\4\3\128\1\198\2\131\5\10\3\0\0\65\3\2\0\138\3\0\0\229\3\0\0\162\67\0\0\193\67\2\0\0\4\0\5\65\196\1\0\224\195\2\128\196\4\0\2\25\128\132\9\86\1\0\128\196\4\0\2\205\196\4\9\12\197\65\9\6\5\5\7\9\3\133\9\150\0\0\128\204\196\65\9\198\196\4\7\137\192\4\9\223\131\252\127\196\3\0\2\205\195\3\5\204\195\193\7\0\4\128\5\70\196\1\8\198\194\0\8\132\4\128\2\196\4\0\3\1\133\2\0\65\197\2\0\220\132\128\1\4\5\0\3\65\5\3\0\129\69\3\0\28\5\128\1\156\132\0\0\25\128\132\8\86\131\3\128\132\4\128\3\134\132\67\9\154\68\0\0\214\1\0\128\164\4\0\0\4\0\128\3\4\0\0\3\196\4\0\3\1\197\3\0\65\5\4\0\220\4\128\1\156\132\0\0\25\128\132\8\214\197\1\128\25\64\196\8\22\215\0\128\132\4\128\2\193\132\4\0\1\197\4\0\156\132\128\1\25\128\132\8\150\75\0\128\132\4\128\3\134\4\69\9\154\68\0\0\150\2\0\128\132\4\0\4\134\68\69\9\196\4\0\3\1\133\5\0\68\5\0\4\70\197\197\10\220\132\128\1\4\5\0\3\68\5\128\3\129\5\5\0\156\132\128\2\25\128\132\8\22\43\0\128\132\4\0\3\193\4\6\0\1\69\6\0\156\132\128\1\25\128\132\8\150\20\0\128\132\4\128\3\134\132\70\9\154\68\0\0\22\2\0\128\164\68\0\0\4\0\128\3\4\0\0\3\196\4\0\3\1\197\6\0\68\5\0\4\70\197\197\10\220\4\128\1\156\132\0\0\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\229\255\127\132\4\128\2\196\4\0\3\1\5\7\0\68\5\0\4\70\197\197\10\220\132\128\1\1\69\7\0\156\132\128\1\25\128\132\8\86\227\255\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\220\255\127\132\4\128\2\193\132\7\0\1\197\7\0\156\132\128\1\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\22\210\255\127\132\4\128\3\134\4\72\9\154\68\0\0\150\2\0\128\132\4\0\4\134\68\72\9\196\4\0\3\1\133\8\0\68\5\0\4\70\197\197\10\220\132\128\1\4\5\0\3\68\5\128\3\129\5\8\0\156\132\128\2\24\128\132\8\214\205\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\199\255\127\25\0\201\8\150\19\0\128\132\4\128\2\196\4\0\3\1\69\9\0\68\5\0\4\70\133\201\10\220\132\128\1\1\197\9\0\156\132\128\1\23\128\132\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\187\255\127\132\4\128\2\193\4\10\0\1\69\10\0\156\132\128\1\25\128\132\8\22\186\255\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\178\255\127\132\4\128\2\193\132\4\0\1\133\10\0\156\132\128\1\23\128\132\8\22\3\0\128\134\132\1\8\198\68\0\8\1\197\1\0\64\5\128\9\129\197\1\0\32\5\1\128\12\198\5\9\13\198\65\12\77\198\193\11\70\70\6\6\137\64\6\12\31\69\254\127\22\174\255\127\132\4\128\2\193\196\10\0\1\5\11\0\156\132\128\1\25\128\132\8\150\172\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\214\170\255\127\132\4\128\2\193\68\11\0\1\133\11\0\156\132\128\1\25\128\132\8\214\75\0\128\132\4\128\3\134\196\75\9\154\68\0\0\214\1\0\128\164\132\0\0\4\0\128\3\4\0\0\3\196\4\0\3\1\5\12\0\65\69\12\0\220\4\128\1\156\132\0\0\25\128\132\8\150\51\0\128\132\4\128\3\134\132\76\9\154\68\0\0\150\2\0\128\132\4\0\4\134\196\76\9\196\4\0\3\1\5\13\0\68\5\0\4\70\69\205\10\220\132\128\1\4\5\0\3\68\5\128\3\129\133\12\0\156\132\128\2\23\128\132\8\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\86\124\255\127\132\4\128\3\134\196\77\9\154\68\0\0\214\1\0\128\164\196\0\0\4\0\128\3\4\0\0\3\196\4\0\3\1\5\14\0\65\69\14\0\220\4\128\1\156\132\0\0\25\128\132\8\214\120\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\114\255\127\132\4\128\2\193\132\14\0\1\197\14\0\156\132\128\1\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\22\104\255\127\132\4\128\3\134\4\79\9\154\68\0\0\86\2\0\128\132\4\0\4\134\68\79\9\196\4\0\3\1\133\15\0\65\197\15\0\220\132\128\1\4\5\0\3\68\5\128\3\129\5\15\0\156\132\128\2\24\128\132\8\22\100\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\93\255\127\132\4\128\3\134\4\80\9\154\68\0\0\86\2\0\128\132\4\0\4\134\68\80\9\196\4\0\3\1\133\16\0\65\197\16\0\220\132\128\1\4\5\0\3\68\5\128\3\129\5\16\0\156\132\128\2\25\128\132\8\86\11\0\128\132\4\0\3\193\4\17\0\4\5\0\4\6\69\77\10\156\132\128\1\23\128\132\8\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\80\255\127\132\4\0\3\193\68\17\0\1\133\17\0\156\132\128\1\25\128\132\8\86\79\255\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\214\77\255\127\132\4\0\3\193\196\17\0\4\5\0\4\6\5\82\10\156\132\128\1\24\64\4\9\150\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\86\74\255\127\132\4\128\3\134\68\82\9\154\68\0\0\150\2\0\128\132\4\0\4\134\132\82\9\196\4\0\3\1\197\18\0\68\5\0\4\70\5\211\10\220\132\128\1\4\5\0\3\68\5\128\3\129\69\18\0\156\132\128\2\24\128\132\8\22\70\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\32\255\127\132\4\128\3\134\68\83\9\154\68\0\0\22\2\0\128\164\4\1\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\19\0\68\5\0\4\70\197\211\10\220\4\128\1\156\132\0\0\25\128\132\8\86\143\0\128\132\4\128\3\134\4\84\9\154\68\0\0\150\2\0\128\132\4\0\4\134\68\84\9\196\4\0\3\1\133\20\0\68\5\0\4\70\5\210\10\220\132\128\1\4\5\0\3\68\5\128\3\129\5\20\0\156\132\128\2\25\128\132\8\22\97\0\128\132\4\128\3\134\196\84\9\154\68\0\0\86\2\0\128\132\4\0\4\134\4\85\9\196\4\0\3\1\69\21\0\65\133\21\0\220\132\128\1\4\5\0\3\68\5\128\3\129\197\20\0\156\132\128\2\25\128\132\8\214\15\0\128\132\4\128\2\196\4\0\3\1\197\21\0\65\5\22\0\220\132\128\1\4\5\0\3\65\69\22\0\129\133\22\0\28\5\128\1\156\132\0\0\23\128\132\8\86\1\0\128\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\16\255\127\132\4\128\2\196\4\0\3\1\197\22\0\65\5\23\0\220\132\128\1\4\5\0\3\65\69\23\0\129\133\23\0\28\5\128\1\156\132\0\0\25\128\132\8\86\13\255\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\214\4\255\127\24\64\132\175\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\22\223\254\127\132\4\128\2\196\4\0\3\1\5\24\0\65\69\24\0\220\132\128\1\1\133\24\0\156\132\128\1\24\128\132\8\214\220\254\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\150\183\254\127\132\4\128\2\193\196\24\0\1\5\25\0\156\132\128\1\25\128\132\8\214\21\0\128\132\4\128\3\134\68\89\9\154\68\0\0\150\2\0\128\132\4\0\4\134\132\89\9\196\4\0\3\1\197\25\0\68\5\0\4\70\5\210\10\220\132\128\1\4\5\0\3\68\5\128\3\129\69\25\0\156\132\128\2\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\170\254\127\132\4\128\2\196\4\0\3\1\5\26\0\68\5\0\4\70\5\210\10\220\132\128\1\4\5\0\3\65\69\26\0\129\133\26\0\28\5\128\1\156\132\0\0\25\128\132\8\86\167\254\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\160\254\127\132\4\0\3\193\196\26\0\1\5\27\0\156\132\128\1\23\128\132\8\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\151\254\127\132\4\0\3\193\68\27\0\4\5\0\4\6\133\91\10\156\132\128\1\25\128\132\8\22\150\254\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\141\254\127\132\4\128\3\134\196\91\9\154\68\0\0\86\2\0\128\132\4\0\4\134\4\92\9\196\4\0\3\1\69\28\0\65\133\28\0\220\132\128\1\4\5\0\3\68\5\128\3\129\197\27\0\156\132\128\2\25\128\132\8\22\62\0\128\132\4\128\2\196\4\0\3\1\197\28\0\68\5\0\4\70\5\221\10\220\132\128\1\1\69\29\0\156\132\128\1\25\128\132\8\86\49\0\128\23\128\221\8\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\86\97\254\127\132\4\128\2\196\4\0\3\1\197\29\0\65\5\30\0\220\132\128\1\4\5\0\3\65\69\30\0\132\5\0\4\134\69\77\11\28\5\128\1\156\132\0\0\25\128\132\8\22\94\254\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\85\254\127\132\4\0\3\193\132\30\0\1\197\30\0\156\132\128\1\23\128\132\8\214\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\22\82\254\127\132\4\128\2\196\4\0\3\1\5\31\0\68\5\0\4\70\133\201\10\220\132\128\1\4\5\0\3\65\69\31\0\132\5\0\4\134\133\95\11\28\5\128\1\156\132\0\0\25\128\132\8\150\78\254\127\134\132\1\8\198\132\4\1\12\197\65\9\6\5\5\1\220\132\0\1\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\86\75\254\127\132\4\128\3\134\196\95\9\154\68\0\0\214\1\0\128\164\68\1\0\4\0\128\3\4\0\0\3\196\4\0\3\1\5\32\0\65\69\32\0\220\4\128\1\156\132\0\0\25\128\132\8\86\7\0\128\132\4\128\2\193\132\14\0\1\133\32\0\156\132\128\1\23\128\132\8\214\3\0\128\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\86\66\254\127\25\192\224\8\214\65\254\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\86\64\254\127\23\0\225\8\86\1\0\128\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\62\254\127\132\4\128\2\196\4\0\3\1\69\33\0\65\133\33\0\220\132\128\1\4\5\0\3\65\197\33\0\132\5\0\4\134\69\77\11\28\5\128\1\156\132\0\0\25\128\132\8\22\59\254\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\50\254\127\25\0\226\8\150\197\0\128\132\4\128\2\193\132\14\0\1\69\34\0\156\132\128\1\25\128\132\8\22\80\0\128\132\4\128\2\196\4\0\3\1\133\34\0\65\197\34\0\220\132\128\1\1\5\35\0\156\132\128\1\25\128\132\8\86\25\0\128\132\4\128\3\134\68\99\9\154\68\0\0\214\1\0\128\164\132\1\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\35\0\65\197\35\0\220\4\128\1\156\132\0\0\25\128\132\8\22\9\0\128\24\64\4\200\22\3\0\128\134\68\0\8\198\132\4\1\12\197\65\9\70\69\3\8\129\197\1\0\32\133\0\128\0\6\128\9\70\198\5\1\213\68\6\12\31\197\254\127\6\133\1\8\137\192\4\10\22\39\254\127\132\4\128\2\196\4\0\3\1\69\36\0\65\133\36\0\220\132\128\1\4\5\0\3\65\197\36\0\129\5\37\0\28\5\128\1\156\132\0\0\24\128\132\8\22\36\254\127\134\132\1\8\196\4\128\5\0\5\0\1\64\5\0\9\128\5\0\2\221\4\0\2\222\4\0\0\6\196\0\8\6\196\0\8\150\33\254\127\23\64\229\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\24\254\127\132\4\128\2\196\4\0\3\1\133\37\0\65\197\37\0\220\132\128\1\1\5\38\0\156\132\128\1\25\128\132\8\86\22\254\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\214\20\254\127\132\4\0\3\193\68\38\0\4\5\0\4\6\133\102\10\156\132\128\1\25\128\132\8\150\41\0\128\132\4\0\3\193\196\38\0\1\5\39\0\156\132\128\1\24\64\4\9\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\86\236\253\127\132\4\0\3\193\68\39\0\1\133\39\0\156\132\128\1\24\128\132\8\214\234\253\127\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\86\233\253\127\132\4\128\3\134\196\103\9\154\68\0\0\86\2\0\128\132\4\0\4\134\4\104\9\196\4\0\3\1\69\40\0\65\133\40\0\220\132\128\1\4\5\0\3\68\5\128\3\129\197\39\0\156\132\128\2\24\64\4\9\214\1\0\128\134\132\1\8\134\132\4\1\198\68\3\8\198\196\4\1\25\128\132\9\214\227\253\127\198\66\0\8\86\227\253\127\132\4\128\2\193\132\4\0\1\197\40\0\156\132\128\1\24\128\132\8\214\225\253\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\86\224\253\127\132\4\0\3\193\4\41\0\4\5\0\4\6\69\105\10\156\132\128\1\25\128\132\8\150\49\0\128\132\4\128\2\193\132\41\0\1\197\41\0\156\132\128\1\25\128\132\8\150\5\0\128\24\64\4\212\150\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\208\4\133\9\137\192\4\9\214\218\253\127\132\4\128\2\196\4\0\3\1\69\42\0\65\133\42\0\220\132\128\1\4\5\0\3\65\197\42\0\129\5\43\0\28\5\128\1\156\132\0\0\24\128\132\8\214\215\253\127\30\0\128\0\86\215\253\127\132\4\128\2\193\132\4\0\1\69\43\0\156\132\128\1\24\64\4\9\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\150\176\253\127\132\4\128\2\196\4\0\3\1\133\43\0\65\197\43\0\220\132\128\1\1\5\44\0\156\132\128\1\24\128\132\8\86\174\253\127\134\132\1\8\134\132\4\1\198\68\0\8\6\69\3\8\137\4\133\9\214\172\253\127\132\4\0\3\193\68\44\0\4\5\0\4\6\133\108\10\156\132\128\1\25\128\132\8\22\14\0\128\132\4\0\3\193\196\44\0\4\5\0\4\6\5\109\10\156\132\128\1\23\128\132\8\150\1\0\128\134\132\1\8\134\132\4\1\198\68\0\8\6\69\3\8\6\5\5\1\137\4\133\9\150\167\253\127\132\4\128\3\134\68\109\9\154\68\0\0\86\2\0\128\132\4\0\4\134\132\109\9\196\4\0\3\1\197\45\0\65\5\46\0\220\132\128\1\4\5\0\3\68\5\128\3\129\69\45\0\156\132\128\2\25\128\132\8\150\163\253\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\156\253\127\132\4\128\3\134\68\110\9\154\68\0\0\86\2\0\128\132\4\0\4\134\132\110\9\196\4\0\3\1\197\46\0\65\5\47\0\220\132\128\1\4\5\0\3\68\5\128\3\129\69\46\0\156\132\128\2\23\128\132\8\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\146\253\127\25\0\226\8\150\145\253\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\86\108\253\127\132\4\128\2\193\132\41\0\1\69\47\0\156\132\128\1\25\128\132\8\214\127\0\128\132\4\128\3\134\132\111\9\154\68\0\0\22\2\0\128\164\196\1\0\4\0\128\3\4\0\0\3\196\4\0\3\1\197\47\0\68\5\0\4\70\133\201\10\220\4\128\1\156\132\0\0\25\128\132\8\214\29\0\128\25\0\240\8\150\10\0\128\132\4\128\3\134\68\112\9\154\68\0\0\22\2\0\128\164\4\2\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\48\0\68\5\0\4\70\197\240\10\220\4\128\1\156\132\0\0\24\64\4\9\86\1\0\128\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\86\97\253\127\132\4\128\2\196\4\0\3\1\5\49\0\65\69\49\0\220\132\128\1\4\5\0\3\65\133\49\0\132\5\0\4\134\5\109\11\28\5\128\1\156\132\0\0\24\128\132\8\22\94\253\127\134\132\1\8\198\68\0\8\198\196\4\1\12\197\65\9\137\192\4\10\6\69\3\8\6\5\133\9\137\0\5\9\214\91\253\127\23\192\241\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\84\253\127\132\4\128\3\134\4\114\9\154\68\0\0\150\2\0\128\132\4\0\4\134\68\114\9\196\4\0\3\1\133\50\0\68\5\0\4\70\133\219\10\220\132\128\1\4\5\0\3\68\5\128\3\129\5\50\0\156\132\128\2\25\128\132\8\214\79\253\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\73\253\127\132\4\128\2\193\68\11\0\1\197\50\0\156\132\128\1\25\128\132\8\86\78\0\128\132\4\128\2\193\4\51\0\1\69\51\0\156\132\128\1\23\128\132\8\22\37\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\32\253\127\132\4\128\2\196\4\0\3\1\133\51\0\68\5\0\4\70\69\233\10\220\132\128\1\1\197\51\0\156\132\128\1\25\128\132\8\86\30\253\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\22\249\252\127\132\4\128\2\193\4\51\0\1\5\52\0\156\132\128\1\23\128\132\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\22\239\252\127\132\4\128\2\196\4\0\3\1\69\52\0\65\133\52\0\220\132\128\1\1\197\52\0\156\132\128\1\25\128\132\8\214\236\252\127\134\132\1\8\134\132\4\1\198\68\3\8\198\196\4\1\23\192\4\9\86\235\252\127\198\66\0\8\214\234\252\127\132\4\128\2\196\4\0\3\1\5\53\0\68\5\0\4\70\69\245\10\220\132\128\1\4\5\0\3\65\133\53\0\129\197\53\0\28\5\128\1\156\132\0\0\25\128\132\8\22\38\0\128\25\0\246\8\214\16\0\128\24\64\132\236\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\223\252\127\132\4\128\2\193\132\4\0\1\133\54\0\156\132\128\1\24\128\132\8\214\221\252\127\134\132\1\8\198\132\4\1\12\197\65\9\6\5\5\1\220\132\0\1\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\198\196\4\1\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\201\68\5\10\6\196\0\8\198\132\1\8\198\196\4\1\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\201\68\5\10\6\196\0\8\6\196\0\8\22\214\252\127\132\4\128\3\134\196\118\9\154\68\0\0\22\2\0\128\164\68\2\0\4\0\128\3\4\0\0\3\196\4\0\3\1\5\55\0\68\5\0\4\70\5\237\10\220\4\128\1\156\132\0\0\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\214\201\252\127\132\4\0\3\193\68\55\0\4\5\0\4\6\69\105\10\156\132\128\1\24\128\132\8\22\200\252\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\193\252\127\132\4\128\2\196\4\0\3\1\133\55\0\68\5\0\4\70\5\210\10\220\132\128\1\1\197\55\0\156\132\128\1\25\128\132\8\150\15\0\128\132\4\0\3\193\4\56\0\4\5\0\4\6\5\109\10\156\132\128\1\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\180\252\127\132\4\128\3\134\68\120\9\154\68\0\0\86\2\0\128\132\4\0\4\134\132\120\9\196\4\0\3\1\197\56\0\65\5\57\0\220\132\128\1\4\5\0\3\68\5\128\3\129\69\56\0\156\132\128\2\24\128\132\8\150\176\252\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\22\175\252\127\132\4\128\3\134\68\121\9\154\68\0\0\22\2\0\128\164\132\2\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\57\0\68\5\0\4\70\69\245\10\220\4\128\1\156\132\0\0\24\64\4\9\22\9\0\128\134\132\1\8\198\132\4\1\204\196\132\132\137\192\4\9\204\196\65\9\12\197\65\9\6\5\5\1\12\5\133\132\137\0\133\9\204\196\121\9\12\197\121\9\6\5\5\1\12\5\133\132\137\0\133\9\198\132\4\1\12\197\121\9\6\5\5\1\24\0\133\132\22\2\0\128\76\197\65\9\70\69\5\1\24\192\132\10\86\0\0\128\198\66\0\8\22\165\252\127\76\5\122\9\137\192\132\10\86\164\252\127\76\197\65\9\70\69\5\1\24\64\133\9\86\0\0\128\198\66\0\8\214\162\252\127\76\5\122\9\137\192\132\10\22\162\252\127\132\4\128\3\134\68\122\9\154\68\0\0\150\2\0\128\132\4\0\4\134\132\122\9\196\4\0\3\1\197\58\0\68\5\0\4\70\133\236\10\220\132\128\1\4\5\0\3\68\5\128\3\129\69\58\0\156\132\128\2\24\128\132\8\214\157\252\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\204\197\193\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\12\197\193\9\68\5\0\6\129\197\1\0\32\5\0\128\137\128\205\11\31\69\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\12\198\65\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\76\197\65\10\132\5\0\6\193\197\1\0\96\5\0\128\137\128\77\12\95\69\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\204\197\193\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\150\120\252\127\132\4\128\3\134\4\123\9\154\68\0\0\214\1\0\128\164\196\2\0\4\0\128\3\4\0\0\3\196\4\0\3\1\69\59\0\65\133\59\0\220\4\128\1\156\132\0\0\25\128\132\8\22\95\1\128\132\4\128\2\196\4\0\3\1\197\59\0\68\5\0\4\70\5\252\10\220\132\128\1\4\5\0\3\65\69\60\0\132\5\0\4\134\5\82\11\28\5\128\1\156\132\0\0\25\128\132\8\22\176\0\128\25\128\252\8\22\66\0\128\132\4\128\2\193\132\4\0\1\197\60\0\156\132\128\1\25\128\132\8\22\40\0\128\25\0\253\8\150\16\0\128\132\4\128\2\196\4\0\3\1\69\61\0\65\133\61\0\220\132\128\1\4\5\0\3\65\197\61\0\129\5\62\0\28\5\128\1\156\132\0\0\23\128\132\8\150\3\0\128\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\140\197\65\9\198\69\0\8\28\5\0\2\220\68\0\0\204\196\65\9\4\5\0\6\65\197\1\0\224\4\0\128\137\128\77\11\223\68\255\127\86\104\252\127\132\4\128\2\193\4\10\0\1\69\62\0\156\132\128\1\25\128\132\8\214\102\252\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\86\94\252\127\132\4\128\3\134\132\126\9\154\68\0\0\86\2\0\128\132\4\0\4\134\196\126\9\196\4\0\3\1\5\63\0\65\69\63\0\220\132\128\1\4\5\0\3\68\5\128\3\129\133\62\0\156\132\128\2\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\214\81\252\127\132\4\128\2\196\4\0\3\1\133\63\0\68\5\0\4\70\5\221\10\220\132\128\1\4\5\0\3\65\197\63\0\129\5\64\0\28\5\128\1\156\132\0\0\24\128\132\8\150\78\252\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\71\252\127\132\4\128\2\196\4\0\3\1\69\64\0\68\5\0\4\129\133\64\0\70\133\133\10\220\132\128\1\4\5\0\3\65\197\64\0\132\5\0\4\193\5\65\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\22\12\0\128\132\4\128\2\196\4\0\3\1\69\65\0\68\5\0\4\129\69\41\0\70\133\133\10\220\132\128\1\1\133\65\0\156\132\128\1\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\57\252\127\129\196\65\0\25\128\132\8\150\56\252\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\22\55\252\127\132\4\128\3\193\4\66\0\134\196\4\9\154\68\0\0\214\1\0\128\164\4\3\0\4\0\128\3\4\0\0\3\196\4\0\3\1\69\66\0\65\133\66\0\220\4\128\1\156\132\0\0\24\64\4\9\86\1\0\128\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\214\49\252\127\132\4\0\3\193\196\66\0\4\5\0\4\65\5\67\0\6\69\5\10\156\132\128\1\24\128\132\8\214\47\252\127\134\132\1\8\198\68\0\8\137\192\4\9\214\46\252\127\132\4\128\3\193\68\67\0\134\196\4\9\154\68\0\0\214\1\0\128\164\68\3\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\67\0\65\197\67\0\220\4\128\1\156\132\0\0\25\128\132\8\86\27\0\128\129\4\68\0\25\128\132\8\150\10\0\128\132\4\0\3\193\68\68\0\1\133\68\0\156\132\128\1\23\128\132\8\86\0\0\128\198\66\0\8\86\40\252\127\132\4\0\3\193\196\68\0\4\5\0\4\65\5\65\0\6\69\5\10\156\132\128\1\25\128\132\8\86\38\252\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\31\252\127\132\4\128\2\196\4\0\3\1\5\69\0\65\69\69\0\220\132\128\1\4\5\0\3\65\133\69\0\132\5\0\4\193\5\60\0\134\197\5\11\28\5\128\1\156\132\0\0\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\19\252\127\132\4\128\2\196\4\0\3\1\197\69\0\65\5\70\0\220\132\128\1\1\69\70\0\156\132\128\1\24\128\132\8\86\17\252\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\205\4\133\9\137\192\4\9\150\15\252\127\132\4\128\2\196\4\0\3\1\133\70\0\65\197\70\0\220\132\128\1\4\5\0\3\65\5\71\0\129\69\71\0\28\5\128\1\156\132\0\0\25\128\132\8\150\54\0\128\132\4\128\3\193\132\71\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\196\71\0\134\196\4\9\196\4\0\3\1\5\72\0\65\69\72\0\220\132\128\1\4\5\0\3\68\5\128\3\129\133\71\0\156\132\128\2\23\128\132\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\150\255\251\127\132\4\0\3\193\132\72\0\4\5\0\4\65\197\72\0\6\69\5\10\156\132\128\1\25\128\132\8\150\253\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\213\251\127\132\4\128\2\193\196\24\0\1\5\73\0\156\132\128\1\24\64\4\9\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\205\251\127\132\4\128\3\193\68\73\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\132\73\0\134\196\4\9\196\4\0\3\1\197\73\0\68\5\0\4\129\5\74\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\69\73\0\156\132\128\2\24\128\132\8\150\200\251\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\193\251\127\132\4\128\2\196\4\0\3\1\69\74\0\68\5\0\4\129\5\60\0\70\133\133\10\220\132\128\1\4\5\0\3\65\133\74\0\132\5\0\4\193\197\74\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\22\80\0\128\132\4\128\3\193\4\75\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\68\75\0\134\196\4\9\196\4\0\3\1\133\75\0\65\197\75\0\220\132\128\1\4\5\0\3\68\5\128\3\129\5\75\0\156\132\128\2\25\128\132\8\214\43\0\128\132\4\128\2\196\4\0\3\1\5\76\0\68\5\0\4\129\197\5\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\76\0\129\133\76\0\28\5\128\1\156\132\0\0\25\128\132\8\150\24\0\128\132\4\128\3\193\196\76\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\4\77\0\134\196\4\9\196\4\0\3\1\69\77\0\68\5\0\4\129\133\77\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\197\76\0\156\132\128\2\24\64\4\9\86\8\0\128\134\132\1\8\198\132\4\1\1\197\1\0\12\5\5\9\6\5\5\1\220\132\0\1\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\198\196\4\1\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\201\68\5\10\6\196\0\8\198\132\1\8\198\196\4\1\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\201\68\5\10\6\196\0\8\6\196\0\8\214\167\251\127\132\4\128\3\193\196\77\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\4\78\0\134\196\4\9\196\4\0\3\1\69\78\0\65\133\78\0\220\132\128\1\4\5\0\3\68\5\128\3\129\197\77\0\156\132\128\2\24\128\132\8\86\163\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\156\251\127\132\4\128\3\193\196\78\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\4\79\0\134\196\4\9\196\4\0\3\1\69\79\0\68\5\0\4\129\133\9\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\197\78\0\156\132\128\2\24\64\4\9\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\144\251\127\132\4\0\3\193\132\79\0\4\5\0\4\65\69\13\0\6\69\5\10\156\132\128\1\24\128\132\8\214\142\251\127\134\132\1\8\196\4\128\5\0\5\0\1\64\5\0\9\128\5\0\2\221\4\0\2\222\4\0\0\214\140\251\127\132\4\128\2\196\4\0\3\1\197\79\0\65\5\80\0\220\132\128\1\1\69\80\0\156\132\128\1\25\128\132\8\150\13\0\128\132\4\128\2\193\4\10\0\1\133\80\0\156\132\128\1\23\128\132\8\86\1\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\150\135\251\127\132\4\128\2\196\4\0\3\1\197\80\0\68\5\0\4\129\5\81\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\81\0\132\5\0\4\193\133\81\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\150\131\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\124\251\127\132\4\128\2\196\4\0\3\1\197\81\0\65\5\82\0\220\132\128\1\4\5\0\3\65\69\82\0\129\133\82\0\28\5\128\1\156\132\0\0\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\114\251\127\132\4\128\2\196\4\0\3\1\197\82\0\68\5\0\4\129\5\83\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\83\0\132\5\0\4\193\133\83\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\150\110\251\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\22\109\251\127\132\4\128\2\193\196\83\0\1\5\84\0\156\132\128\1\25\128\132\8\86\51\0\128\132\4\128\2\196\4\0\3\1\69\84\0\65\133\84\0\220\132\128\1\4\5\0\3\65\197\84\0\132\5\0\4\193\69\13\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\22\42\0\128\132\4\0\3\193\4\85\0\1\69\85\0\156\132\128\1\23\128\132\8\22\0\0\128\86\102\251\127\129\132\85\0\25\128\132\8\150\101\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\61\251\127\129\196\85\0\23\128\132\8\86\1\0\128\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\150\59\251\127\132\4\128\2\193\4\86\0\1\69\86\0\156\132\128\1\25\128\132\8\22\58\251\127\134\132\1\8\134\132\4\1\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\137\4\133\9\22\56\251\127\132\4\0\3\193\132\86\0\1\197\86\0\156\132\128\1\25\128\132\8\22\20\0\128\132\4\128\2\193\196\83\0\1\5\87\0\156\132\128\1\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\45\251\127\132\4\128\3\193\68\87\0\134\196\4\9\154\68\0\0\86\2\0\128\164\132\3\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\87\0\68\5\0\4\129\5\67\0\70\133\133\10\220\4\128\1\156\132\0\0\25\128\132\8\150\41\251\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\34\251\127\132\4\128\3\193\196\87\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\4\88\0\134\196\4\9\196\4\0\3\1\69\88\0\68\5\0\4\129\197\72\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\197\87\0\156\132\128\2\23\128\132\8\86\3\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\214\25\251\127\132\4\128\2\196\4\0\3\1\133\88\0\65\197\88\0\220\132\128\1\1\5\89\0\156\132\128\1\25\128\132\8\150\23\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\214\21\251\127\132\4\128\2\196\4\0\3\1\69\89\0\65\133\89\0\220\132\128\1\1\197\89\0\156\132\128\1\25\128\132\8\150\242\0\128\129\4\90\0\25\128\132\8\22\132\0\128\132\4\128\3\193\68\90\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\132\90\0\134\196\4\9\196\4\0\3\1\197\90\0\65\5\91\0\220\132\128\1\4\5\0\3\68\5\128\3\129\69\90\0\156\132\128\2\25\128\132\8\86\69\0\128\129\68\91\0\25\128\132\8\214\16\0\128\132\4\0\3\193\132\91\0\1\197\91\0\156\132\128\1\23\128\132\8\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\5\251\127\132\4\0\3\193\4\92\0\4\5\0\4\65\5\67\0\6\69\5\10\156\132\128\1\25\128\132\8\86\3\251\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\252\250\127\132\4\128\2\196\4\0\3\1\69\92\0\68\5\0\4\129\133\92\0\70\133\133\10\220\132\128\1\1\197\92\0\156\132\128\1\23\128\132\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\86\241\250\127\129\4\93\0\25\128\132\8\150\240\250\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\200\250\127\132\4\128\2\196\4\0\3\1\69\93\0\65\133\93\0\220\132\128\1\4\5\0\3\65\197\93\0\129\5\94\0\28\5\128\1\156\132\0\0\25\128\132\8\214\49\0\128\132\4\128\2\196\4\0\3\1\69\94\0\68\5\0\4\129\133\94\0\70\133\133\10\220\132\128\1\4\5\0\3\65\197\94\0\132\5\0\4\193\5\95\0\134\197\5\11\28\5\128\1\156\132\0\0\23\128\132\8\214\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\204\4\133\9\137\192\4\9\214\191\250\127\132\4\128\3\193\68\95\0\134\196\4\9\154\68\0\0\86\2\0\128\164\196\3\0\4\0\128\3\4\0\0\3\196\4\0\3\1\133\95\0\68\5\0\4\129\197\95\0\70\133\133\10\220\4\128\1\156\132\0\0\25\128\132\8\150\187\250\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\147\250\127\132\4\0\3\193\4\96\0\1\69\96\0\156\132\128\1\24\64\4\9\86\1\0\128\134\132\1\8\196\4\0\5\6\69\0\8\220\132\0\1\137\192\4\9\214\144\250\127\129\4\90\0\24\128\132\8\22\144\250\127\134\132\1\8\134\132\4\1\158\4\0\1\6\196\0\8\6\196\0\8\150\142\250\127\132\4\0\3\193\132\96\0\1\197\96\0\156\132\128\1\25\128\132\8\86\73\0\128\132\4\128\3\193\4\97\0\134\196\4\9\154\68\0\0\214\1\0\128\164\4\4\0\4\0\128\3\4\0\0\3\196\4\0\3\1\69\97\0\65\133\97\0\220\4\128\1\156\132\0\0\25\128\132\8\214\20\0\128\132\4\128\2\193\4\51\0\1\197\97\0\156\132\128\1\23\128\132\8\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\86\127\250\127\132\4\128\2\196\4\0\3\1\5\98\0\68\5\0\4\129\133\64\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\98\0\132\5\0\4\134\69\117\11\28\5\128\1\156\132\0\0\25\128\132\8\150\123\250\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\116\250\127\132\4\128\3\193\132\98\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\196\98\0\134\196\4\9\196\4\0\3\1\5\99\0\65\69\99\0\220\132\128\1\4\5\0\3\68\5\128\3\129\133\98\0\156\132\128\2\24\64\4\9\150\39\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\22\72\250\127\132\4\0\3\193\132\99\0\4\5\0\4\65\197\99\0\6\69\5\10\156\132\128\1\24\128\132\8\22\70\250\127\134\132\1\8\196\4\128\6\4\5\0\7\70\69\0\8\6\69\5\10\67\5\128\10\132\5\128\4\220\132\0\2\137\192\4\9\150\67\250\127\132\4\128\3\193\4\100\0\134\196\4\9\154\68\0\0\214\1\0\128\164\68\4\0\4\0\128\3\4\0\0\3\196\4\0\3\1\69\100\0\65\133\100\0\220\4\128\1\156\132\0\0\25\128\132\8\150\15\0\128\132\4\128\3\193\196\100\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\4\101\0\134\196\4\9\196\4\0\3\1\69\101\0\68\5\0\4\129\133\101\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\197\100\0\156\132\128\2\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\51\250\127\132\4\128\2\193\132\14\0\1\197\101\0\156\132\128\1\25\128\132\8\22\50\250\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\198\4\133\9\137\192\4\9\22\48\250\127\132\4\128\2\196\4\0\3\1\5\102\0\68\5\0\4\129\69\102\0\70\133\133\10\220\132\128\1\4\5\0\3\65\133\102\0\129\197\102\0\28\5\128\1\156\132\0\0\23\128\132\8\86\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\22\43\250\127\132\4\128\2\196\4\0\3\1\5\103\0\68\5\0\4\129\69\103\0\70\133\133\10\220\132\128\1\1\133\103\0\156\132\128\1\25\128\132\8\86\40\250\127\134\132\1\8\193\196\57\0\204\196\4\9\198\196\4\1\6\133\4\1\12\197\4\10\137\0\5\9\65\69\2\0\24\192\132\10\86\2\0\128\65\197\1\0\76\69\5\9\70\69\5\1\25\64\5\10\150\36\250\127\198\66\0\8\65\5\58\0\76\69\5\9\137\0\133\10\86\35\250\127\65\197\1\0\76\69\5\9\70\69\5\1\25\0\133\10\22\34\250\127\198\66\0\8\65\5\58\0\76\69\5\9\137\0\133\10\214\32\250\127\129\196\103\0\25\128\132\8\86\132\0\128\132\4\0\3\193\4\104\0\1\69\104\0\156\132\128\1\25\128\132\8\214\20\0\128\129\132\104\0\25\128\132\8\150\13\0\128\132\4\128\2\196\4\0\3\1\197\104\0\65\5\105\0\220\132\128\1\1\69\105\0\156\132\128\1\24\64\4\9\86\8\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\22\19\250\127\132\4\0\3\193\132\105\0\4\5\0\4\65\5\19\0\6\69\5\10\156\132\128\1\24\128\132\8\22\17\250\127\134\132\1\8\134\132\4\1\158\4\0\1\22\16\250\127\129\196\105\0\24\64\4\9\150\1\0\128\134\132\1\8\198\68\3\8\198\196\4\1\25\128\132\9\22\14\250\127\198\66\0\8\150\13\250\127\132\4\128\2\196\4\0\3\1\5\106\0\65\69\106\0\220\132\128\1\1\133\106\0\156\132\128\1\24\128\132\8\86\11\250\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\150\9\250\127\132\4\128\2\196\4\0\3\1\197\106\0\68\5\0\4\129\133\92\0\70\133\133\10\220\132\128\1\4\5\0\3\65\5\107\0\132\5\0\4\193\69\107\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\86\17\0\128\132\4\0\3\193\132\107\0\4\5\0\4\65\5\60\0\6\69\5\10\156\132\128\1\23\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\252\249\127\132\4\128\2\193\4\86\0\1\197\107\0\156\132\128\1\25\128\132\8\214\250\249\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\22\244\249\127\132\4\128\3\193\4\108\0\134\196\4\9\154\68\0\0\22\3\0\128\132\4\0\4\193\68\108\0\134\196\4\9\196\4\0\3\1\133\108\0\68\5\0\4\129\133\64\0\70\133\133\10\220\132\128\1\4\5\0\3\68\5\128\3\129\5\108\0\156\132\128\2\23\128\132\8\150\39\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\86\199\249\127\132\4\128\2\196\4\0\3\1\197\108\0\68\5\0\4\129\5\109\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\109\0\132\5\0\4\193\133\109\0\134\197\5\11\28\5\128\1\156\132\0\0\25\128\132\8\86\195\249\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\150\155\249\127\132\4\0\3\193\196\109\0\1\5\110\0\156\132\128\1\25\128\132\8\150\31\0\128\129\68\110\0\25\128\132\8\214\17\0\128\132\4\0\3\193\132\110\0\4\5\0\4\65\133\31\0\6\69\5\10\156\132\128\1\23\128\132\8\22\5\0\128\134\132\1\8\204\196\3\9\1\197\1\0\13\1\133\9\193\68\2\0\0\5\128\7\65\197\1\0\224\132\0\128\204\133\5\9\6\134\5\6\137\0\134\11\223\196\254\127\193\196\1\0\204\196\4\2\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\22\146\249\127\132\4\128\2\196\4\0\3\1\197\110\0\68\5\0\4\129\5\111\0\70\133\133\10\220\132\128\1\4\5\0\3\65\69\111\0\129\133\111\0\28\5\128\1\156\132\0\0\25\128\132\8\150\142\249\127\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\86\135\249\127\129\196\111\0\24\64\4\9\150\6\0\128\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\196\4\0\5\1\197\8\0\220\132\0\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\214\127\249\127\132\4\0\3\193\4\112\0\4\5\0\4\65\69\112\0\6\69\5\10\156\132\128\1\24\128\132\8\214\125\249\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\86\122\249\127\132\4\128\2\193\196\24\0\1\133\112\0\156\132\128\1\25\128\132\8\86\20\0\128\132\4\128\3\193\196\112\0\134\196\4\9\154\68\0\0\86\2\0\128\164\132\4\0\4\0\128\3\4\0\0\3\196\4\0\3\1\5\113\0\68\5\0\4\129\5\83\0\70\133\133\10\220\4\128\1\156\132\0\0\23\128\132\8\22\6\0\128\134\132\1\8\198\68\0\8\6\69\3\8\65\197\1\0\13\69\5\10\65\197\49\0\14\5\133\10\70\133\4\1\129\69\2\0\193\197\1\0\204\197\5\9\0\6\128\9\65\198\1\0\224\5\2\128\204\134\5\10\1\199\1\0\204\6\135\13\13\135\4\13\12\7\7\9\6\7\7\1\73\5\135\13\193\198\1\0\140\197\6\11\223\69\253\127\86\110\249\127\132\4\128\2\193\4\86\0\1\69\113\0\156\132\128\1\25\128\132\8\214\108\249\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\6\5\5\1\205\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\207\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\206\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\6\196\0\8\86\100\249\127\132\4\128\3\193\132\113\0\134\196\4\9\154\68\0\0\150\2\0\128\132\4\0\4\193\196\113\0\134\196\4\9\196\4\0\3\1\5\114\0\65\69\114\0\220\132\128\1\4\5\0\3\68\5\128\3\129\133\113\0\156\132\128\2\25\128\132\8\22\7\0\128\134\132\1\8\196\4\128\4\6\69\0\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\198\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\212\4\128\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\137\192\4\9\6\196\0\8\6\196\0\8\150\88\249\127\132\4\128\2\193\132\114\0\1\197\114\0\156\132\128\1\24\64\4\9\22\1\0\128\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\214\85\249\127\132\4\128\2\196\4\0\3\1\5\115\0\65\69\115\0\220\132\128\1\1\133\115\0\156\132\128\1\24\128\132\8\150\83\249\127\134\132\1\8\198\68\0\8\198\196\4\1\6\69\3\8\204\4\133\9\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\68\0\8\198\196\4\1\137\192\4\9\6\196\0\8\134\132\1\8\198\132\4\1\4\5\128\5\64\5\0\1\129\197\1\0\140\133\5\9\198\69\0\8\28\5\0\2\220\132\0\0\137\192\4\9\193\196\1\0\204\196\4\9\4\5\0\6\65\197\1\0\224\68\0\128\195\5\128\11\137\192\5\11\223\4\255\127\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\70\69\3\8\70\69\5\1\6\69\5\10\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\69\0\8\6\5\5\1\137\0\133\9\6\196\0\8\198\132\1\8\6\197\4\1\68\5\128\5\128\5\0\1\193\197\1\0\204\197\133\9\6\70\0\8\92\5\0\2\28\133\0\0\137\0\133\9\1\197\1\0\12\5\133\9\68\5\0\6\129\197\1\0\32\69\0\128\3\6\0\12\137\0\134\11\31\5\255\127\6\196\0\8\6\133\1\8\70\69\0\8\70\69\5\1\134\69\3\8\134\133\5\1\70\133\133\10\137\64\5\10\6\196\0\8\6\133\1\8\70\5\5\1\132\5\128\5\192\5\0\1\1\198\1\0\12\6\6\10\70\70\0\8\156\5\0\2\92\133\0\0\137\64\5\10\65\197\1\0\76\69\5\10\132\5\0\6\193\197\1\0\96\69\0\128\67\6\128\12\137\64\6\12\95\5\255\127\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\198\69\3\8\198\197\5\1\134\197\5\11\137\128\133\10\6\196\0\8\70\133\1\8\134\69\0\8\134\133\5\1\137\128\133\10\6\196\0\8\70\69\0\8\134\69\5\1\193\197\1\0\204\197\133\10\6\70\3\8\65\198\1\0\224\133\0\128\192\6\0\11\6\135\6\1\149\5\135\13\223\197\254\127\198\133\1\8\137\128\133\11\6\196\0\8\6\196\0\8\214\43\249\127\30\0\128\0\207\1\0\0\3\0\0\0\0\230\56\38\65\4\6\0\0\0\117\110\56\101\68\0\3\0\0\0\0\0\0\240\191\3\0\0\0\144\68\150\155\65\3\0\0\0\0\112\177\22\193\4\9\0\0\0\117\54\103\117\115\118\86\113\0\3\0\0\0\0\62\251\37\65\3\0\0\0\0\0\0\240\63\4\9\0\0\0\79\119\106\99\56\112\66\88\0\3\0\0\0\0\0\0\0\0\3\0\0\0\82\184\237\189\65\3\0\0\0\7\254\184\196\65\3\0\0\0\193\218\155\179\65\3\0\0\0\236\231\137\179\65\3\0\0\0\2\175\24\187\65\3\0\0\0\72\80\46\186\65\3\0\0\0\236\145\33\186\65\3\0\0\0\0\0\0\46\64\3\0\0\0\113\172\150\186\65\3\0\0\0\0\64\156\249\64\3\0\0\0\9\6\135\188\65\4\8\0\0\0\97\54\48\52\119\118\83\0\3\0\0\0\200\192\173\183\65\3\0\0\0\151\212\14\179\65\3\0\0\0\192\233\212\137\65\3\0\0\0\200\233\212\137\65\3\0\0\128\192\236\215\200\65\3\0\0\0\242\34\165\183\65\3\0\0\0\134\189\160\189\65\3\0\0\0\0\130\146\46\65\3\0\0\0\46\34\78\202\65\3\0\0\0\0\2\61\50\65\3\0\0\128\129\42\174\201\65\3\0\0\0\208\205\206\131\65\3\0\0\0\210\141\184\183\65\3\0\0\0\0\0\0\112\64\3\0\0\0\0\0\0\20\64\3\0\0\0\161\212\128\188\65\3\0\0\128\27\14\4\205\65\3\0\0\0\0\244\238\24\65\3\0\0\128\220\213\104\196\65\3\0\0\0\0\205\81\61\65\3\0\0\0\0\80\156\249\64\3\0\0\0\120\5\166\141\65\3\0\0\0\0\248\238\24\65\3\0\0\128\131\239\18\199\65\3\0\0\0\0\83\54\54\65\3\0\0\0\60\129\165\160\65\3\0\0\0\220\220\191\195\65\3\0\0\128\221\61\175\195\65\3\0\0\0\34\30\249\166\65\3\0\0\128\237\197\153\203\65\3\0\0\128\130\80\223\202\65\3\0\0\0\178\38\17\175\65\0\3\0\0\0\224\83\201\98\65\3\0\0\0\228\55\61\181\65\3\0\0\0\202\25\32\181\65\3\0\0\0\180\134\117\194\65\3\0\0\0\0\197\72\59\65\3\0\0\128\239\172\147\202\65\3\0\0\0\245\185\84\205\65\3\0\0\0\80\140\234\138\65\3\0\0\0\248\194\146\138\65\3\0\0\0\252\27\41\169\65\4\11\0\0\0\89\103\74\84\81\117\89\89\65\98\0\3\0\0\128\137\65\56\196\65\3\0\0\128\69\225\56\196\65\3\0\0\0\72\222\218\202\65\3\0\0\0\22\89\74\179\65\3\0\0\0\27\89\74\179\65\3\0\0\128\77\84\34\200\65\3\0\0\128\16\24\151\192\65\3\0\0\0\213\194\98\181\65\4\11\0\0\0\66\74\86\72\82\116\67\110\76\117\0\3\0\0\0\129\255\194\204\65\3\0\0\128\235\1\94\196\65\3\0\0\0\212\219\83\182\65\3\0\0\128\228\84\212\192\65\3\0\0\0\174\205\184\204\65\3\0\0\128\191\103\227\192\65\3\0\0\0\126\214\15\163\65\3\0\0\128\135\221\41\200\65\3\0\0\0\244\169\30\150\65\4\9\0\0\0\120\106\88\53\82\80\82\70\0\3\0\0\0\96\181\62\144\65\3\0\0\0\40\44\4\144\65\3\0\0\0\30\122\184\181\65\3\0\0\128\2\25\221\199\65\3\0\0\128\166\184\202\199\65\3\0\0\128\130\152\193\199\65\3\0\0\128\34\37\224\194\65\3\0\0\128\149\193\5\199\65\3\0\0\0\152\132\239\168\65\3\0\0\0\40\175\222\168\65\3\0\0\0\0\0\0\50\64\3\0\0\128\186\196\145\200\65\3\0\0\0\130\146\218\197\65\3\0\0\0\0\0\157\249\64\3\0\0\0\196\109\101\195\65\3\0\0\0\0\95\254\54\65\3\0\0\128\231\205\100\197\65\3\0\0\128\142\255\195\195\65\3\0\0\128\230\124\46\200\65\3\0\0\128\70\130\41\205\65\3\0\0\0\0\209\179\150\65\3\0\0\0\84\244\142\150\65\3\0\0\0\4\173\56\188\65\3\0\0\0\18\173\56\188\65\3\0\0\0\73\83\182\202\65\3\0\0\0\171\181\94\190\65\3\0\0\128\156\227\90\193\65\3\0\0\128\121\243\218\200\65\3\0\0\0\48\132\16\124\65\3\0\0\0\0\181\93\124\65\3\0\0\0\215\138\46\192\65\3\0\0\0\24\50\177\150\65\3\0\0\0\0\96\154\249\64\3\0\0\0\0\0\0\56\64\3\0\0\0\32\241\10\134\65\3\0\0\0\120\228\173\161\65\3\0\0\128\226\122\221\202\65\3\0\0\0\180\151\98\159\65\3\0\0\0\220\151\98\159\65\3\0\0\0\179\140\239\205\65\3\0\0\0\235\76\131\176\65\3\0\0\128\65\65\190\205\65\3\0\0\128\32\106\173\203\65\3\0\0\128\56\120\153\205\65\3\0\0\128\245\38\142\205\65\3\0\0\0\0\179\72\59\65\3\0\0\0\0\0\0\61\64\3\0\0\0\0\0\0\62\64\3\0\0\128\248\138\206\199\65\3\0\0\0\173\81\1\187\65\3\0\0\128\200\192\211\202\65\3\0\0\0\0\0\128\71\64\3\0\0\0\0\168\72\59\65\3\0\0\0\236\245\150\175\65\3\0\0\0\96\206\2\144\65\3\0\0\0\0\234\149\56\65\3\0\0\0\38\64\180\195\65\3\0\0\0\30\161\173\202\65\3\0\0\128\237\114\161\202\65\3\0\0\0\0\0\0\64\64\3\0\0\0\162\202\135\181\65\3\0\0\0\166\205\34\174\65\3\0\0\0\1\132\117\178\65\3\0\0\0\31\30\116\178\65\3\0\0\0\0\0\0\65\64\3\0\0\0\51\40\27\201\65\3\0\0\0\196\192\139\157\65\3\0\0\0\0\237\125\55\65\3\0\0\0\174\13\154\169\65\3\0\0\0\180\10\65\205\65\3\0\0\0\39\12\247\192\65\3\0\0\0\53\12\247\192\65\3\0\0\128\191\116\246\204\65\3\0\0\0\173\116\246\204\65\3\0\0\0\32\45\145\105\65\3\0\0\0\159\4\151\188\65\3\0\0\0\1\47\227\197\65\3\0\0\0\113\49\237\197\65\3\0\0\0\0\64\158\249\64\3\0\0\128\44\218\185\196\65\3\0\0\0\113\183\216\190\65\3\0\0\0\96\97\63\125\65\3\0\0\0\0\184\231\13\65\3\0\0\0\0\0\0\68\64\3\0\0\0\160\134\129\152\65\3\0\0\0\217\205\182\188\65\3\0\0\0\80\245\145\172\65\3\0\0\0\124\193\146\172\65\3\0\0\0\0\144\161\249\64\3\0\0\0\246\37\147\178\65\3\0\0\0\79\20\60\203\65\3\0\0\0\0\164\72\59\65\3\0\0\0\134\223\10\181\65\3\0\0\0\18\25\253\166\65\3\0\0\128\209\17\58\197\65\4\10\0\0\0\66\87\87\68\107\90\86\100\74\0\3\0\0\0\181\37\226\187\65\3\0\0\0\179\123\200\178\65\3\0\0\0\53\221\62\189\65\3\0\0\0\0\201\49\189\65\3\0\0\128\64\150\68\202\65\3\0\0\0\152\255\86\190\65\3\0\0\0\64\144\67\158\65\3\0\0\0\156\169\107\158\65\3\0\0\0\0\72\228\13\65\3\0\0\128\178\111\180\204\65\3\0\0\0\36\73\61\191\65\3\0\0\0\0\0\128\72\64\3\0\0\0\232\145\86\170\65\3\0\0\0\132\248\209\190\65\4\9\0\0\0\109\79\115\87\80\90\69\102\0\3\0\0\0\50\94\71\161\65\3\0\0\128\56\81\36\198\65\3\0\0\128\136\181\55\197\65\3\0\0\0\0\0\0\73\64\3\0\0\128\40\146\28\196\65\4\9\0\0\0\86\118\53\80\120\89\105\57\0\3\0\0\128\236\159\186\202\65\3\0\0\0\0\133\54\54\65\3\0\0\128\13\36\1\205\65\3\0\0\0\0\108\64\54\65\3\0\0\0\52\114\49\171\65\3\0\0\0\0\154\72\59\65\3\0\0\0\0\110\64\54\65\3\0\0\0\36\3\145\198\65\3\0\0\128\115\99\75\199\65\3\0\0\0\0\56\238\24\65\3\0\0\0\184\176\218\171\65\4\7\0\0\0\81\87\67\48\118\73\0\3\0\0\128\34\156\131\195\65\3\0\0\0\136\133\133\195\65\3\0\0\0\0\0\128\76\64\3\0\0\0\0\0\0\76\64\3\0\0\0\0\96\156\249\64\3\0\0\0\116\75\221\201\65\3\0\0\128\160\128\58\197\65\3\0\0\128\36\218\185\196\65\3\0\0\128\65\175\203\200\65\3\0\0\0\0\24\228\13\65\3\0\0\128\217\17\58\197\65\3\0\0\128\20\64\39\195\65\3\0\0\0\121\4\116\203\65\3\0\0\0\169\62\15\183\65\3\0\0\0\125\25\18\183\65\3\0\0\0\208\103\70\121\65\3\0\0\0\0\200\112\45\65\3\0\0\0\0\0\0\0\64\3\0\0\0\0\0\0\8\64\3\0\0\128\248\1\182\199\65\3\0\0\0\6\90\125\192\65\3\0\0\0\121\1\5\181\65\3\0\0\0\108\107\141\157\65\3\0\0\0\126\208\115\200\65\3\0\0\0\88\48\124\200\65\3\0\0\128\20\151\156\193\65\3\0\0\0\0\86\123\181\65\3\0\0\0\2\138\35\200\65\3\0\0\0\0\0\192\81\64\3\0\0\0\0\0\154\249\64\3\0\0\0\0\0\64\80\64\3\0\0\0\177\25\211\202\65\3\0\0\0\40\64\33\204\65\3\0\0\0\118\219\97\165\65\3\0\0\0\214\189\121\165\65\3\0\0\0\0\137\81\61\65\3\0\0\0\150\228\191\187\65\3\0\0\0\16\216\14\194\65\3\0\0\0\23\244\101\182\65\3\0\0\0\239\161\104\182\65\3\0\0\128\227\10\110\200\65\3\0\0\0\16\6\229\151\65\3\0\0\0\236\37\216\151\65\3\0\0\0\149\2\208\185\65\3\0\0\0\107\112\158\196\65\3\0\0\0\107\155\100\205\65\3\0\0\0\152\213\66\161\65\3\0\0\128\110\186\99\197\65\3\0\0\0\0\244\239\24\65\3\0\0\0\0\0\64\81\64\3\0\0\0\70\24\121\165\65\3\0\0\128\205\135\46\194\65\3\0\0\128\112\200\45\194\65\3\0\0\0\32\16\114\204\65\3\0\0\0\101\140\96\204\65\3\0\0\0\192\76\109\151\65\3\0\0\0\71\152\56\197\65\3\0\0\0\235\17\61\197\65\3\0\0\0\0\0\64\82\64\3\0\0\0\244\11\18\147\65\3\0\0\0\212\10\18\147\65\3\0\0\0\137\51\106\205\65\3\0\0\0\208\113\201\182\65\3\0\0\0\198\135\26\183\65\3\0\0\128\85\178\116\193\65\3\0\0\0\44\47\197\164\65\3\0\0\0\128\239\149\122\65\3\0\0\0\0\18\150\56\65\3\0\0\0\11\196\231\188\65\3\0\0\0\217\55\27\202\65\3\0\0\0\132\114\226\173\65\3\0\0\0\142\209\216\173\65\3\0\0\0\60\44\100\158\65\3\0\0\0\217\243\251\185\65\3\0\0\0\226\150\244\168\65\3\0\0\0\238\38\249\168\65\3\0\0\0\112\4\203\185\65\4\7\0\0\0\72\99\116\49\109\122\0\3\0\0\0\0\184\254\54\65\3\0\0\0\27\212\216\190\65\3\0\0\0\112\8\174\133\65\3\0\0\0\182\220\146\205\65\4\10\0\0\0\109\105\77\108\86\84\72\65\70\0\3\0\0\128\134\53\135\199\65\3\0\0\0\171\108\186\176\65\3\0\0\0\82\224\236\162\65\3\0\0\128\253\212\170\192\65\4\11\0\0\0\102\52\52\50\67\110\105\109\84\51\0\3\0\0\128\45\1\24\200\65\3\0\0\0\238\190\14\200\65\3\0\0\0\240\216\124\188\65\3\0\0\0\24\137\214\167\65\3\0\0\0\40\165\231\167\65\3\0\0\0\91\35\149\198\65\3\0\0\128\167\159\240\193\65\3\0\0\0\41\86\246\183\65\3\0\0\0\247\100\228\197\65\3\0\0\0\143\44\251\189\65\3\0\0\128\59\230\37\205\65\3\0\0\128\207\230\190\194\65\3\0\0\0\3\204\185\194\65\3\0\0\0\70\161\83\186\65\3\0\0\0\233\141\77\195\65\3\0\0\0\89\109\53\191\65\3\0\0\128\103\222\218\202\65\3\0\0\0\34\179\128\182\65\3\0\0\0\76\122\75\189\65\3\0\0\0\0\28\150\56\65\3\0\0\0\0\124\81\61\65\3\0\0\0\96\215\208\123\65\3\0\0\0\124\110\16\192\65\3\0\0\128\41\211\148\200\65\4\9\0\0\0\117\119\99\54\53\85\114\83\0\3\0\0\0\112\18\120\165\65\3\0\0\0\92\254\223\166\65\3\0\0\0\204\42\240\153\65\3\0\0\0\108\216\254\153\65\3\0\0\0\112\98\1\148\65\4\11\0\0\0\67\73\121\120\99\65\85\85\112\82\0\3\0\0\0\183\126\158\177\65\3\0\0\0\44\111\244\159\65\3\0\0\0\48\88\47\164\65\3\0\0\0\0\46\146\46\65\3\0\0\128\167\91\204\196\65\3\0\0\0\142\217\164\174\65\3\0\0\128\27\161\209\202\65\3\0\0\128\138\169\235\197\65\3\0\0\128\166\169\235\197\65\3\0\0\0\0\0\64\86\64\3\0\0\0\0\0\128\86\64\3\0\0\0\220\146\151\167\65\3\0\0\0\0\34\150\56\65\3\0\0\0\79\3\171\202\65\3\0\0\128\97\3\171\202\65\3\0\0\0\0\60\146\46\65\3\0\0\0\122\243\73\189\65\3\0\0\0\123\9\113\204\65\3\0\0\0\170\74\106\171\65\3\0\0\128\171\178\102\201\65\3\0\0\0\165\237\217\185\65\3\0\0\0\244\146\252\186\65\3\0\0\128\119\109\127\192\65\3\0\0\0\0\135\65\54\65\3\0\0\0\160\120\51\158\65\3\0\0\128\63\63\108\201\65\3\0\0\0\0\81\125\55\65\3\0\0\0\0\0\192\89\64\3\0\0\0\248\11\63\184\65\4\11\0\0\0\105\89\56\84\110\117\56\67\54\121\0\3\0\0\0\88\3\22\159\65\3\0\0\0\64\98\49\159\65\3\0\0\0\0\0\64\88\64\3\0\0\128\229\218\177\195\65\3\0\0\128\213\218\177\195\65\3\0\0\0\51\16\114\204\65\3\0\0\0\36\198\41\205\65\3\0\0\128\43\151\102\204\65\3\0\0\0\0\170\81\61\65\3\0\0\0\0\0\192\88\64\3\0\0\0\92\196\79\183\65\3\0\0\128\5\178\13\193\65\3\0\0\128\112\63\97\202\65\3\0\0\0\229\129\106\202\65\3\0\0\128\94\49\234\205\65\3\0\0\0\250\164\244\181\65\3\0\0\0\8\90\31\167\65\3\0\0\0\108\54\160\174\65\3\0\0\0\244\220\81\165\65\3\0\0\0\76\201\25\154\65\4\6\0\0\0\99\118\87\115\89\0\3\0\0\0\124\131\80\204\65\3\0\0\0\79\131\80\204\65\3\0\0\128\53\30\145\201\65\3\0\0\0\0\30\145\201\65\3\0\0\0\64\98\217\168\65\3\0\0\0\40\44\98\186\65\3\0\0\0\217\212\108\186\65\3\0\0\0\0\80\64\54\65\3\0\0\0\33\48\101\205\65\3\0\0\0\0\94\125\49\65\3\0\0\128\208\254\8\203\65\3\0\0\0\64\90\237\127\65\3\0\0\128\69\235\119\204\65\3\0\0\0\185\62\120\204\65\3\0\0\0\25\34\214\180\65\3\0\0\0\55\209\16\199\65\3\0\0\128\161\128\0\198\65\3\0\0\128\244\32\222\203\65\3\0\0\128\41\172\210\203\65\3\0\0\0\164\218\57\199\65\4\7\0\0\0\69\50\79\87\97\99\0\3\0\0\0\126\51\114\202\65\3\0\0\0\18\74\139\182\65\3\0\0\0\0\226\72\59\65\3\0\0\0\253\254\76\205\65\3\0\0\0\194\184\176\202\65\3\0\0\128\244\53\214\197\65\3\0\0\128\171\46\221\197\65\3\0\0\0\48\137\6\126\65\3\0\0\0\162\197\143\203\65\3\0\0\0\0\217\254\54\65\3\0\0\0\0\0\192\93\64\3\0\0\0\17\34\8\176\65\3\0\0\0\98\34\8\176\65\3\0\0\0\0\0\64\92\64\3\0\0\128\198\20\166\195\65\3\0\0\0\254\66\237\206\65\3\0\0\0\0\240\152\249\64\3\0\0\128\18\162\199\204\65\3\0\0\0\0\0\128\92\64\3\0\0\0\188\70\37\147\65\3\0\0\128\19\197\1\193\65\3\0\0\0\0\197\254\54\65\3\0\0\0\159\238\73\185\65\3\0\0\128\89\252\246\198\65\3\0\0\0\216\216\106\142\65\3\0\0\128\37\108\117\193\65\3\0\0\0\0\60\150\56\65\3\0\0\0\20\210\35\176\65\4\6\0\0\0\105\79\121\49\122\0\3\0\0\128\179\142\133\200\65\3\0\0\0\105\134\178\181\65\3\0\0\0\76\135\22\179\65\3\0\0\0\111\219\89\191\65\3\0\0\0\164\150\25\169\65\3\0\0\128\243\239\94\192\65\3\0\0\0\206\239\94\192\65\3\0\0\0\0\0\64\94\64\3\0\0\0\39\4\152\176\65\3\0\0\0\94\175\185\191\65\3\0\0\0\65\244\47\204\65\3\0\0\0\173\118\55\188\65\3\0\0\0\234\202\52\188\65\3\0\0\0\0\0\128\94\64\3\0\0\0\84\107\165\155\65\3\0\0\128\143\102\6\204\65\3\0\0\0\0\199\254\54\65\3\0\0\0\184\138\146\130\65\3\0\0\0\9\56\131\197\65\3\0\0\0\0\68\150\56\65\3\0\0\128\48\201\163\204\65\4\9\0\0\0\100\109\102\54\119\51\52\48\0\3\0\0\0\115\127\49\187\65\3\0\0\0\99\236\48\187\65\3\0\0\128\43\80\170\202\65\3\0\0\0\0\65\125\55\65\3\0\0\0\224\104\41\149\65\3\0\0\128\17\9\164\207\65\3\0\0\0\0\248\65\54\65\19\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\7\16\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\4\1\128\0\64\1\0\0\129\65\0\0\28\129\128\1\65\129\0\0\220\128\128\1\1\193\0\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\2\175\24\187\65\3\0\0\0\0\36\158\37\65\3\0\0\0\0\236\41\34\65\3\0\0\0\0\190\52\40\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\15\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\0\1\0\0\65\65\0\0\220\128\128\1\205\128\192\1\205\192\192\1\1\1\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\128\192\236\215\200\65\3\0\0\0\0\96\214\236\64\3\0\0\0\0\88\194\11\65\3\0\0\0\0\58\46\43\65\3\0\0\0\0\112\103\252\64\0\0\0\0\15\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\14\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\15\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\0\1\0\0\65\65\0\0\220\128\128\1\205\128\192\1\205\192\192\1\1\1\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\60\129\165\160\65\3\0\0\0\0\64\234\17\65\3\0\0\0\0\84\94\46\65\3\0\0\0\0\162\137\34\65\3\0\0\0\0\34\137\42\65\0\0\0\0\15\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\14\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\15\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\13\65\64\0\13\129\64\2\13\193\64\2\65\1\1\0\220\128\128\1\1\65\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\6\0\0\0\3\0\0\0\224\83\201\98\65\3\0\0\0\0\16\20\255\64\3\0\0\0\0\24\62\45\65\3\0\0\0\0\184\153\22\65\3\0\0\0\0\128\21\221\64\3\0\0\0\0\176\12\26\65\0\0\0\0\15\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\14\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\12\0\0\0\68\0\0\0\132\0\128\0\192\0\0\0\1\65\0\0\156\128\128\1\141\128\64\1\141\192\64\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\212\219\83\182\65\3\0\0\0\0\204\0\17\65\3\0\0\0\0\248\128\41\65\3\0\0\0\0\128\187\3\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\16\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\0\1\0\0\65\65\0\0\220\128\128\1\205\128\192\1\205\192\192\1\205\0\193\1\1\65\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\6\0\0\0\3\0\0\128\32\106\173\203\65\3\0\0\0\0\42\240\43\65\3\0\0\0\0\32\83\40\65\3\0\0\0\0\20\216\29\65\3\0\0\0\0\212\56\43\65\3\0\0\0\0\104\76\0\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\11\0\0\0\68\0\0\0\132\0\128\0\205\64\64\0\205\128\192\1\1\193\0\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\38\64\180\195\65\3\0\0\0\0\160\93\40\65\3\0\0\0\0\70\39\33\65\3\0\0\0\0\84\149\19\65\0\0\0\0\11\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\10\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\8\19\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\4\1\128\0\68\1\128\0\128\1\0\0\193\65\0\0\92\129\128\1\129\129\0\0\28\129\128\1\65\193\0\0\220\128\128\1\1\1\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\128\178\111\180\204\65\3\0\0\0\0\96\36\7\65\3\0\0\0\0\112\60\41\65\3\0\0\0\0\48\15\14\65\3\0\0\0\0\44\153\19\65\0\0\0\0\19\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\18\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\16\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\0\1\0\0\65\65\0\0\220\128\128\1\205\128\192\1\205\192\192\1\1\1\1\0\156\128\128\1\141\64\65\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\6\0\0\0\3\0\0\0\232\145\86\170\65\3\0\0\0\0\100\138\24\65\3\0\0\0\0\72\116\45\65\3\0\0\0\0\192\71\37\65\3\0\0\0\0\104\96\1\65\3\0\0\0\0\94\60\46\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\12\0\0\0\68\0\0\0\132\0\128\0\205\64\64\0\1\129\0\0\156\128\128\1\141\192\64\1\141\0\65\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\116\75\221\201\65\3\0\0\0\0\32\101\230\64\3\0\0\0\0\136\160\43\65\3\0\0\0\0\198\117\36\65\3\0\0\0\0\32\38\12\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\7\16\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\4\1\128\0\77\65\64\0\129\129\0\0\28\129\128\1\65\193\0\0\220\128\128\1\1\1\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\208\103\70\121\65\3\0\0\0\0\176\160\245\64\3\0\0\0\0\26\56\45\65\3\0\0\0\0\106\160\40\65\3\0\0\0\0\228\211\28\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\13\0\0\0\68\0\0\0\132\0\128\0\192\0\0\0\1\65\0\0\156\128\128\1\141\128\64\1\141\192\64\1\141\0\65\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\108\107\141\157\65\3\0\0\0\0\196\218\41\65\3\0\0\0\0\112\132\41\65\3\0\0\0\0\60\96\20\65\3\0\0\0\0\128\40\245\64\0\0\0\0\13\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\12\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\12\0\0\0\68\0\0\0\132\0\128\0\192\0\0\0\1\65\0\0\156\128\128\1\141\128\64\1\141\192\64\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\70\24\121\165\65\3\0\0\0\0\14\54\43\65\3\0\0\0\0\248\227\8\65\3\0\0\0\0\224\158\31\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\11\0\0\0\68\0\0\0\132\0\128\0\205\64\64\0\1\129\0\0\156\128\128\1\141\192\64\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\192\76\109\151\65\3\0\0\0\0\152\42\10\65\3\0\0\0\0\176\173\17\65\3\0\0\0\0\240\40\13\65\0\0\0\0\11\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\10\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\7\17\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\4\1\128\0\77\65\64\0\129\129\0\0\28\129\128\1\65\193\0\0\220\128\128\1\1\1\1\0\156\128\128\1\141\64\65\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\6\0\0\0\3\0\0\0\122\243\73\189\65\3\0\0\0\0\192\177\252\64\3\0\0\0\0\244\167\20\65\3\0\0\0\0\14\19\42\65\3\0\0\0\0\0\136\187\64\3\0\0\0\0\148\183\40\65\0\0\0\0\17\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\16\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\14\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\13\65\64\0\65\129\0\0\220\128\128\1\1\193\0\0\156\128\128\1\141\0\65\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\244\220\81\165\65\3\0\0\0\0\46\40\40\65\3\0\0\0\0\16\137\8\65\3\0\0\0\0\46\107\37\65\3\0\0\0\0\106\230\37\65\0\0\0\0\14\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\13\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\7\16\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\4\1\128\0\64\1\0\0\129\65\0\0\28\129\128\1\65\129\0\0\220\128\128\1\1\193\0\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\0\64\98\217\168\65\3\0\0\0\0\238\34\45\65\3\0\0\0\0\192\164\43\65\3\0\0\0\0\30\119\43\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\5\11\0\0\0\68\0\0\0\132\0\128\0\205\64\64\0\1\129\0\0\156\128\128\1\141\192\64\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\4\0\0\0\3\0\0\128\161\128\0\198\65\3\0\0\0\0\42\18\35\65\3\0\0\0\0\162\205\35\65\3\0\0\0\0\28\216\25\65\0\0\0\0\11\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\10\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\0\0\0\0\0\0\0\0\1\0\0\0\2\1\0\6\15\0\0\0\68\0\0\0\132\0\128\0\196\0\128\0\0\1\0\0\65\65\0\0\220\128\128\1\205\128\192\1\205\192\192\1\1\1\1\0\156\128\128\1\73\128\0\128\68\0\0\0\70\0\192\0\94\0\0\1\30\0\128\0\5\0\0\0\3\0\0\0\184\138\146\130\65\3\0\0\0\0\104\253\11\65\3\0\0\0\0\84\157\22\65\3\0\0\0\0\22\15\40\65\3\0\0\0\0\112\178\45\65\0\0\0\0\15\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\101\0\0\0\0\0\14\0\0\0\2\0\0\0\2\0\0\0\99\0\2\0\0\0\114\0\124\27\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\230\1\0\0\2\0\0\0\101\0\1\0\0\0\123\27\0\0\2\0\0\0\116\0\2\0\0\0\123\27\0\0\2\0\0\0\110\0\3\0\0\0\123\27\0\0\2\0\0\0\111\0\4\0\0\0\123\27\0\0\2\0\0\0\69\0\5\0\0\0\123\27\0\0\2\0\0\0\101\0\6\0\0\0\123\27\0\0\2\0\0\0\108\0\7\0\0\0\123\27\0\0\2\0\0\0\68\0\8\0\0\0\123\27\0\0\2\0\0\0\101\0\9\0\0\0\123\27\0\0\2\0\0\0\101\0\10\0\0\0\123\27\0\0\2\0\0\0\70\0\15\0\0\0\123\27\0\0\2\0\0\0\66\0\18\0\0\0\123\27\0\0\2\0\0\0\65\0\19\0\0\0\123\27\0\0\2\0\0\0\100\0\20\0\0\0\123\27\0\0\2\0\0\0\67\0\23\0\0\0\123\27\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\26\0\0\0\40\0\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\26\0\0\0\40\0\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\26\0\0\0\40\0\0\0\2\0\0\0\101\0\27\0\0\0\39\0\0\0\2\0\0\0\67\0\43\0\0\0\123\27\0\0\2\0\0\0\101\0\44\0\0\0\122\27\0\0\2\0\0\0\102\0\45\0\0\0\122\27\0\0\2\0\0\0\111\0\102\1\0\0\113\1\0\0\2\0\0\0\101\0\103\1\0\0\113\1\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\106\1\0\0\113\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\106\1\0\0\113\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\106\1\0\0\113\1\0\0\2\0\0\0\101\0\107\1\0\0\112\1\0\0\2\0\0\0\114\0\202\1\0\0\56\2\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\213\1\0\0\216\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\213\1\0\0\216\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\213\1\0\0\216\1\0\0\2\0\0\0\101\0\214\1\0\0\215\1\0\0\2\0\0\0\114\0\246\1\0\0\56\2\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\1\2\0\0\4\2\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\1\2\0\0\4\2\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\1\2\0\0\4\2\0\0\2\0\0\0\101\0\2\2\0\0\3\2\0\0\2\0\0\0\114\0\14\2\0\0\56\2\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\25\2\0\0\28\2\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\25\2\0\0\28\2\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\25\2\0\0\28\2\0\0\2\0\0\0\101\0\26\2\0\0\27\2\0\0\2\0\0\0\114\0\43\2\0\0\56\2\0\0\2\0\0\0\116\0\44\2\0\0\56\2\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\47\2\0\0\52\2\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\47\2\0\0\52\2\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\47\2\0\0\52\2\0\0\2\0\0\0\101\0\48\2\0\0\51\2\0\0\2\0\0\0\114\0\56\3\0\0\166\3\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\67\3\0\0\70\3\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\67\3\0\0\70\3\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\67\3\0\0\70\3\0\0\2\0\0\0\101\0\68\3\0\0\69\3\0\0\2\0\0\0\114\0\100\3\0\0\166\3\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\111\3\0\0\114\3\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\111\3\0\0\114\3\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\111\3\0\0\114\3\0\0\2\0\0\0\101\0\112\3\0\0\113\3\0\0\2\0\0\0\114\0\124\3\0\0\166\3\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\135\3\0\0\138\3\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\135\3\0\0\138\3\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\135\3\0\0\138\3\0\0\2\0\0\0\101\0\136\3\0\0\137\3\0\0\2\0\0\0\114\0\153\3\0\0\166\3\0\0\2\0\0\0\116\0\154\3\0\0\166\3\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\157\3\0\0\162\3\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\157\3\0\0\162\3\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\157\3\0\0\162\3\0\0\2\0\0\0\101\0\158\3\0\0\161\3\0\0\2\0\0\0\114\0\63\4\0\0\173\4\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\74\4\0\0\77\4\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\74\4\0\0\77\4\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\74\4\0\0\77\4\0\0\2\0\0\0\101\0\75\4\0\0\76\4\0\0\2\0\0\0\114\0\107\4\0\0\173\4\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\118\4\0\0\121\4\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\118\4\0\0\121\4\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\118\4\0\0\121\4\0\0\2\0\0\0\101\0\119\4\0\0\120\4\0\0\2\0\0\0\114\0\131\4\0\0\173\4\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\142\4\0\0\145\4\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\142\4\0\0\145\4\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\142\4\0\0\145\4\0\0\2\0\0\0\101\0\143\4\0\0\144\4\0\0\2\0\0\0\114\0\160\4\0\0\173\4\0\0\2\0\0\0\116\0\161\4\0\0\173\4\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\164\4\0\0\169\4\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\164\4\0\0\169\4\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\164\4\0\0\169\4\0\0\2\0\0\0\101\0\165\4\0\0\168\4\0\0\2\0\0\0\114\0\221\4\0\0\75\5\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\232\4\0\0\235\4\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\232\4\0\0\235\4\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\232\4\0\0\235\4\0\0\2\0\0\0\101\0\233\4\0\0\234\4\0\0\2\0\0\0\114\0\9\5\0\0\75\5\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\20\5\0\0\23\5\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\20\5\0\0\23\5\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\20\5\0\0\23\5\0\0\2\0\0\0\101\0\21\5\0\0\22\5\0\0\2\0\0\0\114\0\33\5\0\0\75\5\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\44\5\0\0\47\5\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\44\5\0\0\47\5\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\44\5\0\0\47\5\0\0\2\0\0\0\101\0\45\5\0\0\46\5\0\0\2\0\0\0\114\0\62\5\0\0\75\5\0\0\2\0\0\0\116\0\63\5\0\0\75\5\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\66\5\0\0\71\5\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\66\5\0\0\71\5\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\66\5\0\0\71\5\0\0\2\0\0\0\101\0\67\5\0\0\70\5\0\0\2\0\0\0\114\0\54\6\0\0\164\6\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\65\6\0\0\68\6\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\65\6\0\0\68\6\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\65\6\0\0\68\6\0\0\2\0\0\0\101\0\66\6\0\0\67\6\0\0\2\0\0\0\114\0\98\6\0\0\164\6\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\109\6\0\0\112\6\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\109\6\0\0\112\6\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\109\6\0\0\112\6\0\0\2\0\0\0\101\0\110\6\0\0\111\6\0\0\2\0\0\0\114\0\122\6\0\0\164\6\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\133\6\0\0\136\6\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\133\6\0\0\136\6\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\133\6\0\0\136\6\0\0\2\0\0\0\101\0\134\6\0\0\135\6\0\0\2\0\0\0\114\0\151\6\0\0\164\6\0\0\2\0\0\0\116\0\152\6\0\0\164\6\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\155\6\0\0\160\6\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\155\6\0\0\160\6\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\155\6\0\0\160\6\0\0\2\0\0\0\101\0\156\6\0\0\159\6\0\0\2\0\0\0\101\0\241\6\0\0\252\6\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\249\6\0\0\252\6\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\249\6\0\0\252\6\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\249\6\0\0\252\6\0\0\2\0\0\0\101\0\250\6\0\0\251\6\0\0\2\0\0\0\111\0\18\7\0\0\32\7\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\29\7\0\0\32\7\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\29\7\0\0\32\7\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\29\7\0\0\32\7\0\0\2\0\0\0\101\0\30\7\0\0\31\7\0\0\2\0\0\0\116\0\130\7\0\0\141\7\0\0\2\0\0\0\111\0\131\7\0\0\141\7\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\134\7\0\0\139\7\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\134\7\0\0\139\7\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\134\7\0\0\139\7\0\0\2\0\0\0\101\0\135\7\0\0\138\7\0\0\2\0\0\0\108\0\155\7\0\0\163\7\0\0\2\0\0\0\114\0\10\8\0\0\120\8\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\21\8\0\0\24\8\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\21\8\0\0\24\8\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\21\8\0\0\24\8\0\0\2\0\0\0\101\0\22\8\0\0\23\8\0\0\2\0\0\0\114\0\54\8\0\0\120\8\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\65\8\0\0\68\8\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\65\8\0\0\68\8\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\65\8\0\0\68\8\0\0\2\0\0\0\101\0\66\8\0\0\67\8\0\0\2\0\0\0\114\0\78\8\0\0\120\8\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\89\8\0\0\92\8\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\89\8\0\0\92\8\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\89\8\0\0\92\8\0\0\2\0\0\0\101\0\90\8\0\0\91\8\0\0\2\0\0\0\114\0\107\8\0\0\120\8\0\0\2\0\0\0\116\0\108\8\0\0\120\8\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\111\8\0\0\116\8\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\111\8\0\0\116\8\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\111\8\0\0\116\8\0\0\2\0\0\0\101\0\112\8\0\0\115\8\0\0\2\0\0\0\114\0\249\8\0\0\103\9\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\4\9\0\0\7\9\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\4\9\0\0\7\9\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\4\9\0\0\7\9\0\0\2\0\0\0\101\0\5\9\0\0\6\9\0\0\2\0\0\0\114\0\37\9\0\0\103\9\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\48\9\0\0\51\9\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\48\9\0\0\51\9\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\48\9\0\0\51\9\0\0\2\0\0\0\101\0\49\9\0\0\50\9\0\0\2\0\0\0\114\0\61\9\0\0\103\9\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\72\9\0\0\75\9\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\72\9\0\0\75\9\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\72\9\0\0\75\9\0\0\2\0\0\0\101\0\73\9\0\0\74\9\0\0\2\0\0\0\114\0\90\9\0\0\103\9\0\0\2\0\0\0\116\0\91\9\0\0\103\9\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\94\9\0\0\99\9\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\94\9\0\0\99\9\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\94\9\0\0\99\9\0\0\2\0\0\0\101\0\95\9\0\0\98\9\0\0\2\0\0\0\114\0\10\10\0\0\120\10\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\21\10\0\0\24\10\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\21\10\0\0\24\10\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\21\10\0\0\24\10\0\0\2\0\0\0\101\0\22\10\0\0\23\10\0\0\2\0\0\0\114\0\54\10\0\0\120\10\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\65\10\0\0\68\10\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\65\10\0\0\68\10\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\65\10\0\0\68\10\0\0\2\0\0\0\101\0\66\10\0\0\67\10\0\0\2\0\0\0\114\0\78\10\0\0\120\10\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\89\10\0\0\92\10\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\89\10\0\0\92\10\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\89\10\0\0\92\10\0\0\2\0\0\0\101\0\90\10\0\0\91\10\0\0\2\0\0\0\114\0\107\10\0\0\120\10\0\0\2\0\0\0\116\0\108\10\0\0\120\10\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\111\10\0\0\116\10\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\111\10\0\0\116\10\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\111\10\0\0\116\10\0\0\2\0\0\0\101\0\112\10\0\0\115\10\0\0\2\0\0\0\111\0\179\10\0\0\186\10\0\0\2\0\0\0\108\0\181\10\0\0\186\10\0\0\2\0\0\0\114\0\56\11\0\0\166\11\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\67\11\0\0\70\11\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\67\11\0\0\70\11\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\67\11\0\0\70\11\0\0\2\0\0\0\101\0\68\11\0\0\69\11\0\0\2\0\0\0\114\0\100\11\0\0\166\11\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\111\11\0\0\114\11\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\111\11\0\0\114\11\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\111\11\0\0\114\11\0\0\2\0\0\0\101\0\112\11\0\0\113\11\0\0\2\0\0\0\114\0\124\11\0\0\166\11\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\135\11\0\0\138\11\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\135\11\0\0\138\11\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\135\11\0\0\138\11\0\0\2\0\0\0\101\0\136\11\0\0\137\11\0\0\2\0\0\0\114\0\153\11\0\0\166\11\0\0\2\0\0\0\116\0\154\11\0\0\166\11\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\157\11\0\0\162\11\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\157\11\0\0\162\11\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\157\11\0\0\162\11\0\0\2\0\0\0\101\0\158\11\0\0\161\11\0\0\2\0\0\0\114\0\215\11\0\0\69\12\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\226\11\0\0\229\11\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\226\11\0\0\229\11\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\226\11\0\0\229\11\0\0\2\0\0\0\101\0\227\11\0\0\228\11\0\0\2\0\0\0\114\0\3\12\0\0\69\12\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\14\12\0\0\17\12\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\14\12\0\0\17\12\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\14\12\0\0\17\12\0\0\2\0\0\0\101\0\15\12\0\0\16\12\0\0\2\0\0\0\114\0\27\12\0\0\69\12\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\38\12\0\0\41\12\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\38\12\0\0\41\12\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\38\12\0\0\41\12\0\0\2\0\0\0\101\0\39\12\0\0\40\12\0\0\2\0\0\0\114\0\56\12\0\0\69\12\0\0\2\0\0\0\116\0\57\12\0\0\69\12\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\60\12\0\0\65\12\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\60\12\0\0\65\12\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\60\12\0\0\65\12\0\0\2\0\0\0\101\0\61\12\0\0\64\12\0\0\2\0\0\0\114\0\180\12\0\0\209\12\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\188\12\0\0\191\12\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\188\12\0\0\191\12\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\188\12\0\0\191\12\0\0\2\0\0\0\101\0\189\12\0\0\190\12\0\0\2\0\0\0\111\0\126\13\0\0\161\13\0\0\2\0\0\0\108\0\140\13\0\0\161\13\0\0\2\0\0\0\114\0\142\13\0\0\161\13\0\0\2\0\0\0\114\0\217\13\0\0\71\14\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\228\13\0\0\231\13\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\228\13\0\0\231\13\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\228\13\0\0\231\13\0\0\2\0\0\0\101\0\229\13\0\0\230\13\0\0\2\0\0\0\114\0\5\14\0\0\71\14\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\16\14\0\0\19\14\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\16\14\0\0\19\14\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\16\14\0\0\19\14\0\0\2\0\0\0\101\0\17\14\0\0\18\14\0\0\2\0\0\0\114\0\29\14\0\0\71\14\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\40\14\0\0\43\14\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\40\14\0\0\43\14\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\40\14\0\0\43\14\0\0\2\0\0\0\101\0\41\14\0\0\42\14\0\0\2\0\0\0\114\0\58\14\0\0\71\14\0\0\2\0\0\0\116\0\59\14\0\0\71\14\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\62\14\0\0\67\14\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\62\14\0\0\67\14\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\62\14\0\0\67\14\0\0\2\0\0\0\101\0\63\14\0\0\66\14\0\0\2\0\0\0\111\0\123\14\0\0\136\14\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\133\14\0\0\136\14\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\133\14\0\0\136\14\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\133\14\0\0\136\14\0\0\2\0\0\0\101\0\134\14\0\0\135\14\0\0\2\0\0\0\114\0\90\16\0\0\210\16\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\103\16\0\0\107\16\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\103\16\0\0\107\16\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\103\16\0\0\107\16\0\0\2\0\0\0\101\0\104\16\0\0\106\16\0\0\2\0\0\0\114\0\137\16\0\0\210\16\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\150\16\0\0\154\16\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\150\16\0\0\154\16\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\150\16\0\0\154\16\0\0\2\0\0\0\101\0\151\16\0\0\153\16\0\0\2\0\0\0\114\0\164\16\0\0\210\16\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\177\16\0\0\181\16\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\177\16\0\0\181\16\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\177\16\0\0\181\16\0\0\2\0\0\0\101\0\178\16\0\0\180\16\0\0\2\0\0\0\114\0\196\16\0\0\210\16\0\0\2\0\0\0\116\0\197\16\0\0\210\16\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\201\16\0\0\206\16\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\201\16\0\0\206\16\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\201\16\0\0\206\16\0\0\2\0\0\0\101\0\202\16\0\0\205\16\0\0\2\0\0\0\114\0\106\17\0\0\138\17\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\116\17\0\0\120\17\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\116\17\0\0\120\17\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\116\17\0\0\120\17\0\0\2\0\0\0\101\0\117\17\0\0\119\17\0\0\2\0\0\0\101\0\240\17\0\0\246\17\0\0\2\0\0\0\114\0\186\18\0\0\50\19\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\199\18\0\0\203\18\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\199\18\0\0\203\18\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\199\18\0\0\203\18\0\0\2\0\0\0\101\0\200\18\0\0\202\18\0\0\2\0\0\0\114\0\233\18\0\0\50\19\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\246\18\0\0\250\18\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\246\18\0\0\250\18\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\246\18\0\0\250\18\0\0\2\0\0\0\101\0\247\18\0\0\249\18\0\0\2\0\0\0\114\0\4\19\0\0\50\19\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\17\19\0\0\21\19\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\17\19\0\0\21\19\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\17\19\0\0\21\19\0\0\2\0\0\0\101\0\18\19\0\0\20\19\0\0\2\0\0\0\114\0\36\19\0\0\50\19\0\0\2\0\0\0\116\0\37\19\0\0\50\19\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\41\19\0\0\46\19\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\41\19\0\0\46\19\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\41\19\0\0\46\19\0\0\2\0\0\0\101\0\42\19\0\0\45\19\0\0\2\0\0\0\114\0\142\20\0\0\6\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\155\20\0\0\159\20\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\155\20\0\0\159\20\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\155\20\0\0\159\20\0\0\2\0\0\0\101\0\156\20\0\0\158\20\0\0\2\0\0\0\114\0\189\20\0\0\6\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\202\20\0\0\206\20\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\202\20\0\0\206\20\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\202\20\0\0\206\20\0\0\2\0\0\0\101\0\203\20\0\0\205\20\0\0\2\0\0\0\114\0\216\20\0\0\6\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\229\20\0\0\233\20\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\229\20\0\0\233\20\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\229\20\0\0\233\20\0\0\2\0\0\0\101\0\230\20\0\0\232\20\0\0\2\0\0\0\114\0\248\20\0\0\6\21\0\0\2\0\0\0\116\0\249\20\0\0\6\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\253\20\0\0\2\21\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\253\20\0\0\2\21\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\253\20\0\0\2\21\0\0\2\0\0\0\101\0\254\20\0\0\1\21\0\0\2\0\0\0\114\0\98\21\0\0\218\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\111\21\0\0\115\21\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\111\21\0\0\115\21\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\111\21\0\0\115\21\0\0\2\0\0\0\101\0\112\21\0\0\114\21\0\0\2\0\0\0\114\0\145\21\0\0\218\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\158\21\0\0\162\21\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\158\21\0\0\162\21\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\158\21\0\0\162\21\0\0\2\0\0\0\101\0\159\21\0\0\161\21\0\0\2\0\0\0\114\0\172\21\0\0\218\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\185\21\0\0\189\21\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\185\21\0\0\189\21\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\185\21\0\0\189\21\0\0\2\0\0\0\101\0\186\21\0\0\188\21\0\0\2\0\0\0\114\0\204\21\0\0\218\21\0\0\2\0\0\0\116\0\205\21\0\0\218\21\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\209\21\0\0\214\21\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\209\21\0\0\214\21\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\209\21\0\0\214\21\0\0\2\0\0\0\101\0\210\21\0\0\213\21\0\0\2\0\0\0\114\0\145\22\0\0\9\23\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\158\22\0\0\162\22\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\158\22\0\0\162\22\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\158\22\0\0\162\22\0\0\2\0\0\0\101\0\159\22\0\0\161\22\0\0\2\0\0\0\114\0\192\22\0\0\9\23\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\205\22\0\0\209\22\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\205\22\0\0\209\22\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\205\22\0\0\209\22\0\0\2\0\0\0\101\0\206\22\0\0\208\22\0\0\2\0\0\0\114\0\219\22\0\0\9\23\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\232\22\0\0\236\22\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\232\22\0\0\236\22\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\232\22\0\0\236\22\0\0\2\0\0\0\101\0\233\22\0\0\235\22\0\0\2\0\0\0\114\0\251\22\0\0\9\23\0\0\2\0\0\0\116\0\252\22\0\0\9\23\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\0\23\0\0\5\23\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\0\23\0\0\5\23\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\0\23\0\0\5\23\0\0\2\0\0\0\101\0\1\23\0\0\4\23\0\0\2\0\0\0\111\0\138\23\0\0\166\23\0\0\2\0\0\0\114\0\141\23\0\0\166\23\0\0\2\0\0\0\108\0\143\23\0\0\166\23\0\0\2\0\0\0\114\0\148\24\0\0\12\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\161\24\0\0\165\24\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\161\24\0\0\165\24\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\161\24\0\0\165\24\0\0\2\0\0\0\101\0\162\24\0\0\164\24\0\0\2\0\0\0\114\0\195\24\0\0\12\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\208\24\0\0\212\24\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\208\24\0\0\212\24\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\208\24\0\0\212\24\0\0\2\0\0\0\101\0\209\24\0\0\211\24\0\0\2\0\0\0\114\0\222\24\0\0\12\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\235\24\0\0\239\24\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\235\24\0\0\239\24\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\235\24\0\0\239\24\0\0\2\0\0\0\101\0\236\24\0\0\238\24\0\0\2\0\0\0\114\0\254\24\0\0\12\25\0\0\2\0\0\0\116\0\255\24\0\0\12\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\3\25\0\0\8\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\3\25\0\0\8\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\3\25\0\0\8\25\0\0\2\0\0\0\101\0\4\25\0\0\7\25\0\0\2\0\0\0\114\0\67\25\0\0\187\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\80\25\0\0\84\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\80\25\0\0\84\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\80\25\0\0\84\25\0\0\2\0\0\0\101\0\81\25\0\0\83\25\0\0\2\0\0\0\114\0\114\25\0\0\187\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\127\25\0\0\131\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\127\25\0\0\131\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\127\25\0\0\131\25\0\0\2\0\0\0\101\0\128\25\0\0\130\25\0\0\2\0\0\0\114\0\141\25\0\0\187\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\154\25\0\0\158\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\154\25\0\0\158\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\154\25\0\0\158\25\0\0\2\0\0\0\101\0\155\25\0\0\157\25\0\0\2\0\0\0\114\0\173\25\0\0\187\25\0\0\2\0\0\0\116\0\174\25\0\0\187\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\178\25\0\0\183\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\178\25\0\0\183\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\178\25\0\0\183\25\0\0\2\0\0\0\101\0\179\25\0\0\182\25\0\0\2\0\0\0\111\0\206\25\0\0\225\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\212\25\0\0\217\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\212\25\0\0\217\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\212\25\0\0\217\25\0\0\2\0\0\0\101\0\213\25\0\0\216\25\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\221\25\0\0\225\25\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\221\25\0\0\225\25\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\221\25\0\0\225\25\0\0\2\0\0\0\101\0\222\25\0\0\224\25\0\0\2\0\0\0\111\0\89\26\0\0\112\26\0\0\2\0\0\0\108\0\90\26\0\0\112\26\0\0\2\0\0\0\114\0\95\26\0\0\112\26\0\0\2\0\0\0\116\0\96\26\0\0\112\26\0\0\2\0\0\0\101\0\97\26\0\0\112\26\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\101\26\0\0\112\26\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\101\26\0\0\112\26\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\101\26\0\0\112\26\0\0\2\0\0\0\108\0\102\26\0\0\111\26\0\0\2\0\0\0\114\0\2\27\0\0\122\27\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\15\27\0\0\19\27\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\15\27\0\0\19\27\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\15\27\0\0\19\27\0\0\2\0\0\0\101\0\16\27\0\0\18\27\0\0\2\0\0\0\114\0\49\27\0\0\122\27\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\62\27\0\0\66\27\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\62\27\0\0\66\27\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\62\27\0\0\66\27\0\0\2\0\0\0\101\0\63\27\0\0\65\27\0\0\2\0\0\0\114\0\76\27\0\0\122\27\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\89\27\0\0\93\27\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\89\27\0\0\93\27\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\89\27\0\0\93\27\0\0\2\0\0\0\101\0\90\27\0\0\92\27\0\0\2\0\0\0\114\0\108\27\0\0\122\27\0\0\2\0\0\0\116\0\109\27\0\0\122\27\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\113\27\0\0\118\27\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\113\27\0\0\118\27\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\113\27\0\0\118\27\0\0\2\0\0\0\101\0\114\27\0\0\117\27\0\0\15\0\0\0\2\0\0\0\107\0\2\0\0\0\83\0\2\0\0\0\100\0\2\0\0\0\66\0\2\0\0\0\102\0\2\0\0\0\97\0\2\0\0\0\114\0\2\0\0\0\99\0\2\0\0\0\105\0\2\0\0\0\115\0\2\0\0\0\120\0\2\0\0\0\104\0\2\0\0\0\117\0\2\0\0\0\112\0\2\0\0\0\82\0\24\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\9\0\0\0\2\0\0\0\101\0\0\0\0\0\23\0\0\0\2\0\0\0\110\0\0\0\0\0\23\0\0\0\2\0\0\0\115\0\0\0\0\0\23\0\0\0\2\0\0\0\100\0\1\0\0\0\23\0\0\0\2\0\0\0\117\0\2\0\0\0\23\0\0\0\2\0\0\0\102\0\3\0\0\0\23\0\0\0\2\0\0\0\82\0\4\0\0\0\23\0\0\0\2\0\0\0\66\0\5\0\0\0\23\0\0\0\2\0\0\0\101\0\6\0\0\0\23\0\0\0\9\0\0\0\2\0\0\0\107\0\2\0\0\0\83\0\2\0\0\0\97\0\2\0\0\0\114\0\2\0\0\0\99\0\2\0\0\0\105\0\2\0\0\0\120\0\2\0\0\0\104\0\2\0\0\0\112\0\39\2\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\91\0\0\0\2\0\0\0\105\0\0\0\0\0\38\2\0\0\2\0\0\0\86\0\1\0\0\0\38\2\0\0\2\0\0\0\79\0\2\0\0\0\38\2\0\0\2\0\0\0\107\0\3\0\0\0\38\2\0\0\2\0\0\0\67\0\7\0\0\0\38\2\0\0\2\0\0\0\90\0\14\0\0\0\38\2\0\0\2\0\0\0\71\0\22\0\0\0\38\2\0\0\2\0\0\0\97\0\23\0\0\0\38\2\0\0\2\0\0\0\103\0\24\0\0\0\38\2\0\0\2\0\0\0\70\0\28\0\0\0\38\2\0\0\2\0\0\0\119\0\32\0\0\0\38\2\0\0\2\0\0\0\111\0\33\0\0\0\38\2\0\0\2\0\0\0\100\0\34\0\0\0\38\2\0\0\2\0\0\0\102\0\35\0\0\0\38\2\0\0\2\0\0\0\81\0\36\0\0\0\38\2\0\0\2\0\0\0\77\0\46\0\0\0\38\2\0\0\2\0\0\0\117\0\50\0\0\0\38\2\0\0\2\0\0\0\112\0\51\0\0\0\38\2\0\0\2\0\0\0\82\0\55\0\0\0\38\2\0\0\2\0\0\0\121\0\56\0\0\0\38\2\0\0\2\0\0\0\113\0\60\0\0\0\38\2\0\0\2\0\0\0\84\0\61\0\0\0\38\2\0\0\2\0\0\0\120\0\62\0\0\0\38\2\0\0\2\0\0\0\115\0\63\0\0\0\38\2\0\0\3\0\0\0\101\101\0\64\0\0\0\38\2\0\0\2\0\0\0\110\0\65\0\0\0\38\2\0\0\2\0\0\0\88\0\66\0\0\0\38\2\0\0\2\0\0\0\95\0\70\0\0\0\38\2\0\0\2\0\0\0\75\0\71\0\0\0\38\2\0\0\2\0\0\0\74\0\72\0\0\0\38\2\0\0\2\0\0\0\89\0\73\0\0\0\38\2\0\0\2\0\0\0\118\0\77\0\0\0\38\2\0\0\2\0\0\0\99\0\82\0\0\0\38\2\0\0\2\0\0\0\104\0\82\0\0\0\38\2\0\0\2\0\0\0\101\0\82\0\0\0\38\2\0\0\2\0\0\0\108\0\100\0\0\0\38\2\0\0\2\0\0\0\114\0\114\0\0\0\38\2\0\0\2\0\0\0\66\0\115\0\0\0\38\2\0\0\2\0\0\0\68\0\116\0\0\0\38\2\0\0\2\0\0\0\98\0\117\0\0\0\38\2\0\0\2\0\0\0\109\0\117\0\0\0\38\2\0\0\2\0\0\0\83\0\117\0\0\0\38\2\0\0\2\0\0\0\76\0\124\0\0\0\38\2\0\0\2\0\0\0\66\0\129\0\0\0\38\2\0\0\2\0\0\0\69\0\136\0\0\0\38\2\0\0\2\0\0\0\104\0\143\0\0\0\38\2\0\0\2\0\0\0\104\0\168\0\0\0\38\2\0\0\2\0\0\0\107\0\176\0\0\0\38\2\0\0\2\0\0\0\79\0\191\0\0\0\38\2\0\0\2\0\0\0\107\0\196\0\0\0\38\2\0\0\2\0\0\0\80\0\197\0\0\0\38\2\0\0\2\0\0\0\103\0\206\0\0\0\38\2\0\0\2\0\0\0\103\0\212\0\0\0\38\2\0\0\2\0\0\0\103\0\222\0\0\0\38\2\0\0\2\0\0\0\120\0\235\0\0\0\38\2\0\0\2\0\0\0\85\0\245\0\0\0\38\2\0\0\2\0\0\0\68\0\251\0\0\0\38\2\0\0\2\0\0\0\120\0\91\1\0\0\38\2\0\0\2\0\0\0\67\0\101\1\0\0\38\2\0\0\2\0\0\0\110\0\117\1\0\0\38\2\0\0\2\0\0\0\110\0\130\1\0\0\38\2\0\0\2\0\0\0\101\0\138\1\0\0\38\2\0\0\2\0\0\0\110\0\140\1\0\0\38\2\0\0\2\0\0\0\100\0\142\1\0\0\38\2\0\0\2\0\0\0\112\0\142\1\0\0\38\2\0\0\12\0\0\0\40\102\111\114\32\105\110\100\101\120\41\0\145\1\0\0\153\1\0\0\12\0\0\0\40\102\111\114\32\108\105\109\105\116\41\0\145\1\0\0\153\1\0\0\11\0\0\0\40\102\111\114\32\115\116\101\112\41\0\145\1\0\0\153\1\0\0\2\0\0\0\101\0\146\1\0\0\152\1\0\0\2\0\0\0\110\0\149\1\0\0\152\1\0\0\2\0\0\0\67\0\173\1\0\0\38\2\0\0\2\0\0\0\108\0\173\1\0\0\38\2\0\0\2\0\0\0\97\0\175\1\0\0\38\2\0\0\2\0\0\0\110\0\177\1\0\0\38\2\0\0\2\0\0\0\100\0\178\1\0\0\38\2\0\0\2\0\0\0\117\0\188\1\0\0\38\2\0\0\2\0\0\0\84\0\197\1\0\0\38\2\0\0\2\0\0\0\111\0\198\1\0\0\38\2\0\0\2\0\0\0\70\0\210\1\0\0\38\2\0\0\2\0\0\0\121\0\211\1\0\0\38\2\0\0\2\0\0\0\110\0\212\1\0\0\38\2\0\0\2\0\0\0\68\0\213\1\0\0\38\2\0\0\2\0\0\0\82\0\214\1\0\0\38\2\0\0\2\0\0\0\115\0\218\1\0\0\38\2\0\0\2\0\0\0\102\0\226\1\0\0\38\2\0\0\2\0\0\0\100\0\237\1\0\0\38\2\0\0\2\0\0\0\117\0\245\1\0\0\38\2\0\0\2\0\0\0\83\0\248\1\0\0\38\2\0\0\2\0\0\0\110\0\251\1\0\0\38\2\0\0\2\0\0\0\76\0\18\2\0\0\38\2\0\0\2\0\0\0\112\0\28\2\0\0\38\2\0\0\8\0\0\0\2\0\0\0\116\0\2\0\0\0\72\0\2\0\0\0\65\0\2\0\0\0\87\0\2\0\0\0\78\0\2\0\0\0\106\0\2\0\0\0\122\0\2\0\0\0\73\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\165\0\0\0\30\0\0\0\30\0\128\0\2\0\0\0\3\0\0\0\0\0\96\138\64\3\0\0\0\0\0\8\138\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\80\120\64\3\0\0\0\0\0\192\129\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\13\28\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\128\0\0\2\128\0\64\2\0\0\129\2\0\0\28\130\128\1\65\66\0\0\220\129\128\1\10\2\128\1\65\130\0\0\129\194\0\0\193\2\1\0\36\3\0\0\28\3\128\0\34\66\0\0\20\2\0\4\12\66\65\4\156\129\128\1\193\129\1\0\92\129\128\1\129\193\1\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\8\0\0\0\3\0\0\0\0\116\102\38\65\3\0\0\0\0\206\75\45\65\3\0\0\0\0\0\0\8\64\3\0\0\0\0\0\64\104\64\3\0\0\0\0\0\128\69\64\3\0\0\0\0\104\49\14\65\3\0\0\0\0\156\122\42\65\3\0\0\0\0\32\124\4\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\176\141\64\3\0\0\0\0\0\120\133\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\28\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\27\0\0\0\2\0\0\0\101\0\0\0\0\0\27\0\0\0\2\0\0\0\110\0\0\0\0\0\27\0\0\0\2\0\0\0\111\0\0\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\128\106\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\30\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\205\1\64\0\10\2\0\1\65\66\0\0\129\130\0\0\34\66\0\1\20\2\0\4\12\194\64\4\156\129\128\1\193\1\1\0\212\1\128\3\205\193\129\130\92\129\128\1\129\129\1\0\148\1\0\3\141\129\129\131\77\129\129\2\138\1\0\0\228\1\0\0\220\1\128\0\162\65\0\0\148\1\0\3\140\1\66\3\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\9\0\0\0\3\0\0\0\0\0\11\45\65\3\0\0\0\0\0\16\135\64\3\0\0\0\0\0\96\123\64\3\0\0\0\0\78\8\34\65\4\68\0\0\0\115\111\108\116\101\114\58\32\110\97\104\32\116\114\117\115\116\32\109\101\32\100\117\115\116\32\104\97\115\32\111\110\101\32\111\102\32\116\104\101\32\98\101\115\116\32\97\110\116\105\32\99\104\101\97\116\115\32\111\110\32\114\111\98\108\111\120\0\3\0\0\0\0\192\22\23\65\4\20\0\0\0\68\117\115\116\32\114\101\99\111\105\108\32\103\111\32\98\114\114\114\0\3\0\0\0\0\192\6\8\65\3\0\0\0\0\90\116\46\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\30\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\29\0\0\0\2\0\0\0\101\0\0\0\0\0\29\0\0\0\2\0\0\0\111\0\0\0\0\0\29\0\0\0\2\0\0\0\110\0\0\0\0\0\29\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\31\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\156\129\128\1\193\65\0\0\212\1\128\3\205\193\1\129\92\129\128\1\138\1\0\2\193\193\0\0\1\2\1\0\65\66\1\0\129\130\1\0\162\65\0\2\148\1\0\3\140\193\65\3\77\129\129\2\138\1\128\1\193\1\2\0\1\66\2\0\65\130\2\0\162\65\128\1\148\1\0\3\140\193\66\3\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\12\0\0\0\3\0\0\0\0\248\255\31\65\4\33\0\0\0\112\115\117\32\54\48\102\112\115\44\32\108\117\114\97\112\104\32\53\102\112\115\44\32\120\101\110\32\48\102\112\115\0\3\0\0\0\0\160\91\42\65\3\0\0\0\0\0\16\125\64\3\0\0\0\0\0\0\105\64\3\0\0\0\0\0\224\138\64\3\0\0\0\0\0\48\133\64\3\0\0\0\0\218\119\42\65\3\0\0\0\0\0\160\125\64\3\0\0\0\0\0\184\130\64\3\0\0\0\0\0\152\136\64\3\0\0\0\0\8\57\6\65\0\0\0\0\31\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\30\0\0\0\2\0\0\0\101\0\0\0\0\0\30\0\0\0\2\0\0\0\111\0\0\0\0\0\30\0\0\0\2\0\0\0\110\0\0\0\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\37\0\0\0\30\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\22\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\128\0\0\2\128\0\64\2\0\0\129\2\0\0\28\130\128\1\65\66\0\0\220\129\128\1\1\130\0\0\156\129\128\1\193\193\0\0\92\129\128\1\129\1\1\0\148\1\0\3\141\129\129\130\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\6\0\0\0\3\0\0\0\0\52\195\34\65\3\0\0\0\0\220\182\30\65\3\0\0\0\0\244\80\17\65\3\0\0\0\0\172\241\21\65\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\0\0\128\120\34\65\0\0\0\0\22\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\21\0\0\0\2\0\0\0\101\0\0\0\0\0\21\0\0\0\2\0\0\0\111\0\0\0\0\0\21\0\0\0\2\0\0\0\110\0\0\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\80\128\64\3\0\0\0\0\0\160\114\64\3\0\0\0\0\0\216\131\64\3\0\0\0\0\0\0\128\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\14\27\0\0\0\0\1\128\0\64\1\0\0\138\1\128\1\193\1\0\0\1\66\0\0\65\130\0\0\164\2\0\0\193\194\0\0\1\3\1\0\65\67\1\0\156\2\0\2\162\65\0\0\148\1\0\3\140\129\65\3\28\129\128\1\74\1\0\1\129\193\1\0\193\1\2\0\98\65\0\1\84\1\128\2\76\65\194\2\13\65\1\2\13\129\66\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\11\0\0\0\3\0\0\0\0\0\88\135\64\3\0\0\0\0\0\224\111\64\3\0\0\0\0\0\0\117\64\3\0\0\0\0\0\192\95\64\3\0\0\0\0\0\24\137\64\3\0\0\0\0\0\48\142\64\3\0\0\0\0\172\222\25\65\3\0\0\0\0\0\0\140\64\3\0\0\0\0\0\24\136\64\3\0\0\0\0\144\222\4\65\3\0\0\0\0\106\12\33\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\165\0\0\0\30\0\0\0\30\0\128\0\2\0\0\0\3\0\0\0\0\0\32\112\64\3\0\0\0\0\0\72\134\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\26\0\0\0\2\0\0\0\111\0\0\0\0\0\26\0\0\0\2\0\0\0\110\0\0\0\0\0\26\0\0\0\2\0\0\0\101\0\0\0\0\0\26\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\0\99\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\184\141\64\3\0\0\0\0\0\0\128\64\3\0\0\0\0\0\120\142\64\3\0\0\0\0\0\0\124\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\12\33\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\156\129\128\1\141\65\64\3\193\129\0\0\92\129\128\1\138\1\0\2\193\193\0\0\1\2\1\0\65\66\1\0\129\130\1\0\228\2\0\0\220\2\128\0\162\65\0\0\148\1\0\3\140\193\65\3\28\129\128\1\74\1\0\1\129\1\2\0\193\65\2\0\36\66\0\0\28\2\128\0\98\65\0\0\84\1\128\2\76\129\194\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\11\0\0\0\3\0\0\0\0\70\22\36\65\3\0\0\0\0\0\105\18\65\3\0\0\0\0\196\181\31\65\3\0\0\0\0\0\224\126\64\3\0\0\0\0\0\240\133\64\3\0\0\0\0\0\96\122\64\3\0\0\0\0\0\88\142\64\3\0\0\0\0\192\189\17\65\3\0\0\0\0\0\160\108\64\3\0\0\0\0\0\128\85\64\3\0\0\0\0\6\244\42\65\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\96\104\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\30\0\0\2\30\0\128\0\3\0\0\0\3\0\0\0\0\0\96\130\64\3\0\0\0\0\0\56\139\64\3\0\0\0\0\0\8\136\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\32\0\0\0\2\0\0\0\101\0\0\0\0\0\32\0\0\0\2\0\0\0\110\0\0\0\0\0\32\0\0\0\2\0\0\0\111\0\0\0\0\0\32\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\32\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\10\2\128\0\65\2\0\0\164\2\0\0\156\2\128\0\34\66\0\0\20\2\0\4\12\66\64\4\156\129\128\1\202\1\0\1\1\130\0\0\65\194\0\0\226\65\0\1\212\1\128\3\204\1\193\3\92\129\128\1\138\1\0\2\193\65\1\0\1\130\1\0\65\194\1\0\129\2\2\0\162\65\0\2\148\1\0\3\140\65\66\3\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\10\0\0\0\3\0\0\0\0\0\0\86\64\3\0\0\0\0\232\132\42\65\3\0\0\0\0\0\80\113\64\3\0\0\0\0\0\56\140\64\3\0\0\0\0\0\165\196\64\3\0\0\0\0\0\72\139\64\3\0\0\0\0\0\240\136\64\3\0\0\0\0\0\96\107\64\3\0\0\0\0\0\64\93\64\3\0\0\0\0\160\174\5\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\32\125\64\3\0\0\0\0\0\136\142\64\3\0\0\0\0\0\144\130\64\3\0\0\0\0\0\104\134\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\32\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\31\0\0\0\2\0\0\0\101\0\0\0\0\0\31\0\0\0\2\0\0\0\111\0\0\0\0\0\31\0\0\0\2\0\0\0\110\0\0\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\8\20\0\0\0\0\1\128\0\64\1\0\0\129\1\0\0\28\129\128\1\74\1\128\0\129\65\0\0\228\1\0\0\220\1\128\0\98\65\0\0\84\1\128\2\76\129\192\2\13\65\1\2\65\193\0\0\84\1\128\2\77\65\1\130\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\5\0\0\0\3\0\0\0\0\136\186\13\65\3\0\0\0\0\0\176\121\64\3\0\0\0\0\192\38\239\64\4\28\0\0\0\108\105\116\103\97\110\103\32\111\110\32\116\111\112\32\58\115\117\110\103\108\97\115\115\101\115\58\0\3\0\0\0\0\80\170\242\64\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\0\95\64\3\0\0\0\0\0\56\129\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\19\0\0\0\2\0\0\0\111\0\0\0\0\0\19\0\0\0\2\0\0\0\110\0\0\0\0\0\19\0\0\0\2\0\0\0\101\0\0\0\0\0\19\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\20\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\156\129\128\1\193\65\0\0\92\129\128\1\129\129\0\0\148\1\0\3\141\129\129\129\77\129\129\2\129\1\1\0\148\1\0\3\141\129\129\130\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\6\0\0\0\3\0\0\0\0\168\84\20\65\3\0\0\0\0\196\100\41\65\4\68\0\0\0\64\101\118\101\114\121\111\110\101\32\100\101\115\105\103\110\115\32\97\114\101\32\100\111\110\101\46\32\108\117\114\97\112\104\32\119\101\98\115\105\116\101\32\99\111\109\105\110\103\46\46\46\46\32\101\116\97\32\74\85\76\89\32\50\48\50\48\0\3\0\0\0\0\248\119\16\65\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\0\0\160\176\43\65\0\0\0\0\20\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\19\0\0\0\2\0\0\0\101\0\0\0\0\0\19\0\0\0\2\0\0\0\111\0\0\0\0\0\19\0\0\0\2\0\0\0\110\0\0\0\0\0\19\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\8\143\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\10\28\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\20\2\0\4\13\2\130\128\156\129\128\1\202\1\0\1\1\130\0\0\65\194\0\0\226\65\0\1\212\1\128\3\204\1\193\3\92\129\128\1\138\1\128\0\193\65\1\0\36\2\0\0\28\2\128\0\162\65\0\0\148\1\0\3\140\129\65\3\28\129\128\1\13\193\65\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\8\0\0\0\4\68\0\0\0\115\111\108\116\101\114\58\32\110\97\104\32\116\114\117\115\116\32\109\101\32\100\117\115\116\32\104\97\115\32\111\110\101\32\111\102\32\116\104\101\32\98\101\115\116\32\97\110\116\105\32\99\104\101\97\116\115\32\111\110\32\114\111\98\108\111\120\0\3\0\0\0\0\196\114\38\65\3\0\0\0\0\0\216\138\64\3\0\0\0\0\0\0\90\64\3\0\0\0\0\64\69\239\64\3\0\0\0\0\0\184\139\64\3\0\0\0\0\156\34\28\65\3\0\0\0\0\24\18\14\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\28\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\27\0\0\0\2\0\0\0\101\0\0\0\0\0\27\0\0\0\2\0\0\0\110\0\0\0\0\0\27\0\0\0\2\0\0\0\111\0\0\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\0\82\64\3\0\0\0\0\0\96\107\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\37\0\0\0\30\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\8\15\0\0\0\0\1\128\0\64\1\128\0\141\1\64\0\193\65\0\0\212\1\128\3\205\193\1\129\92\129\128\1\77\193\192\2\129\1\1\0\28\129\128\1\13\65\65\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\6\0\0\0\3\0\0\0\0\232\71\6\65\4\61\0\0\0\112\115\117\32\112\114\101\109\105\117\109\32\99\104\97\100\115\32\119\105\110\110\105\110\103\32\40\111\110\108\121\32\108\111\115\101\114\115\32\117\115\101\32\116\104\101\32\102\114\101\101\32\118\101\114\115\105\111\110\41\0\3\0\0\0\0\206\123\34\65\3\0\0\0\0\232\67\13\65\3\0\0\0\0\174\108\38\65\3\0\0\0\0\240\188\251\64\0\0\0\0\15\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\14\0\0\0\2\0\0\0\101\0\0\0\0\0\14\0\0\0\2\0\0\0\111\0\0\0\0\0\14\0\0\0\2\0\0\0\110\0\0\0\0\0\14\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\24\0\0\0\0\1\128\0\64\1\128\0\138\1\128\0\193\1\0\0\36\2\0\0\28\2\128\0\162\65\0\0\148\1\0\3\140\65\64\3\141\129\1\0\193\129\0\0\212\1\128\3\205\193\129\129\141\193\1\3\193\1\1\0\212\1\128\3\205\193\129\130\92\129\128\1\129\129\1\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\7\0\0\0\3\0\0\0\0\0\232\134\64\3\0\0\0\0\178\131\38\65\4\83\0\0\0\119\104\111\32\116\104\101\32\102\117\99\107\32\108\111\111\107\101\100\32\97\116\32\115\121\110\97\112\115\101\32\120\101\110\32\97\110\100\32\115\97\105\100\32\39\121\101\97\104\32\116\104\105\115\32\105\115\32\103\111\111\100\32\101\110\111\117\103\104\32\102\111\114\32\114\101\108\101\97\115\101\39\0\3\0\0\0\0\228\171\17\65\4\20\0\0\0\68\117\115\116\32\114\101\99\111\105\108\32\103\111\32\98\114\114\114\0\3\0\0\0\0\108\231\21\65\3\0\0\0\0\72\149\18\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\165\0\0\0\30\0\0\0\30\0\128\0\2\0\0\0\3\0\0\0\0\0\112\112\64\3\0\0\0\0\0\0\80\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\24\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\23\0\0\0\2\0\0\0\110\0\0\0\0\0\23\0\0\0\2\0\0\0\101\0\0\0\0\0\23\0\0\0\2\0\0\0\111\0\0\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\31\0\0\0\0\1\128\0\77\1\64\0\138\1\0\1\193\65\0\0\1\130\0\0\162\65\0\1\148\1\0\3\140\193\64\3\28\129\128\1\65\1\1\0\84\1\128\2\77\65\129\130\13\65\1\2\74\1\0\0\164\1\0\0\156\1\128\0\98\65\0\0\84\1\128\2\76\129\193\2\13\65\1\2\74\1\0\1\129\193\1\0\193\1\2\0\98\65\0\1\84\1\128\2\76\65\194\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\10\0\0\0\3\0\0\0\0\32\149\249\64\3\0\0\0\0\0\208\133\64\3\0\0\0\0\0\224\130\64\3\0\0\0\0\166\158\37\65\4\33\0\0\0\112\115\117\32\54\48\102\112\115\44\32\108\117\114\97\112\104\32\53\102\112\115\44\32\120\101\110\32\48\102\112\115\0\3\0\0\0\0\204\86\18\65\3\0\0\0\0\106\62\44\65\3\0\0\0\0\0\128\97\64\3\0\0\0\0\0\80\125\64\3\0\0\0\0\126\0\42\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\101\0\0\0\30\0\0\0\30\0\128\0\1\0\0\0\3\0\0\0\0\0\248\133\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\31\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\30\0\0\0\2\0\0\0\111\0\0\0\0\0\30\0\0\0\2\0\0\0\101\0\0\0\0\0\30\0\0\0\2\0\0\0\110\0\0\0\0\0\30\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\29\0\0\0\0\1\128\0\64\1\0\0\138\1\0\0\148\1\0\3\140\1\64\3\28\129\128\1\74\1\0\1\129\65\0\0\193\129\0\0\36\2\0\0\28\2\128\0\98\65\0\0\84\1\128\2\76\193\192\2\13\65\1\2\13\1\65\2\13\65\65\2\74\1\128\0\129\129\1\0\228\65\0\0\220\1\128\0\98\65\0\0\84\1\128\2\76\193\193\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\8\0\0\0\3\0\0\0\0\68\117\25\65\3\0\0\0\0\0\64\105\64\3\0\0\0\0\0\144\125\64\3\0\0\0\0\134\96\32\65\3\0\0\0\0\80\56\7\65\3\0\0\0\0\216\254\10\65\3\0\0\0\0\0\120\128\64\3\0\0\0\0\32\254\38\65\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\30\0\0\2\30\0\128\0\3\0\0\0\3\0\0\0\0\0\128\95\64\3\0\0\0\0\0\64\114\64\3\0\0\0\0\0\208\137\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\37\0\0\0\30\0\0\0\30\0\128\0\0\0\0\0\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\29\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\28\0\0\0\2\0\0\0\108\0\0\0\0\0\28\0\0\0\2\0\0\0\110\0\0\0\0\0\28\0\0\0\2\0\0\0\101\0\0\0\0\0\28\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\30\0\0\2\30\0\128\0\3\0\0\0\3\0\0\0\0\0\32\127\64\3\0\0\0\0\0\128\72\64\3\0\0\0\0\0\176\124\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\168\130\64\3\0\0\0\0\0\128\121\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\10\21\0\0\0\0\1\128\0\65\1\0\0\84\1\128\2\77\65\129\128\77\65\1\0\129\129\0\0\28\129\128\1\74\1\128\1\129\193\0\0\193\1\1\0\1\66\1\0\100\2\0\0\92\2\128\0\98\65\0\0\84\1\128\2\76\129\193\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\7\0\0\0\4\83\0\0\0\119\104\111\32\116\104\101\32\102\117\99\107\32\108\111\111\107\101\100\32\97\116\32\115\121\110\97\112\115\101\32\120\101\110\32\97\110\100\32\115\97\105\100\32\39\121\101\97\104\32\116\104\105\115\32\105\115\32\103\111\111\100\32\101\110\111\117\103\104\32\102\111\114\32\114\101\108\101\97\115\101\39\0\3\0\0\0\0\80\100\41\65\3\0\0\0\0\126\196\44\65\3\0\0\0\0\0\160\123\64\3\0\0\0\0\0\160\109\64\3\0\0\0\0\0\24\131\64\3\0\0\0\0\88\0\40\65\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\160\118\64\3\0\0\0\0\0\80\125\64\3\0\0\0\0\0\184\137\64\3\0\0\0\0\0\224\106\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\20\0\0\0\2\0\0\0\108\0\0\0\0\0\20\0\0\0\2\0\0\0\101\0\0\0\0\0\20\0\0\0\2\0\0\0\110\0\0\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\7\13\0\0\0\0\1\128\0\77\1\64\0\77\65\192\2\129\129\0\0\28\129\128\1\74\1\0\0\84\1\128\2\76\193\192\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\4\0\0\0\3\0\0\0\0\104\143\13\65\3\0\0\0\0\148\78\32\65\3\0\0\0\0\24\112\28\65\3\0\0\0\0\0\18\168\64\0\0\0\0\13\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\12\0\0\0\2\0\0\0\111\0\0\0\0\0\12\0\0\0\2\0\0\0\110\0\0\0\0\0\12\0\0\0\2\0\0\0\101\0\0\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\23\0\0\0\1\1\0\0\20\1\0\2\13\1\129\128\13\1\1\0\74\1\0\0\164\1\0\0\156\1\128\0\98\65\0\0\84\1\128\2\76\129\192\2\13\65\1\2\74\1\128\1\129\193\0\0\193\1\1\0\1\66\1\0\98\65\128\1\84\1\128\2\76\129\193\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\7\0\0\0\4\61\0\0\0\112\115\117\32\112\114\101\109\105\117\109\32\99\104\97\100\115\32\119\105\110\110\105\110\103\32\40\111\110\108\121\32\108\111\115\101\114\115\32\117\115\101\32\116\104\101\32\102\114\101\101\32\118\101\114\115\105\111\110\41\0\3\0\0\0\0\140\86\43\65\3\0\0\0\0\228\103\46\65\3\0\0\0\0\0\144\131\64\3\0\0\0\0\0\64\91\64\3\0\0\0\0\0\0\75\64\3\0\0\0\0\176\72\240\64\1\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\16\131\64\3\0\0\0\0\0\216\137\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\23\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\22\0\0\0\2\0\0\0\108\0\0\0\0\0\22\0\0\0\2\0\0\0\110\0\0\0\0\0\22\0\0\0\2\0\0\0\101\0\0\0\0\0\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\7\12\0\0\0\0\1\128\0\77\1\64\0\129\65\0\0\28\129\128\1\65\129\0\0\84\1\128\2\77\65\129\129\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\4\0\0\0\3\0\0\0\0\16\6\250\64\3\0\0\0\0\104\51\24\65\4\61\0\0\0\112\115\117\32\112\114\101\109\105\117\109\32\99\104\97\100\115\32\119\105\110\110\105\110\103\32\40\111\110\108\121\32\108\111\115\101\114\115\32\117\115\101\32\116\104\101\32\102\114\101\101\32\118\101\114\115\105\111\110\41\0\3\0\0\0\0\236\61\46\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\11\0\0\0\2\0\0\0\108\0\0\0\0\0\11\0\0\0\2\0\0\0\110\0\0\0\0\0\11\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\224\117\64\3\0\0\0\0\0\200\132\64\3\0\0\0\0\0\16\141\64\3\0\0\0\0\0\160\117\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\10\21\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\128\0\0\2\0\0\65\2\0\0\220\129\128\1\1\66\0\0\156\129\128\1\202\1\128\0\1\130\0\0\226\65\128\0\212\1\128\3\204\193\192\3\92\129\128\1\129\1\1\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\5\0\0\0\3\0\0\0\0\100\86\34\65\3\0\0\0\0\232\86\37\65\3\0\0\0\0\0\32\143\64\3\0\0\0\0\124\119\30\65\3\0\0\0\0\110\0\46\65\0\0\0\0\21\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\20\0\0\0\2\0\0\0\101\0\0\0\0\0\20\0\0\0\2\0\0\0\110\0\0\0\0\0\20\0\0\0\2\0\0\0\111\0\0\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\176\136\64\3\0\0\0\0\0\216\136\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\32\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\156\129\128\1\202\1\0\1\1\66\0\0\65\130\0\0\164\2\0\0\156\2\128\0\226\65\0\0\212\1\128\3\204\193\192\3\92\129\128\1\129\1\1\0\28\129\128\1\74\1\0\2\129\65\1\0\193\129\1\0\1\194\1\0\65\2\2\0\164\66\0\0\156\2\128\0\98\65\0\0\84\1\128\2\76\65\194\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\10\0\0\0\3\0\0\0\0\192\200\27\65\3\0\0\0\0\0\192\141\64\3\0\0\0\0\0\160\136\64\3\0\0\0\0\146\128\46\65\3\0\0\0\0\122\235\35\65\3\0\0\0\0\0\192\87\64\3\0\0\0\0\0\240\138\64\3\0\0\0\0\0\176\124\64\3\0\0\0\0\0\32\111\64\3\0\0\0\0\254\35\44\65\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\0\109\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\232\141\64\3\0\0\0\0\0\128\90\64\3\0\0\0\0\0\224\111\64\3\0\0\0\0\0\64\100\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\32\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\31\0\0\0\2\0\0\0\101\0\0\0\0\0\31\0\0\0\2\0\0\0\111\0\0\0\0\0\31\0\0\0\2\0\0\0\110\0\0\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\165\0\0\0\30\0\0\0\30\0\128\0\2\0\0\0\3\0\0\0\0\0\168\128\64\3\0\0\0\0\0\48\141\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\12\28\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\10\2\128\1\65\2\0\0\129\66\0\0\193\130\0\0\34\66\128\1\20\2\0\4\12\194\64\4\156\129\128\1\193\1\1\0\92\129\128\1\138\1\128\1\193\65\1\0\1\130\1\0\65\194\1\0\162\65\128\1\148\1\0\3\140\1\66\3\28\129\128\1\13\65\66\2\13\129\66\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\11\0\0\0\3\0\0\0\0\0\248\137\64\3\0\0\0\0\0\96\120\64\3\0\0\0\0\0\136\142\64\3\0\0\0\0\44\137\24\65\3\0\0\0\0\64\23\231\64\3\0\0\0\0\0\128\106\64\3\0\0\0\0\0\192\100\64\3\0\0\0\0\0\152\140\64\3\0\0\0\0\192\79\232\64\3\0\0\0\0\148\80\30\65\3\0\0\0\0\136\128\1\65\0\0\0\0\28\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\27\0\0\0\2\0\0\0\101\0\0\0\0\0\27\0\0\0\2\0\0\0\111\0\0\0\0\0\27\0\0\0\2\0\0\0\110\0\0\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\193\192\0\0\30\0\128\2\30\0\128\0\4\0\0\0\3\0\0\0\0\0\16\132\64\3\0\0\0\0\0\48\122\64\3\0\0\0\0\0\72\136\64\3\0\0\0\0\0\0\137\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\7\14\0\0\0\0\1\128\0\65\1\0\0\84\1\128\2\77\65\129\128\77\65\1\0\77\129\192\2\129\193\0\0\28\129\128\1\13\1\65\2\13\65\65\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\6\0\0\0\4\68\0\0\0\115\111\108\116\101\114\58\32\110\97\104\32\116\114\117\115\116\32\109\101\32\100\117\115\116\32\104\97\115\32\111\110\101\32\111\102\32\116\104\101\32\98\101\115\116\32\97\110\116\105\32\99\104\101\97\116\115\32\111\110\32\114\111\98\108\111\120\0\3\0\0\0\0\56\94\14\65\3\0\0\0\0\208\244\36\65\3\0\0\0\0\140\131\20\65\3\0\0\0\0\64\155\246\64\3\0\0\0\0\0\182\14\65\0\0\0\0\14\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\13\0\0\0\2\0\0\0\108\0\0\0\0\0\13\0\0\0\2\0\0\0\101\0\0\0\0\0\13\0\0\0\2\0\0\0\110\0\0\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\23\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\205\1\64\0\1\66\0\0\20\2\0\4\13\2\2\129\156\129\128\1\193\193\0\0\92\129\128\1\138\1\0\2\193\1\1\0\1\66\1\0\65\130\1\0\129\194\1\0\162\65\0\2\148\1\0\3\140\1\66\3\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\9\0\0\0\3\0\0\0\0\136\195\42\65\4\72\0\0\0\119\104\121\32\116\104\101\32\102\117\99\107\32\119\111\117\108\100\32\119\101\32\115\101\108\108\32\97\32\100\101\111\98\102\117\115\99\97\116\111\114\32\102\111\114\32\97\32\112\114\111\100\117\99\116\32\119\101\32\99\114\101\97\116\101\100\46\46\46\46\46\0\3\0\0\0\0\100\121\33\65\3\0\0\0\0\96\71\240\64\3\0\0\0\0\0\192\119\64\3\0\0\0\0\0\240\141\64\3\0\0\0\0\0\80\124\64\3\0\0\0\0\0\48\113\64\3\0\0\0\0\140\140\29\65\0\0\0\0\23\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\22\0\0\0\2\0\0\0\101\0\0\0\0\0\22\0\0\0\2\0\0\0\111\0\0\0\0\0\22\0\0\0\2\0\0\0\110\0\0\0\0\0\22\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\3\0\0\0\1\0\0\0\30\0\0\1\30\0\128\0\1\0\0\0\3\0\0\0\0\0\152\131\64\0\0\0\0\3\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\8\12\0\0\0\0\1\128\0\64\1\128\0\141\1\64\0\193\65\0\0\92\129\128\1\77\129\192\2\129\193\0\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\4\0\0\0\3\0\0\0\0\240\107\27\65\3\0\0\0\0\180\83\40\65\3\0\0\0\0\184\143\30\65\3\0\0\0\0\116\218\29\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\11\0\0\0\2\0\0\0\111\0\0\0\0\0\11\0\0\0\2\0\0\0\110\0\0\0\0\0\11\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\16\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\0\0\1\2\0\0\156\129\128\1\193\65\0\0\212\1\128\3\205\193\1\129\92\129\128\1\129\193\0\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\4\0\0\0\3\0\0\0\0\184\227\7\65\4\68\0\0\0\64\101\118\101\114\121\111\110\101\32\100\101\115\105\103\110\115\32\97\114\101\32\100\111\110\101\46\32\108\117\114\97\112\104\32\119\101\98\115\105\116\101\32\99\111\109\105\110\103\46\46\46\46\32\101\116\97\32\74\85\76\89\32\50\48\50\48\0\3\0\0\0\0\176\153\245\64\3\0\0\0\0\156\216\29\65\0\0\0\0\16\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\15\0\0\0\2\0\0\0\101\0\0\0\0\0\15\0\0\0\2\0\0\0\110\0\0\0\0\0\15\0\0\0\2\0\0\0\111\0\0\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\2\0\0\0\30\0\128\0\30\0\128\0\0\0\0\0\0\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\10\22\0\0\0\0\1\128\0\64\1\128\0\128\1\128\0\192\1\128\0\0\2\0\0\65\2\0\0\84\2\128\4\77\66\130\128\220\129\128\1\1\130\0\0\156\129\128\1\141\193\64\3\193\1\1\0\212\1\128\3\205\193\129\130\92\129\128\1\129\129\1\0\28\129\128\1\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\7\0\0\0\4\16\0\0\0\103\97\109\101\114\115\32\111\107\32\49\32\50\32\51\0\3\0\0\0\0\192\56\38\65\3\0\0\0\0\78\186\42\65\3\0\0\0\0\244\162\28\65\4\28\0\0\0\108\105\116\103\97\110\103\32\111\110\32\116\111\112\32\58\115\117\110\103\108\97\115\115\101\115\58\0\3\0\0\0\0\40\251\31\65\3\0\0\0\0\100\198\31\65\0\0\0\0\22\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\21\0\0\0\2\0\0\0\101\0\0\0\0\0\21\0\0\0\2\0\0\0\111\0\0\0\0\0\21\0\0\0\2\0\0\0\110\0\0\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\101\0\0\0\30\0\0\0\30\0\128\0\1\0\0\0\3\0\0\0\0\0\96\102\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\4\6\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\229\0\0\0\30\0\0\0\30\0\128\0\3\0\0\0\3\0\0\0\0\0\120\141\64\3\0\0\0\0\0\32\135\64\3\0\0\0\0\0\16\124\64\0\0\0\0\6\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\11\26\0\0\0\0\1\128\0\64\1\0\0\138\1\0\2\193\1\0\0\1\66\0\0\65\130\0\0\129\194\0\0\162\65\0\2\148\1\0\3\140\1\65\3\28\129\128\1\74\1\0\1\129\65\1\0\193\129\1\0\98\65\0\1\84\1\128\2\76\193\193\2\13\65\1\2\74\1\0\0\84\1\128\2\76\1\194\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\9\0\0\0\3\0\0\0\0\0\192\97\64\3\0\0\0\0\0\144\136\64\3\0\0\0\0\0\160\140\64\3\0\0\0\0\0\192\122\64\3\0\0\0\0\92\14\40\65\3\0\0\0\0\0\64\126\64\3\0\0\0\0\0\128\113\64\3\0\0\0\0\208\146\33\65\3\0\0\0\0\126\174\32\65\0\0\0\0\26\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\111\0\0\0\0\0\25\0\0\0\2\0\0\0\108\0\0\0\0\0\25\0\0\0\2\0\0\0\110\0\0\0\0\0\25\0\0\0\2\0\0\0\101\0\0\0\0\0\25\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\3\5\0\0\0\1\0\0\0\65\64\0\0\129\128\0\0\30\0\0\2\30\0\128\0\3\0\0\0\3\0\0\0\0\0\56\137\64\3\0\0\0\0\0\128\135\64\3\0\0\0\0\0\0\97\64\0\0\0\0\5\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\7\12\0\0\0\0\1\128\0\77\1\64\0\129\65\0\0\28\129\128\1\65\129\0\0\84\1\128\2\77\65\129\129\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\4\0\0\0\3\0\0\0\0\86\155\33\65\3\0\0\0\0\182\207\39\65\4\186\0\0\0\76\117\114\97\112\104\58\32\80\114\111\98\97\98\108\121\32\99\111\110\115\105\100\101\114\101\100\32\116\104\101\32\119\111\114\115\116\32\111\117\116\32\111\102\32\116\104\101\32\116\104\114\101\101\44\32\76\117\114\97\112\104\32\105\115\32\97\110\111\116\104\101\114\32\76\117\97\32\79\98\102\117\115\99\97\116\111\114\46\32\73\116\32\105\115\110\116\32\114\101\109\111\116\101\108\121\32\97\115\32\115\101\99\117\114\101\32\97\115\32\73\114\111\110\98\114\101\119\32\111\114\32\83\121\110\97\112\115\101\32\88\101\110\44\32\97\110\100\32\105\116\32\105\115\110\39\116\32\97\115\32\102\97\115\116\32\97\115\32\73\114\111\110\98\114\101\119\32\101\105\116\104\101\114\46\0\3\0\0\0\0\52\22\36\65\0\0\0\0\12\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\11\0\0\0\2\0\0\0\111\0\0\0\0\0\11\0\0\0\2\0\0\0\101\0\0\0\0\0\11\0\0\0\2\0\0\0\110\0\0\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\4\0\9\24\0\0\0\0\1\128\0\65\1\0\0\84\1\128\2\77\65\129\128\77\65\1\0\138\1\128\0\193\129\0\0\36\2\0\0\28\2\128\0\162\65\0\0\148\1\0\3\140\193\64\3\28\129\128\1\74\1\0\0\164\65\0\0\156\1\128\0\98\65\0\0\84\1\128\2\76\1\193\2\13\65\1\2\137\0\129\1\6\193\0\1\30\1\0\1\30\0\128\0\5\0\0\0\4\41\0\0\0\105\114\111\110\98\114\101\119\32\100\101\111\98\102\117\115\99\97\116\111\114\32\103\111\32\98\114\114\114\114\114\114\114\114\114\114\114\114\114\114\0\3\0\0\0\0\64\234\227\64\3\0\0\0\0\0\176\139\64\3\0\0\0\0\14\8\43\65\3\0\0\0\0\170\76\42\65\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\128\130\64\3\0\0\0\0\0\192\115\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\0\0\2\2\4\0\0\0\1\0\0\0\65\64\0\0\30\0\128\1\30\0\128\0\2\0\0\0\3\0\0\0\0\0\104\137\64\3\0\0\0\0\0\224\134\64\0\0\0\0\4\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\24\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\4\0\0\0\2\0\0\0\108\0\0\0\0\0\23\0\0\0\2\0\0\0\111\0\0\0\0\0\23\0\0\0\2\0\0\0\101\0\0\0\0\0\23\0\0\0\2\0\0\0\110\0\0\0\0\0\23\0\0\0\0\0\0\0\14\3\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\14\0\0\0\2\0\0\0\116\0\1\0\0\0\13\3\0\0\2\0\0\0\101\0\2\0\0\0\13\3\0\0\2\0\0\0\106\0\3\0\0\0\13\3\0\0\2\0\0\0\101\0\4\0\0\0\13\3\0\0\2\0\0\0\73\0\5\0\0\0\13\3\0\0\2\0\0\0\122\0\6\0\0\0\13\3\0\0\2\0\0\0\87\0\7\0\0\0\13\3\0\0\2\0\0\0\72\0\8\0\0\0\13\3\0\0\2\0\0\0\101\0\9\0\0\0\13\3\0\0\2\0\0\0\101\0\10\0\0\0\13\3\0\0\2\0\0\0\101\0\11\0\0\0\13\3\0\0\2\0\0\0\101\0\12\0\0\0\13\3\0\0\2\0\0\0\78\0\13\0\0\0\13\3\0\0\2\0\0\0\65\0\14\0\0\0\13\3\0\0\0\0\0\0')()
local computer = require("computer") local keyboard = require("keyboard") local event, listeners, timers = {}, {}, {} local lastInterrupt = -math.huge local function call(callback, ...) local result, message = pcall(callback, ...) if not result and type(event.onError) == "function" then pcall(event.onError, message) return end return message end local function dispatch(signal, ...) if listeners[signal] then local function callbacks() local list = {} for index, listener in ipairs(listeners[signal]) do list[index] = listener end return list end for _, callback in ipairs(callbacks()) do if call(callback, signal, ...) == false then event.ignore(signal, callback) -- alternative method of removing a listener end end end end local function tick() local function elapsed() local list = {} for id, timer in pairs(timers) do if timer.after <= computer.uptime() then table.insert(list, timer.callback) timer.times = timer.times - 1 if timer.times <= 0 then timers[id] = nil else timer.after = computer.uptime() + timer.interval end end end return list end for _, callback in ipairs(elapsed()) do call(callback) end end local function createPlainFilter(name, ...) local filter = table.pack(...) if name == nil and filter.n == 0 then return nil end return function(...) local signal = table.pack(...) if name and not (type(signal[1]) == "string" and signal[1]:match(name)) then return false end for i = 1, filter.n do if filter[i] ~= nil and filter[i] ~= signal[i + 1] then return false end end return true end end local function createMultipleFilter(...) local filter = table.pack(...) if filter.n == 0 then return nil end return function(...) local signal = table.pack(...) if type(signal[1]) ~= "string" then return false end for i = 1, filter.n do if filter[i] ~= nil and signal[1]:match(filter[i]) then return true end end return false end end ------------------------------------------------------------------------------- function event.cancel(timerId) checkArg(1, timerId, "number") if timers[timerId] then timers[timerId] = nil return true end return false end function event.ignore(name, callback) checkArg(1, name, "string") checkArg(2, callback, "function") if listeners[name] then for i = 1, #listeners[name] do if listeners[name][i] == callback then table.remove(listeners[name], i) if #listeners[name] == 0 then listeners[name] = nil end return true end end end return false end function event.listen(name, callback) checkArg(1, name, "string") checkArg(2, callback, "function") if listeners[name] then for i = 1, #listeners[name] do if listeners[name][i] == callback then return false end end else listeners[name] = {} end table.insert(listeners[name], callback) return true end function event.onError(message) local log = io.open("/tmp/event.log", "a") if log then log:write(message .. "\n") log:close() end end function event.pull(...) local args = table.pack(...) if type(args[1]) == "string" then return event.pullFiltered(createPlainFilter(...)) else checkArg(1, args[1], "number", "nil") checkArg(2, args[2], "string", "nil") return event.pullFiltered(args[1], createPlainFilter(select(2, ...))) end end function event.pullMultiple(...) local seconds local args if type(...) == "number" then seconds = ... args = table.pack(select(2,...)) for i=1,args.n do checkArg(i+1, args[i], "string", "nil") end else args = table.pack(...) for i=1,args.n do checkArg(i, args[i], "string", "nil") end end return event.pullFiltered(seconds, createMultipleFilter(table.unpack(args, 1, args.n))) end function event.pullFiltered(...) local args = table.pack(...) local seconds, filter if type(args[1]) == "function" then filter = args[1] else checkArg(1, args[1], "number", "nil") checkArg(2, args[2], "function", "nil") seconds = args[1] filter = args[2] end local deadline = seconds and (computer.uptime() + seconds) or math.huge repeat local closest = deadline for _, timer in pairs(timers) do closest = math.min(closest, timer.after) end local signal = table.pack(computer.pullSignal(closest - computer.uptime())) if signal.n > 0 then dispatch(table.unpack(signal, 1, signal.n)) end tick() if event.shouldInterrupt() then lastInterrupt = computer.uptime() error("interrupted", 0) end if event.shouldSoftInterrupt() and (filter == nil or filter("interrupted", computer.uptime() - lastInterrupt)) then local awaited = computer.uptime() - lastInterrupt lastInterrupt = computer.uptime() return "interrupted", awaited end if signal.n > 0 then if not (seconds or filter) or filter == nil or filter(table.unpack(signal, 1, signal.n)) then return table.unpack(signal, 1, signal.n) end end until computer.uptime() >= deadline end function event.shouldInterrupt() return computer.uptime() - lastInterrupt > 1 and keyboard.isControlDown() and keyboard.isAltDown() and keyboard.isKeyDown(keyboard.keys.c) end function event.shouldSoftInterrupt() return computer.uptime() - lastInterrupt > 1 and keyboard.isControlDown() and keyboard.isKeyDown(keyboard.keys.c) end function event.timer(interval, callback, times) checkArg(1, interval, "number") checkArg(2, callback, "function") checkArg(3, times, "number", "nil") local id repeat id = math.floor(math.random(1, 0x7FFFFFFF)) until not timers[id] timers[id] = { interval = interval, after = computer.uptime() + interval, callback = callback, times = times or 1 } return id end -- users may expect to find event.push to exist event.push = computer.pushSignal ------------------------------------------------------------------------------- return event
-- Barthalus local NPCID = 90100 function Spellmaster_OnCombat(pUnit, Event) pUnit:SendChatMessage(14, 0, "Who dares disturbing me?") pUnit:RegisterEvent("Spellmaster_Shadowbolt", 8000, 0) pUnit:RegisterEvent("Spellmaster_Fireball", 3000, 0) pUnit:RegisterEvent("Spellmaster_Frostbolt", 10000, 0) pUnit:RegisterEvent("Spellmaster_Charge", 12000, 0) end function Spellmaster_Shadowbolt(pUnit, Event) if(pUnit:GetCurrentSpell() == nil) then pUnit:CastSpellOnTarget(22336, pUnit:GetRandomPlayer(0)) end end function Spellmaster_Fireball(pUnit, Event) if(pUnit:GetCurrentSpell() == nil) then pUnit:FullCastSpellOnTarget(10150, pUnit:GetRandomPlayer(0)) end end function Spellmaster_Frostbolt(pUnit, Event) if(pUnit:GetCurrentSpell() == nil) then pUnit:FullCastSpellOnTarget(10180, pUnit:GetMainTank()) end end function Spellmaster_Charge(pUnit, Event) if(pUnit:GetCurrentSpell() == nil) then pUnit:FullCastSpellOnTarget(26561, pUnit:GetRandomPlayer(0)) end end function Spellmaster_OnLeaveCombat(pUnit, Event) pUnit:SendChatMessage(14, 0, "And another bunch of weaklings that spilled my time") pUnit:RemoveEvents() end function Spellmaster_OnKilledTarget(pUnit, Event) pUnit:SendChatMessage(14, 0, "Thanks for the heal!") pUnit:CastSpell(66053) end function Spellmaster_OnDeath(pUnit, Event) pUnit:SendChatMessage(14, 0, "How have you defeated me? NOOOO!") pUnit:RemoveEvents() end RegisterUnitEvent(NPCID, 1, "Spellmaster_OnCombat") RegisterUnitEvent(NPCID, 2, "Spellmaster_OnLeaveCombat") RegisterUnitEvent(NPCID, 3, "Spellmaster_OnKilledTarget") RegisterUnitEvent(NPCID, 4, "Spellmaster_OnDeath")
local warriorspells = {1180, 201, 196, 198, 202, 197, 199, 227, 200, 266, 264, 5011, 9116} local paladinspells = {201, 196, 198, 202, 197, 199, 200, 9116} local hunterspells = {1180, 201, 196, 198, 202, 197, 266, 264, 5011} local roguespells = {1180, 201, 196, 198, 266, 264, 5011} local priestspells = {1180, 198, 227, 5009} local deathknightspells = {1180, 201, 196, 198, 202, 197, 199} local shamanspells = {1180, 198, 199, 9116} local magespells = {201, 227, 5009, 1180} local warlockspells = {227, 5009, 201, 1180} local druidspells = {227, 198, 1180, 200} function FirstLogin(event, plr) pClass = plr:GetPlayerClass() if pClass == "Warrior" then plr:LearnSpells(warriorspells) plr:AddItem(22416, 1) plr:AddItem(22417, 1) plr:AddItem(22418, 1) plr:AddItem(22419, 1) plr:AddItem(22420, 1) plr:AddItem(22421, 1) plr:AddItem(22422, 1) plr:AddItem(22423, 1) elseif pClass == "Paladin" then plr:LearnSpells(paladinspells) plr:AddItem(22424, 1) plr:AddItem(22425, 1) plr:AddItem(22426, 1) plr:AddItem(22427, 1) plr:AddItem(22428, 1) plr:AddItem(22429, 1) plr:AddItem(22430, 1) plr:AddItem(22431, 1) elseif pClass == "Hunter" then plr:LearnSpells(hunterspells) plr:AddItem(22436, 1) plr:AddItem(22437, 1) plr:AddItem(22438, 1) plr:AddItem(22439, 1) plr:AddItem(22440, 1) plr:AddItem(22441, 1) plr:AddItem(22442, 1) plr:AddItem(22443, 1) elseif pClass == "Rogue" then plr:LearnSpells(roguespells) plr:AddItem(22476, 1) plr:AddItem(22477, 1) plr:AddItem(22478, 1) plr:AddItem(22479, 1) plr:AddItem(22480, 1) plr:AddItem(22481, 1) plr:AddItem(22482, 1) plr:AddItem(22483, 1) elseif pClass == "Priest" then plr:LearnSpells(priestspells) plr:AddItem(22512, 1) plr:AddItem(22513, 1) plr:AddItem(22514, 1) plr:AddItem(22515, 1) plr:AddItem(22516, 1) plr:AddItem(22517, 1) plr:AddItem(22518, 1) plr:AddItem(22519, 1) elseif pClass == "Shaman" then plr:LearnSpells(shamanspells) plr:AddItem(22464, 1) plr:AddItem(22465, 1) plr:AddItem(22466, 1) plr:AddItem(22467, 1) plr:AddItem(22468, 1) plr:AddItem(22469, 1) plr:AddItem(22470, 1) plr:AddItem(22471, 1) elseif pClass == "Mage" then plr:LearnSpells(magespells) plr:AddItem(22496, 1) plr:AddItem(22497, 1) plr:AddItem(22498, 1) plr:AddItem(22499, 1) plr:AddItem(22500, 1) plr:AddItem(22501, 1) plr:AddItem(22502, 1) plr:AddItem(22503, 1) elseif pClass == "Warlock" then plr:LearnSpells(warlockspells) plr:AddItem(22504, 1) plr:AddItem(22505, 1) plr:AddItem(22506, 1) plr:AddItem(22507, 1) plr:AddItem(22508, 1) plr:AddItem(22509, 1) plr:AddItem(22510, 1) plr:AddItem(22511, 1) elseif pClass == "Death Knight" then plr:LearnSpells(deathknightspells) plr:AddItem(38661, 1) plr:AddItem(38663, 1) plr:AddItem(38665, 1) plr:AddItem(38666, 1) plr:AddItem(38667, 1) plr:AddItem(38668, 1) plr:AddItem(38669, 1) plr:AddItem(38670, 1) elseif pClass == "Druid" then plr:LearnSpells(druidspells) plr:AddItem(22488, 1) plr:AddItem(22489, 1) plr:AddItem(22490, 1) plr:AddItem(22491, 1) plr:AddItem(22492, 1) plr:AddItem(22493, 1) plr:AddItem(22494, 1) plr:AddItem(22495, 1) end plr:AdvanceAllSkills(300) plr:SendBroadcastMessage("|cFFFFCC00Welcome to CNA WoW, talk to Chuck before going any further.") plr:SetPhase(2) end RegisterServerHook(3, FirstLogin)
-------------------------------- --- Materials (GENERAL) -------------------------------- local Materials = {} MR.CL.Materials = Materials local materials = { preview = { -- Preview material name = "MatRetPreviewMaterial", material = "MatRetPreviewMaterial", } } -- Networking net.Receive("CL.Materials:SetPreview", function() Materials:SetPreview() end) net.Receive("CL.Materials:SetDetailFixList", function() Materials:SetDetailFixList() end) -- Fix to set details correctely function Materials:SetDetailFixList() local map_data = MR.OpenBSP() if not map_data then print("[Map Retexturizer] Error trying to read the BSP file.") return end local faces = map_data:ReadLumpFaces() local texInfo = map_data:ReadLumpTexInfo() local texData = map_data:ReadLumpTexData() local texDataTranslated = map_data:GetTranslatedTextDataStringTable() local list = { faces = {}, materials = {} } local chunk, current = 1, 1 local chunkSize = 5 local delay = 0 local delayIncrement = 0.04 -- Get all the faces for k,v in pairs(faces) do -- Store the related texinfo index incremented by 1 because Lua tables start with 1 if not list.faces[v.texinfo + 1] then list.faces[v.texinfo + 1] = true end end -- Get the face details for k,v in pairs(list.faces) do -- Get the material name from the texdata inside the texinfo local material = string.lower(texDataTranslated[texData[texInfo[k].texdata + 1].nameStringTableID + 1]) -- More increments to adjust C tables to Lua -- Create the chunk if not list.materials[chunk] then list.materials[chunk] = {} end -- Register the material detail in the chunk if not list.materials[chunk][material] then list.materials[chunk][material] = MR.Materials:GetDetail(material) if current == chunk * chunkSize then chunk = chunk + 1 end current = current + 1 end end local message = "[Map Retexturizer] List of map material details built and saved." if GetConVar("mr_notifications"):GetBool() then LocalPlayer():PrintMessage(HUD_PRINTTALK, message) else print(message) end -- Send the detail chunks to the server for _,currentChunk in pairs(list.materials) do timer.Simple(delay, function() net.Start("SV.Materials:SetDetailFixList") net.WriteTable(currentChunk) net.SendToServer() end) delay = delay + delayIncrement end end function Materials:GetPreviewName() return materials.preview.name end function Materials:GetPreviewMaterial() return materials.preview.material end function Materials:SetPreviewMaterial(value) materials.preview.material = value end -- Set a broadcasted material as (in)valid -- Returns the material path if it's valid or a custom missing texture if it's invalid function Materials:ValidateReceived(material) material = MR.Materials:FixCurrentPath(material) if MR.Materials:IsValid(material) == nil then MR.Materials:Validate(material) end if not MR.Materials:IsValid(material) and not MR.Materials:IsSkybox(material) then return MR.Materials:GetMissing() end return material end -- Create a material if it doesn't exist -- NOTE: change the created material using the returned variable, don't try to get it using Material(name or path)!!! function Materials:Create(name, matType, path) if not Material(name) or Material(name):IsError() then return CreateMaterial(name, matType or "LightmappedGeneric", { ["$basetexture"] = name or path }) else return Material(name) end end -- Set material preview Data -- use newData to force a specific material preview function Materials:SetPreview(newData) local ply = LocalPlayer() local isDecal = MR.Ply:GetDecalMode(ply) or newData and MR.Materials:IsDecal(newData.oldMaterial, ply:GetEyeTrace()) local oldData = MR.Data:CreateFromMaterial(Materials:GetPreviewName(), nil, nil, isDecal, true) newData = newData or MR.Data:Create(ply, { oldMaterial = Materials:GetPreviewName() }, isDecal and {}, true) -- Get the current preview image oldData.newMaterial = Materials:GetPreviewMaterial() -- Adjustments for skybox materials if MR.Materials:IsFullSkybox(newData.newMaterial) then newData.newMaterial = MR.Skybox:SetSuffix(newData.newMaterial) -- Don't apply bad materials elseif not MR.Materials:Validate(newData.newMaterial) then newData.newMaterial = MR.Materials:GetMissing() end -- Adjustments for decal materials if isDecal then newData.oldMaterial = oldData.oldMaterial newData.scaleX = 1 newData.scaleY = 1 end -- Update the material if necessary if not MR.Data:IsEqual(oldData, newData) then newData.newMaterial = MR.Materials:FixCurrentPath(newData.newMaterial) Materials:SetPreviewMaterial(newData.newMaterial) MR.CL.Panels:RefreshPreviews() MR.CL.Materials:Apply(newData) end end -- Apply the changes of a Data table function Materials:Apply(data) if not data then return end -- Get the material to be modified local oldMaterial = MR.CustomMaterials:StringToID(data.oldMaterial) or Material(data.oldMaterial) if not oldMaterial then return end local newMaterial = data.newMaterial and (MR.CustomMaterials:StringToID(data.newMaterial) or Material(data.newMaterial)) local newMaterial2 = data.newMaterial2 and (MR.CustomMaterials:StringToID(data.newMaterial2) or Material(data.newMaterial2)) -- Change the texture if newMaterial and newMaterial:GetTexture("$basetexture") then oldMaterial:SetTexture("$basetexture", newMaterial:GetTexture("$basetexture")) end -- Change the second texture (displacements only) if newMaterial2 and newMaterial2:GetTexture("$basetexture") then oldMaterial:SetTexture("$basetexture2", newMaterial2:GetTexture("$basetexture")) end -- Change the alpha channel if data.alpha then oldMaterial:SetString("$translucent", "1") oldMaterial:SetString("$alpha", data.alpha) end -- Change the matrix local textureMatrix = oldMaterial:GetMatrix("$basetexturetransform") local matrixChanged = false if textureMatrix and data.rotation then textureMatrix:SetAngles(Angle(0, data.rotation, 0)) matrixChanged = true end if textureMatrix and (data.scaleX or data.scaleY) then textureMatrix:SetScale(Vector(1/(data.scaleX or 1), 1/(data.scaleY or 1), 1)) if not matrixChanged then matrixChanged = true; end end if textureMatrix and (data.offsetX or data.offsetY) then textureMatrix:SetTranslation(Vector(data.offsetX or 0, data.offsetY or 0)) if not matrixChanged then matrixChanged = true; end end if matrixChanged then oldMaterial:SetMatrix("$basetexturetransform", textureMatrix) end -- Change the detail if data.detail and MR.Materials:GetDetailList()[data.detail] and data.detail ~= "None" then oldMaterial:SetTexture("$detail", MR.Materials:GetDetailList()[data.detail]:GetTexture("$basetexture")) oldMaterial:SetString("$detailblendfactor", "1") elseif oldMaterial:GetString("$detail") and oldMaterial:GetString("$detail") ~= "" then oldMaterial:SetString("$detailblendfactor", "0") oldMaterial:SetString("$detail", "") oldMaterial:Recompute() end --[[ -- Old tests that I want to keep here local material = { ["$basetexture"] = "", ["$vertexalpha"] = 0, ["$vertexcolor"] = 1, } -- Try to apply Bumpmap () local bumpmappath = data.newMaterial .. "_normal" local bumpmap = Material(data.newMaterial):GetTexture("$bumpmap") if file.Exists("materials/"..bumpmappath..".vtf", "GAME") then if not model.list[bumpmappath] then -- Note: it's the old customMaterial system. Update to test. model.list[bumpmappath] = MR.CL.Materials:Create(bumpmappath) end newMaterial:SetTexture("$bumpmap", model.list[bumpmappath]:GetTexture("$basetexture")) elseif bumpmap then newMaterial:SetTexture("$bumpmap", bumpmap) end mapMaterial:SetTexture("$bumpmap", Material(data.newMaterial):GetTexture("$basetexture")) mapMaterial:SetString("$nodiffusebumplighting", "1") mapMaterial:SetString("$normalmapalphaenvmapmask", "1") mapMaterial:SetVector("$color", Vector(100,100,0)) mapMaterial:SetString("$surfaceprop", "Metal") mapMaterial:SetTexture("$detail", Material(data.oldMaterial):GetTexture("$basetexture")) mapMaterial:SetMatrix("$detailtexturetransform", textureMatrix) mapMaterial:SetString("$detailblendfactor", "0.2") mapMaterial:SetString("$detailblendmode", "3") -- Support for non vmt files if not newMaterial:IsError() then -- If the file is a .vmt oldMaterial:SetTexture("$basetexture", newMaterial:GetTexture("$basetexture")) else oldMaterial:SetTexture("$basetexture", data.newMaterial) end ]] end
createObject(9931, 885.12103271484, -1106.3221435547, 2086.5666503906, 0, 0, 180, 0, 369) createObject(9931, 792.41278076172, -1106.4708251953, 2088.7473144531, 0, 0, 180, 0, 369) createObject(9931, 846.88623046875, -1072.3342285156, 2088.7473144531, 0, 0, 89.999938964844, 0, 369) createObject(9931, 846.88623046875, -1140.4223632813, 2088.7473144531, 0, 0, 270, 0, 369) createObject(9931, 807.84759521484, -1075.0698242188, 2088.7473144531, 0, 0, 180, 0, 369) createObject(9931, 807.68304443359, -1137.8145751953, 2088.7473144531, 0, 0, 180, 0, 369) createObject(9931, 846.88623046875, -1099.7844238281, 2102.4130859375, 0, 252.13500976563, 270, 0, 369) createObject(9931, 846.78698730469, -1112.9709472656, 2102.4458007813, 0, 252.13488769531, 89.999969482422, 0, 369) createObject(9931, 831.97863769531, -1090.0203857422, 2102.4130859375, 0, 252.13488769531, 180, 0, 369) createObject(9931, 815.39929199219, -1081.3963623047, 2102.4130859375, 0, 252.13488769531, 0, 0, 369) createObject(9931, 831.97607421875, -1123.0535888672, 2102.4130859375, 0, 252.13488769531, 180, 0, 369) createObject(9931, 815.39929199219, -1131.3321533203, 2102.4130859375, 0, 252.13488769531, 0, 0, 369) createObject(9931, 811.76379394531, -1106.2510986328, 2099.8540039063, 0, 240.22485351563, 0, 0, 369) createObject(3997, 789.39288330078, -1107.7286376953, 2072.1804199219, 0, 0, 0, 0, 369) createObject(5426, 786.79327392578, -1072.8515625, 2050.9304199219, 0, 0, 270, 0, 369) createObject(8131, 830.64416503906, -1106.5252685547, 2091.3630371094, 0, 180, 89.729614257813, 0, 369) createObject(5715, 834.01403808594, -1121.3942871094, 2077.2124023438, 0, 0, 0, 0, 369) createObject(5714, 688.56988525391, -1148.9555664063, 2073.0676269531, 0, 0, 0, 0, 369) createObject(16410, 859.19616699219, -1105.9786376953, 2072.0395507813, 2.9759826660156, 359.50396728516, 359.00793457031, 0, 369) createObject(14629, 852.90698242188, -1106.3513183594, 2085.3427734375, 0, 0, 0, 0, 369) createObject(14629, 823.12127685547, -1098.5317382813, 2085.5744628906, 0, 0, 0, 0, 369) createObject(3462, 827.38854980469, -1120.3333740234, 2073.1489257813, 0, 0, 270.26989746094, 0, 369) createObject(3462, 827.80120849609, -1092.2663574219, 2073.1489257813, 0, 0, 90.809692382813, 0, 369) createObject(9114, 867.23876953125, -1102.8967285156, 2087.8874511719, 0, 180, 89.999969482422, 0, 369) createObject(9918, 806.58129882813, -1106.8134765625, 2092.1447753906, 0, 0, 270, 0, 369) createObject(5715, 834.01403808594, -1123.1276855469, 2077.2124023438, 0, 0, 0, 0, 369) createObject(5715, 834.01403808594, -1119.6949462891, 2077.2124023438, 0, 0, 0, 0, 369) createObject(3462, 817.82006835938, -1112.990234375, 2074.4465332031, 0, 0, 180.53955078125, 0, 369) createObject(3462, 817.82006835938, -1100.0882568359, 2074.4465332031, 0, 0, 180.53948974609, 0, 369) createObject(9918, 876.01428222656, -1106.4703369141, 2090.4270019531, 0, 0, 89.999969482422, 0, 369) createObject(5715, 873.32586669922, -1096.9279785156, 2077.4594726563, 0, 0, 89.999969482422, 0, 369) createObject(5715, 873.32586669922, -1104.2729492188, 2077.4594726563, 0, 0, 89.999938964844, 0, 369) createObject(16410, 859.19616699219, -1113.4233398438, 2072.0395507813, 2.9759826660156, 359.50396728516, 359.00793457031, 0, 369) createObject(1280, 855.10369873047, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 852.6748046875, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 850.31378173828, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 847.853515625, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 845.44287109375, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 842.63653564453, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 839.94512939453, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 837.46789550781, -1110.2906494141, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 837.46789550781, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 839.94512939453, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 842.69000244141, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 845.60070800781, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 847.94732666016, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 850.29522705078, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 852.67321777344, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 855.20007324219, -1103.5391845703, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 854.70385742188, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 852.20837402344, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 849.81213378906, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 847.41589355469, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 845.00140380859, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 842.12719726563, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 839.43450927734, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 836.74182128906, -1099.9230957031, 2072.5817871094, 0, 0, 19.940002441406, 0, 369) createObject(1280, 837.07092285156, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 839.49725341797, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 842.18865966797, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 845.0458984375, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 847.40692138672, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 849.91680908203, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 852.32745361328, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 854.70544433594, -1113.5661621094, 2072.5817871094, 0, 0, 344.1201171875, 0, 369) createObject(1280, 829.5556640625, -1094.9548339844, 2072.5817871094, 0, 0, 0, 0, 369) createObject(1280, 829.5556640625, -1118.2194824219, 2072.5817871094, 0, 0, 0, 0, 369) createObject(2869, 828.08612060547, -1104.9151611328, 2073.2023925781, 0, 0, 0, 0, 369) createObject(2869, 828.08612060547, -1108.3813476563, 2073.2023925781, 0, 0, 270.26989746094, 0, 369) createObject(2842, 827.54046630859, -1106.1378173828, 2073.2023925781, 0, 0, 270.26989746094, 0, 369) createObject(2842, 827.54046630859, -1104.4700927734, 2073.2023925781, 0, 0, 270.26989746094, 0, 369) createObject(2842, 827.54046630859, -1107.8538818359, 2073.2023925781, 0, 0, 270.26989746094, 0, 369) createObject(2842, 827.54046630859, -1109.2576904297, 2072.8388671875, 0, 89.999938964844, 270.26989746094, 0, 369) createObject(2842, 828.56555175781, -1104.0921630859, 2072.8388671875, 0, 89.999938964844, 89.999969482422, 0, 369) createObject(2894, 827.43548583984, -1106.6663818359, 2073.2189941406, 0, 0, 270.26989746094, 0, 369) createObject(3997, 789.39288330078, -1161.1068115234, 2046.8664550781, 0, 0, 0, 0, 369) createObject(6232, 778.95745849609, -1155.5374755859, 2051.2756347656, 0, 0, 269.77380371094, 0, 369) createObject(3494, 793.38977050781, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(6232, 758.21759033203, -1155.5374755859, 2051.2756347656, 0, 0, 269.77380371094, 0, 369) createObject(9918, 732.177734375, -1155.3081054688, 2064.6335449219, 0, 0, 179.72979736328, 0, 369) createObject(9918, 824.90118408203, -1155.3081054688, 2064.6335449219, 0, 0, 0.26971435546875, 0, 369) createObject(3494, 787.04461669922, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 781.70629882813, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 775.79461669922, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 769.88165283203, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 764.34869384766, -1150.0817871094, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 764.34869384766, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 769.78369140625, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 775.51641845703, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 781.64227294922, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 787.10864257813, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(3494, 793.36767578125, -1160.0032958984, 2050.8801269531, 0, 0, 0, 0, 369) createObject(5715, 786.38806152344, -1145.2359619141, 2056.4406738281, 0, 0, 0, 0, 369) createObject(5713, 758.11846923828, -1160.4165039063, 2052.3029785156, 0, 0, 0, 0, 369) createObject(4569, 738.0390625, -1155.7216796875, 2060.931640625, 0, 0, 180.53833007813, 0, 369) createObject(4569, 883.2080078125, -1105.958984375, 2086.1884765625, 0, 0, 359.99450683594, 0, 369) createObject(1506, 861.86059570313, -1114.7567138672, 2072.1804199219, 0, 0, 0, 0, 369) createObject(1506, 861.86059570313, -1098.0366210938, 2072.1804199219, 0, 0, 0, 0, 369) createObject(4569, 789.83074951172, -1155.0456542969, 2071.7106933594, 0, 0, 1.3035888671875, 0, 369)
class("TimeSynchronizationCommand", pm.SimpleCommand).execute = function (slot0, slot1) pg.TimeMgr.GetInstance():SetServerTime(slot1:getBody().timestamp, slot1.getBody().monday_0oclock_timestamp) getProxy(BuildShipProxy).setBuildShipState(slot3) if getProxy(PlayerProxy):getData() then slot4:flushTimesListener() end slot5, slot6 = slot3:getExChangeItemInfo() if slot5 and slot6 then slot3:addExChangeItemTimer() end if getProxy(MilitaryExerciseProxy):getSeasonInfo() then slot7:addRefreshCountTimer() slot7:addSeasonOverTimer() end end return class("TimeSynchronizationCommand", pm.SimpleCommand)
paradeSlot("tai_mothership",{ 1500, 1000, -1800, },{ 0, 0, 1, },{ 0, 1, 0, },1300) paradeSlot("tai_shipyard",{ 1500, 1000, -1800, },{ 0, 0, 1, },{ 0, 1, 0, },1300) paradeSlot("TAI_Scout",{ -410, -183, 1664, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_Interceptor",{ -410, -143, 1476, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_AttackBomber",{ -410, -113, 1235, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_defensefighter",{ -410, -83, 1081, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_heavydefender",{ -410, -213, 1944, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_lightcorvette",{ -9, -490, 1796, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_heavycorvette",{ -8, -440, 1575, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_multiguncorvette",{ -4, -390, 1349, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_repaircorvette",{ 269, -290, 890, },{ 0, 0, 1, },{ 1, 0, 0, },0) paradeSlot("TAI_salcapcorvette",{ -17, -290, 890, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_MinelayerCorvette",{ -14, -340, 1126, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_standardfrigate",{ 283, -675, 1520, },{ 0, 0, 1, },{ 1, 0, 0, },0) paradeSlot("TAI_supportfrigate",{ -272, -552, 762, },{ 0, 0, 1, },{ 1, 0, 0, },0) paradeSlot("TAI_defensefrigate",{ -272, -758, 935, },{ 0, 0, 1, },{ 1, 0, 0, },0) paradeSlot("TAI_ioncannonfrigate",{ 246, -550, 1164, },{ 0, 0, 1, },{ 1, 0, 0, },0) paradeSlot("TAI_Carrier",{ 900, -1150, 200, },{ 0, 0, 1, },{ 1, 0, 0, },800) paradeSlot("TAI_Destroyer",{ 392, -817, 2008, },{ 0, 0, 1, },{ 1, 0, 0, },300) paradeSlot("TAI_missiledestroyer",{ 392, -386, 2008, },{ 0, 0, 1, },{ 1, 0, 0, },300) paradeSlot("TAI_heavycruiser",{ -900, -1150, 100, },{ 0, 0, 1, },{ -1, 0, 0, },500) paradeSlot("TAI_researchship",{ -1450, 210, -326, },{ 0, 0, 1, },{ 0, 1, 0, },0) paradeSlot("tai_researchstation",{ -1830, 100, -840, },{ 0, 0, 1, },{ 0, 1, 0, },0) paradeSlot("TAI_cloakgenerator",{ -1455, 52, 102, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_gravwellgenerator",{ -1445, 113, -197, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_ResourceCollector",{ -1500, 0, 810, },{ 0, 0, 1, },{ -1, 0, 0, },200) paradeSlot("TAI_ResourceController",{ -1504, 192, 1144, },{ 0, 0, 1, },{ -1, 0, 0, },300) paradeSlot("TAI_Probe",{ -1428, 0, -169, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_proximitysensor",{ -1428, 0, 480, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("TAI_sensorarray",{ -1640, 0, 0, },{ 0, 0, 1, },{ -1, 0, 0, },0) paradeSlot("misc",{ 1700, 600, -650, },{ 0, 0, 1, },{ 1, 0, 0, },1000)
-- Example shows compatibility with raysan5 and robloach's bindings -- It also can run in TSnake41's and Alexander Matz's bindings -- Remove linking when you run this code in other bindings and uncomment line below -- if not (type(rl) == "table" or type(rl) == "userdata") then setmetatable(_G, { __index = rl }) end local rl = require("raylib") local screenWidth = 800 local screenHeight = 450 InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window") SetTargetFPS(60) while not WindowShouldClose() do BeginDrawing() ClearBackground(RAYWHITE) DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY) EndDrawing() end CloseWindow()
local holeWidth = 5 local height = 4 local lend = false function forward() while turtle.detect() do turtle.dig() end while turtle.attack() do end turtle.forward() end function selectItem(name) for i=1,16 do turtle.select(i) local data = turtle.getItemDetail() if data and data.name == name then return end end end function doHeight() for i=1,(height - 1) do if turtle.detectUp() then turtle.digUp() end turtle.up() end for i=1,(height - 1) do turtle.down() end end function goDown() local success, data = turtle.inspectDown() if success and data.name == "minecraft:bedrock" then lend = true print("hit bedrock") elseif turtle.detectDown() then turtle.digDown() turtle.down() else turtle.down() end end while not lend do for i=1,holeWidth do if not lend then doHeight() forward() turtle.turnRight() turtle.turnRight() selectItem("minecraft:oak_stairs") turtle.place() turtle.turnLeft() turtle.turnLeft() goDown() end end if not lend then doHeight() forward() turtle.turnRight() turtle.turnRight() selectItem("minecraft:oak_stairs") turtle.place() turtle.turnLeft() turtle.turnLeft() for i=1,3 do doHeight() turtle.turnRight() for j=1,holeWidth+1 do forward() doHeight() end end turtle.turnRight() end end
data:extend({ { type = "int-setting", name = "request-scanner_update_interval", order = "aa", setting_type = "runtime-global", default_value = 120, minimum_value = 1, maximum_value = 216000, -- 1h }, { type = "int-setting", name = "request-scanner_max_results", order = "ab", setting_type = "runtime-global", default_value = 1000, minimum_value = 0, }, { type = "int-setting", name = "request-scanner_networkID", order = "ac", setting_type = "runtime-global", default_value = 0, minimum_value = 0, maximum_value = 50 }, { type = "bool-setting", name = "request-scanner-negative-output", order = "ba", setting_type = "runtime-global", default_value = false, }, { type = "bool-setting", name = "request-scanner-round2stack", order = "ba", setting_type = "runtime-global", default_value = false, }, })
if AkDebugLoad then print("[#Start] Loading ak.road.TramSwitch ...") end local TramSwitch = {} --- Registriert eine neue Strassenbahnweiche und schaltet das Licht der angegeben Immobilien anhand der Weichenstellung -- @param switchId ID der Weiche ---@param structure1 string Immobilie, deren Licht bei Weichenstellung 1 leuchten soll ---@param structure2 string Immobilie, deren Licht bei Weichenstellung 2 leuchten soll ---@param structure3 string Immobilie, deren Licht bei Weichenstellung 3 leuchten soll -- function TramSwitch.new(switchId, structure1, structure2, structure3) EEPRegisterSwitch(switchId) _G["EEPOnSwitch_" .. switchId] = function(_) local currentPosition = EEPGetSwitch(switchId) if structure1 then EEPStructureSetLight(structure1, currentPosition == 1) end if structure2 then EEPStructureSetLight(structure2, currentPosition == 2) end if structure3 then EEPStructureSetLight(structure3, currentPosition == 3) end end _G["EEPOnSwitch_" .. switchId]() end return TramSwitch
local Impl = {} Impl.chara_drop = require("impl/chara_drop.lua") Impl.God = require("impl/god.lua") Impl.shop_inventory = require("impl/shop_inventory.lua") Impl.show_dialog = require("impl/show_dialog.lua") Impl.Blending = require("impl/blending.lua") ELONA.api:add { Impl = Impl, }
local ffi = require('ffi') local class = require('../class') local constants = require('../constants') local format = string.format local abs, sqrt, min = math.abs, math.sqrt, math.min local DIAGONAL_DIFF = constants.DIAGONAL_DIFF local Vector3 = class('Vector3') ffi.cdef[[ typedef struct { float x, y, z; } Vector3; ]] function Vector3:__tostring() return format("Vector3(%g, %g, %g)", self.x, self.y, self.z) end function Vector3:componentDistance(other) local dx = abs(other.x - self.x) local dy = abs(other.y - self.y) local dz = abs(other.z - self.z) return dx, dy, dz end function Vector3:componentDistance2D(other) local dx = abs(other.x - self.x) local dz = abs(other.z - self.z) return dx, dz end function Vector3:manhattanDistance(other) local dx, dy, dz = self:componentDistance(other) return dx + dy + dz end function Vector3:manhattanDistance2D(other) local dx, dz = self:componentDistance2D(other) return dx + dz end function Vector3:diagonalDistance(other) local dx, dy, dz = self:componentDistance(other) return dx + dy + dz - DIAGONAL_DIFF * min(dx, dy, dz) end function Vector3:diagonalDistance2D(other) local dx, dz = self:componentDistance(other) return dx + dz - DIAGONAL_DIFF * min(dx, dz) end function Vector3:euclideanDistanceSquared(other) local dx, dy, dz = self:componentDistance(other) return dx^2 + dy^2 + dz^2 end function Vector3:euclideanDistanceSquared2D(other) local dx, dy = self:componentDistance2D(other) return dx^2 + dz^2 end function Vector3:euclideanDistance(other) return sqrt(self:euclideanDistanceSquared(other)) end function Vector3:euclideanDistance2D(other) return sqrt(self:euclideanDistanceSquared2D(other)) end ffi.metatype('Vector3', Vector3) return Vector3
object_tangible_loot_creature_loot_collections_space_engine_mark_05_cygnus = object_tangible_loot_creature_loot_collections_space_shared_engine_mark_05_cygnus:new { } ObjectTemplates:addTemplate(object_tangible_loot_creature_loot_collections_space_engine_mark_05_cygnus, "object/tangible/loot/creature/loot/collections/space/engine_mark_05_cygnus.iff")
local BaseDao = require "kong.dao.cassandra.base_dao" local utils = require "kong.tools.utils" local SCHEMA = { primary_key = {"id"}, fields = { id = {type = "id", dao_insert_value = true}, created_at = {type = "timestamp", dao_insert_value = true}, consumer_id = {type = "id", required = true, queryable = true, foreign = "consumers:id"}, key = {type = "string", unique = true, queryable = true, default = utils.random_string}, secret = {type = "string", unique = true, default = utils.random_string} } } local Jwt = BaseDao:extend() function Jwt:new(properties) self._table = "jwt_secrets" self._schema = SCHEMA Jwt.super.new(self, properties) end return {jwt_secrets = Jwt}
--[[ GD50 Legend of Zelda Author: Colton Ogden cogden@cs50.harvard.edu ]] Projectile = Class{} function Projectile:init(def, x, y) -- string identifying this object type self.type = def.type self.texture = def.texture self.frame = def.frame or 1 -- whether it acts as an obstacle or not self.solid = def.solid self.defaultState = def.defaultState self.state = self.defaultState self.states = def.states -- dimensions self.x = x self.y = y self.width = def.width self.height = def.height self.thrown = false self.room = def.room self.remove = false self.crashed = false -- default empty collision callback self.onCollide = def.onCollide or function() end self.follow = def.follow or function() end self.counter = 0 self.counter2 = 0 self.counter3 = 0 self.thrown_speed = 2 end function Projectile:update(dt) self.counter2 = self.counter2 + dt -- Crash after 4 tiles if not self.thrown then self.x = self.room.player.x self.y = self.room.player.y - 12 elseif self.direction_thrown == 'right' and self.counter < 4 *TILE_SIZE + 1 and not self.crashed then self.x = self.x + self.thrown_speed self.counter = self.counter + self.thrown_speed elseif self.direction_thrown == 'left' and self.counter < 4 *TILE_SIZE + 1 and not self.crashed then self.x = self.x - self.thrown_speed self.counter = self.counter + self.thrown_speed elseif self.direction_thrown == 'up' and self.counter < 4 *TILE_SIZE + 1 and not self.crashed then self.y = self.y - self.thrown_speed self.counter = self.counter + self.thrown_speed elseif self.direction_thrown == 'down' and self.counter < 4 *TILE_SIZE + 1 and not self.crashed then self.y = self.y + self.thrown_speed self.counter = self.counter + self.thrown_speed else self.crashed = true end -- boundary checking on all sides, allowing us to avoid collision detection on tiles if self.x <= MAP_RENDER_OFFSET_X + TILE_SIZE then self.crashed = true end if self.x + self.width >= VIRTUAL_WIDTH - TILE_SIZE * 2 then self.crashed = true end if self.y <= MAP_RENDER_OFFSET_Y + TILE_SIZE - self.height / 2 then self.crashed = true end local bottomEdge = VIRTUAL_HEIGHT - (VIRTUAL_HEIGHT - MAP_HEIGHT * TILE_SIZE) + MAP_RENDER_OFFSET_Y - TILE_SIZE if self.y + self.height >= bottomEdge then self.crashed = true end if self.crashed and self.thrown then self.counter3 = self.counter3 + dt self.state = 'shattered' if self.counter3 > 1.5 then self.remove = true end end if self.thrown and not self.crashed then hitboxWidth = 11 hitboxHeight = 11 if self.direction_thrown == 'left' then hitboxX = self.x - hitboxWidth hitboxY = self.y + 2 elseif self.direction_thrown == 'right' then hitboxX = self.x + self.width hitboxY = self.y + 2 elseif self.direction_thrown == 'up' then hitboxX = self.x hitboxY = self.y - hitboxHeight else hitboxX = self.x hitboxY = self.y + self.height end self.potHitbox = Hitbox(hitboxX, hitboxY, hitboxWidth, hitboxHeight) for k, entity in pairs(self.room.entities) do if entity:collides(self.potHitbox) then entity:damage(1) gSounds['hit-enemy']:play() end end end if love.keyboard.isDown('return') and self.counter2 > 1 then self:throw(self.room.player.direction) end end function Projectile:throw(direction) self.thrown = true self.room.player.carrying = false self.direction_thrown = direction self.room.player:changeState('idle') gSounds['sword']:play() end function Projectile:render(adjacentOffsetX, adjacentOffsetY) love.graphics.draw(gTextures[self.texture], gFrames[self.texture][self.states[self.state].frame or self.frame], self.x + adjacentOffsetX, self.y + adjacentOffsetY) end
wisp = {} wisp.wisps = {} wisp.jars = {} ----------------- -- Mod Storage -- ----------------- local mod_storage = minetest.get_mod_storage() local data = { wisps = minetest.deserialize(mod_storage:get_string("wisps")) or {}, jars = minetest.deserialize(mod_storage:get_string("jars")) or {}, } local function save() mod_storage:set_string("wisps", minetest.serialize(data.wisps)) mod_storage:set_string("jars", minetest.serialize(data.jars)) end minetest.register_on_shutdown(save) minetest.register_on_leaveplayer(save) local function periodic_save() save() minetest.after(120, periodic_save) end minetest.after(120, periodic_save) wisp.wisps = data.wisps wisp.jars = data.jars ---------- -- Math -- ---------- local random = math.random local abs = math.abs local function interp(a, b, w) return a + (b - a) * w end local function wisp_visual(pos, color) local random_vel = { x = random(-1, 1), y = -1, z = random(-1, 1) } local random_offset = { x = pos.x + (random(-1, 1) * 0.1), y = pos.y + (random(-1, 1) * 0.1), z = pos.z + (random(-1, 1) * 0.1) } minetest.add_particle({ pos = random_offset, velocity = random_vel, acceleration = { x = 0, y = random(6, 8), z = 0, }, expirationtime = 0.1, size = random(3, 5), texture = "wisp_".. color .. ".png", glow = 6 }) end local function wisped_effect(pos, color) minetest.add_particlespawner({ amount = 2, time = 0.1, minpos = vector.subtract(pos, 0.5), maxpos = vector.add(pos, 0.5), minvel = { x = -0.5, y = 0.5, z = -0.5 }, maxvel = { x = 0.5, y = 1, z = 0.5 }, minacc = { x = 0, y = 2, z = 0 }, maxacc = { x = 0, y = 4, z = 0 }, minexptime = 0.5, maxexptime = 1, minsize = 1, maxsize = 2, collisiondetection = false, texture = "wisp_" .. color .. "_particle.png", glow = 6 }) end --------- -- API -- --------- local wisp_colors = { "red", "green", "blue", } local function create_wisp(pos, color) local wisp_color = color if not color or string.len(color) == 0 then wisp_color = wisp_colors[random(3)] end local wisp_d = { pos = pos, new_pos = pos, self_dtime = 0, lifetime = 0, color = wisp_color } table.insert(wisp.wisps, wisp_d) end minetest.register_chatcommand("add_wisp", { params = "<color>", description = "Spawns a Wisp", privs = {server = true}, func = function(name, color) local pos = minetest.get_player_by_name(name):get_pos() create_wisp(pos, color) end, }) minetest.register_chatcommand("clear_wisps", { params = "<color>", description = "Clears Wisps", privs = {server = true}, func = function(name, color) wisp.wisps = {} end, }) minetest.register_globalstep(function(dtime) for i = 1, #wisp.wisps do local c_wisp = wisp.wisps[i] if not c_wisp then return end local pos = c_wisp.pos local color = c_wisp.color local lifetime = c_wisp.lifetime or 0 local self_dtime = c_wisp.self_dtime or 0 local move_time = c_wisp.move_time or 0 lifetime = lifetime + dtime wisp_visual(pos, color) c_wisp.self_dtime = self_dtime + dtime if self_dtime > 0.1 then -- Movement move_time = move_time + 0.1 if move_time > 2 then if random(3) > 1 then local new_pos = vector.add(pos, random(-3, 3)) if minetest.get_node(new_pos).name == "air" then c_wisp.new_pos = new_pos end else move_time = 0 end end if vector.distance(pos, c_wisp.new_pos) > 0.2 then c_wisp.pos = { x = interp(pos.x, c_wisp.new_pos.x, 0.05), y = interp(pos.y, c_wisp.new_pos.y, 0.05), z = interp(pos.z, c_wisp.new_pos.z, 0.05) } end -- Left-click detection local objects = minetest.get_objects_inside_radius(pos, 6) for n = 1, #objects do local obj = objects[n] if obj and obj:is_player() then local p_pos = obj:get_pos() p_pos.y = p_pos.y + 1.4 local dir = vector.direction(p_pos, pos) local flee_dir = { x = dir.x, y = random(-1, 1), z = dir.z } c_wisp.new_pos = vector.add(pos, flee_dir) if obj:get_player_control().LMB and obj:get_wielded_item():get_name() == "wisp:jar" then local look_dir = obj:get_look_dir() if math.abs(vector.length(vector.subtract(dir, look_dir))) < 0.1 then obj:set_wielded_item("wisp:jar_" .. color) table.remove(wisp.wisps, i) end end end end self_dtime = 0 end if lifetime > 60 then table.remove(wisp.wisps, i) end end for i = 1, #wisp.jars do if not wisp.jars[i] then return end local pos = wisp.jars[i].pos if minetest.get_node(pos).name == "ignore" or minetest.get_node(pos).name:match("^wisp:jar_") then local color = wisp.jars[i].color wisp_visual(pos, color) if color == "green" and random(256) < 2 then local nodes = minetest.find_nodes_in_area_under_air(vector.subtract(pos, 5), vector.add(pos, 5), {"group:grass", "group:plant", "group:flora"}) if #nodes > 0 then for n = 1, #nodes do grow_crops(nodes[n], minetest.get_node(nodes[n]).name) end end end if color == "blue" and random(64) < 2 then local nodes = minetest.find_nodes_in_area_under_air(vector.subtract(pos, 5), vector.add(pos, 5), "group:fire") if #nodes > 0 then for n = 1, #nodes do minetest.remove_node(nodes[n]) wisped_effect(nodes[n], color) end end end if color == "red" and random(64) < 2 then local nodes = minetest.find_nodes_in_area_under_air(vector.subtract(pos, 5), vector.add(pos, 5), {"group:grass", "group:plant", "group:flora"}) if #nodes > 0 then for n = 1, #nodes do minetest.remove_node(nodes[n]) wisped_effect(nodes[n], color) end end end else table.remove(wisp.jars, i) end end end) minetest.register_abm({ label = "wisp:spawning", nodenames = {"group:tree"}, neighbors = {"air"}, interval = 120, chance = 512, action = function(pos) create_wisp(vector.add(pos, random(-3, 3))) end }) ----------- -- Nodes -- ----------- minetest.register_node("wisp:jar", { description = "Jar", inventory_image = "wisp_jar_inv.png", wield_image = "wisp_jar_inv.png", drawtype = "mesh", mesh = "wisp_jar.obj", tiles = {"wisp_jar.png"}, paramtype = "light", sunlight_propagates = true, selection_box = { type = "fixed", fixed = {-0.315, -0.5, -0.315, 0.315, 0.265, 0.315}, }, collision_box = { type = "fixed", fixed = {-0.315, -0.5, -0.315, 0.315, 0.265, 0.315}, }, groups = {cracky = 1, oddly_breakable_by_hand = 2}, stack_max = 1 }) for i = 1, 3 do local color = wisp_colors[i] minetest.register_node("wisp:jar_" .. color, { description = "Jar with " .. color .. " Wisp", inventory_image = "wisp_jar_" .. color .. "_inv.png", wield_image = "wisp_jar_" .. color .. "_inv.png", drawtype = "mesh", mesh = "wisp_jar.obj", tiles = {"wisp_jar.png"}, paramtype = "light", sunlight_propagates = true, selection_box = { type = "fixed", fixed = {-0.315, -0.5, -0.315, 0.315, 0.265, 0.315}, }, collision_box = { type = "fixed", fixed = {-0.315, -0.5, -0.315, 0.315, 0.265, 0.315}, }, groups = {cracky = 1, oddly_breakable_by_hand = 2}, stack_max = 1 }) minetest.register_on_placenode(function(pos, newnode) if newnode.name == "wisp:jar_" .. color then table.insert(wisp.jars, {pos = pos, color = color}) end end) end function grow_crops(pos, nodename) local checkname = nodename:sub(1, string.len(nodename) - 1) if minetest.registered_nodes[checkname .. "1"] and minetest.registered_nodes[checkname .. "2"] and minetest.registered_nodes[checkname .. "2"].drawtype == "plantlike" then -- node is more than likely a plant local stage = tonumber(string.sub(nodename, -1)) or 0 local newname = checkname .. (stage + 1) if minetest.registered_nodes[newname] then local def = minetest.registered_nodes[newname] def = def and def.place_param2 or 0 minetest.set_node(pos, {name = newname, param2 = def}) minetest.add_particlespawner({ amount = 6, time = 0.1, minpos = vector.subtract(pos, 0.5), maxpos = vector.add(pos, 0.5), minvel = { x = -0.5, y = 0.5, z = -0.5 }, maxvel = { x = 0.5, y = 1, z = 0.5 }, minacc = { x = 0, y = 2, z = 0 }, maxacc = { x = 0, y = 4, z = 0 }, minexptime = 0.5, maxexptime = 1, minsize = 1, maxsize = 2, collisiondetection = false, vertical = false, use_texture_alpha = true, texture = "wisp_green_particle.png", glow = 6 }) end end end -------------- -- Crafting -- -------------- if minetest.get_modpath("nc_optics") and minetest.get_modpath("nc_tree") then nodecore.register_craft({ label = "assemble jar", normal = {y = 1}, indexkeys = {"nc_optics:shelf", "nc_tree:stick"}, nodes = { {match = "nc_tree:stick", replace = "air"}, {y = -1, match = "nc_optics:shelf", replace = "wisp:jar"} } }) else minetest.register_craft({ output = "wisp:jar", recipe = { {"group:glass", "group:wood", "group:glass"}, {"group:glass", "", "group:glass"}, {"group:glass", "group:glass", "group:glass"} } }) end
local lspconfig = require('lspconfig') local on_attach = function(client, bufnr) local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end -- Enable completion triggered by <c-x><c-o> buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc') -- Mappings. local opts = { noremap=true, silent=true } -- See `:help vim.lsp.*` for documentation on any of the below functions buf_set_keymap('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts) buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts) buf_set_keymap('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts) buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts) buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts) buf_set_keymap('n', '[d', '<cmd>lua vim.lsp.diagnostic.goto_prev()<CR>', opts) buf_set_keymap('n', ']d', '<cmd>lua vim.lsp.diagnostic.goto_next()<CR>', opts) end -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches local servers = { 'tsserver' } for _, lsp in ipairs(servers) do lspconfig[lsp].setup { on_attach = on_attach, flags = { debounce_text_changes = 150, } } end
local Validator = script.Parent local Toast = Validator.Parent local Dialog = Toast.Parent local App = Dialog.Parent local UIBlox = App.Parent local Packages = UIBlox.Parent local t = require(Packages.t) local validateColorInfo = require(UIBlox.Core.Style.Validator.validateColorInfo) return t.strictInterface({ iconColorStyle = t.optional(validateColorInfo), -- Optional image to be displayed in the toast. iconImage = t.optional(t.union(t.table, t.string)), iconSize = t.optional(t.Vector2), iconChildren = t.optional(t.table), onActivated = t.optional(t.callback), onAppeared = t.optional(t.callback), onDismissed = t.optional(t.callback), swipeUpDismiss = t.optional(t.boolean), toastSubtitle = t.optional(t.string), -- optional sequence number so you can, if you want to, display the same -- toast message twice in a row (Without this SlideFromTopToast would 'eat' -- the second, matching message without notifying the caller about it being -- dismissed or activated or whatever) sequenceNumber = t.optional(t.integer), toastTitle = t.string, })
-- Initialize luaunit local lu = require('luaunit') -- Initialize mocks require('ut-mocks') -- Initialize aura require('aura-init') -- Tests TestUnitMatchAuraActivationRulesInRaid = { } function TestUnitMatchAuraActivationRulesInRaid:Setup() _G.IsInRaid = function () return true end _G.UnitClass = function () return 'Warrior', 'WARRIOR' end end function TestUnitMatchAuraActivationRulesInRaid:TestRaidMembersShouldMatch() -- Inject aura_env.runtime.config_cache.classes['WARRIOR'] = { ['ut-aura-match'] = true } -- Run for i = 0, 39 do local match_result = aura_env.runtime.helpers.UnitMatchAuraActivationRules('raid'..tostring(i)) lu.assertNotNil(match_result, 'Unit (raid'..tostring(i)..') should match aura activation rules') lu.assertItemsEquals(match_result, { ['ut-aura'] = true }) end end function TestUnitMatchAuraActivationRulesInRaid:TestRaidPetsMembersShouldntMatch() -- Run for i = 0, 39 do local match_result = aura_env.runtime.helpers.UnitMatchAuraActivationRules('raidpet'..tostring(i)) lu.assertNil(match_result, 'Unit (raidpet'..tostring(i)..') shouldn\'t match aura activation rules') end end function TestUnitMatchAuraActivationRulesInRaid:TestPlayerShouldntMatch() -- Run local match_result = aura_env.runtime.helpers.UnitMatchAuraActivationRules('player') lu.assertNil(match_result, 'Unit (player) shouldn\'t match aura activation rules') end function TestUnitMatchAuraActivationRulesInRaid:Teardown() _G.IsInRaid = nil _G.UnitClass = nil end -- Execute Tests os.exit(lu.LuaUnit.run())
local ok = pcall(function() require 'fb.luaunit' end) if not ok then print('For running tests, please manually install fb.luaunit from fblualib.') print('fblualib does not have rockspecs yet') return end require 'nn' local precision = 1e-5 local pl = require'pl.import_into'() local mytester = torch.Tester() local jac = nn.Jacobian local fbnntest = {} local function assertTensorEq(a, b, epsilon) local epsilon = epsilon or 0.000001 local diff = a - b assert(diff:abs():max() < epsilon) end function fbnntest.Optim_weight_bias_parameters() local n = nn.Sequential() n:add(nn.Linear(10, 10)) n:add(nn.Tanh()) n:add(nn.Add(10)) for i = 1, 3 do local cur_mod = n:get(1) local params = nn.Optim.weight_bias_parameters(cur_mod) local has_bias = cur_mod.bias ~= nil local has_weight = cur_mod.weight ~= nil if not has_bias and not has_weight then mytester:asserteq(pl.tablex.size(params), 0) else mytester:asserteq(pl.tablex.size(params), 2) if has_weight then mytester:assert(not params[1].is_bias) mytester:asserteq(params[1][1], cur_mod.weight) mytester:asserteq(params[1][2], cur_mod.gradWeight) else mytester:assert(not params[1]) end if has_bias then mytester:assert(params[2].is_bias) mytester:assert(params[2][1]) mytester:assert(params[2][2]) else mytester:assert(not params[2]) end end end end function fbnntest.CachingLookupTableCoherence() -- Make sure that we don't lose writes even with multiple caches -- attached local function buildCaches(numCaches, rows, cacheRows, cols) local lut = nn.LookupTable(rows, cols) -- Nice, even values are easier to debug. lut.weight = torch.range(1, rows * cols):reshape(rows, cols) local caches = { } for i = 1, numCaches do table.insert(caches, nn.CachingLookupTable(lut, cacheRows, cols)) end return lut, caches end local cases = { -- rows, cols, cacheRows, numCaches, numUpdates { 1, 1, 1, 1, 100, }, { 100, 10, 100, 2, 200, }, { 500, 100, 100, 2, 500 }, { 500, 100, 500, 2, 2000 }, } for _,case in pairs(cases) do print(case) local rows, cols, cacheRows, numCaches, numUpdates = unpack(case) local lut, caches = buildCaches(numCaches, rows, cacheRows, cols) local lutClone = lut:clone() for j = 1,numUpdates do local start = math.random(rows) local finish = math.min(start + math.random(100), rows) local rows = torch.range(start, finish) local n = rows:size(1) local grad = torch.randn(n, cols) for i =1,rows:size(1) do lutClone.weight[rows[i]]:add(grad[i] * -#caches) end for _,cache in ipairs(caches) do assert(cache.accUpdateGradParameters == nn.CachingLookupTable.accUpdateGradParameters) cache:accUpdateGradParameters(rows, grad, 1.0) end end for _,cache in ipairs(caches) do cache:flush() end assertTensorEq(lutClone.weight, lut.weight) end end function fbnntest.testLoGLayer() -- load image: require 'image' local im = image.lena() -- test forward pass in simple net: local net = nn.Sequential() local sigma = 1 net:add(nn.LaplacianOfGaussian(3, sigma)) local filteredIm = net:forward(im) assert(filteredIm) assert(im:size(1) == filteredIm:size(1)) assert(im:size(2) == filteredIm:size(2)) assert(im:size(3) == filteredIm:size(3)) end local function criterionJacobianTest(cri, input, target) local eps = 1e-6 local _ = cri:forward(input, target) local dfdx = cri:backward(input, target) -- for each input perturbation, do central difference local centraldiff_dfdx = torch.Tensor():resizeAs(dfdx) local input_s = input:storage() local centraldiff_dfdx_s = centraldiff_dfdx:storage() for i=1,input:nElement() do -- f(xi + h) input_s[i] = input_s[i] + eps local fx1 = cri:forward(input, target) -- f(xi - h) input_s[i] = input_s[i] - 2*eps local fx2 = cri:forward(input, target) -- f'(xi) = (f(xi + h) - f(xi - h)) / 2h local cdfx = (fx1 - fx2) / (2*eps) -- store f' in appropriate place centraldiff_dfdx_s[i] = cdfx -- reset input[i] input_s[i] = input_s[i] + eps end -- compare centraldiff_dfdx with :backward() local err = (centraldiff_dfdx - dfdx):abs():max() print(err) mytester:assertlt(err, precision, 'error in difference between central difference and :backward') end function fbnntest.testSoftPlusLSEMinusLSECriterion() local input = torch.rand(10, 100) local cri = nn.SoftPlusLSEMinusLSECriterion() criterionJacobianTest(cri, input) end function fbnntest.testSoftPlusLSECriterion() local input = torch.rand(10, 100) local cri = nn.SoftPlusLSECriterion() criterionJacobianTest(cri, input) end function fbnntest.testLoGNetwork() -- load image: require 'image' local im = image.lena() local target = torch.DoubleTensor(1) target[1] = 1 -- set up prediction network: local net = nn.Sequential() local sigma = 1 local layer = nn.LaplacianOfGaussian(3, sigma) net:add(layer) net:add(nn.View(im:nElement())) net:add(nn.Linear(im:nElement(), 1)) net:add(nn.LogSigmoid()) local criterion = nn.BCECriterion() -- forward backward pass: local loss = criterion:forward(net:forward(im), target) net:backward(im, criterion:backward(net.output, target)) assert(layer.gradInput:size(1) == im:size(1)) assert(layer.gradInput:size(2) == im:size(2)) assert(layer.gradInput:size(3) == im:size(3)) assert(loss) end function fbnntest.testConstantLayer() local net = nn.Sequential() local cst = math.random() net:add(nn.Linear(2,3)) net:add(fbnn.Constant(cst)) local output = net:forward(torch.randn(2)) for i=1,output:size()[1] do assert(output[i][1] == cst) end end function fbnntest.testDoG() -- load image: require 'image' local input = image.scale(image.lena(), 16, 16, 'bilinear') local numChannels = input:size(1) -- construct module: local nOctaves = 3 local nScalesPerOctave = 4 local module = nn.DifferenceOfGaussian( numChannels, nOctaves, nScalesPerOctave ) -- test forward pass: local output = module:forward(input) assert(type(output) == 'table') assert(#output == nOctaves) for n = 1,nOctaves do assert(output[n]:size(1) == nScalesPerOctave * numChannels) end -- repeat the forward tests in batch mode: local batchSize = 8 local batchInput = input.new( batchSize, input:size(1), input:size(2), input:size(3) ) for n = 1,batchSize do batchInput[n]:copy(input):add(torch.randn(input:size()), 0.05) end output = module:forward(batchInput) assert(type(output) == 'table') assert(#output == nOctaves) for n = 1,nOctaves do assert(output[n]:size(1) == batchSize) assert(output[n]:size(2) == nScalesPerOctave * numChannels) end end function fbnntest.testUpsample() require 'image' local factors = torch.DoubleTensor({1, 2, 3, 4}) local im = image.scale(image.lena(), 32, 32, 'bilinear') -- test for single image: for n = 1,factors:nElement() do local net = nn.Sequential() net:add(nn.Upsample(factors[n])) local upsampledIm = net:forward(im) assert(upsampledIm:size(1) == im:size(1)) assert(upsampledIm:size(2) == im:size(2) * factors[n]) assert(upsampledIm:size(3) == im:size(3) * factors[n]) local recon = net:backward(im, upsampledIm):div(factors[n] * factors[n]) assert(recon:size(1) == im:size(1)) assert(recon:size(2) == im:size(2)) assert(recon:size(3) == im:size(3)) assert(recon:add(-im):abs():sum() < 1e-5) end -- test for image batch: im:resize(1, im:size(1), im:size(2), im:size(3)) local batch = im:expand(8, im:size(2), im:size(3), im:size(4)) batch:add(torch.randn(batch:size())) for n = 1,factors:nElement() do local net = nn.Sequential() net:add(nn.Upsample(factors[n])) local upsampledBatch = net:forward(batch) assert(upsampledBatch:size(1) == batch:size(1)) assert(upsampledBatch:size(2) == batch:size(2)) assert(upsampledBatch:size(3) == batch:size(3) * factors[n]) assert(upsampledBatch:size(4) == batch:size(4) * factors[n]) local recon = net:backward(batch, upsampledBatch) recon:div(factors[n] * factors[n]) assert(recon:size(1) == batch:size(1)) assert(recon:size(2) == batch:size(2)) assert(recon:size(3) == batch:size(3)) assert(recon:size(4) == batch:size(4)) assert(recon:add(-batch):abs():sum() < 1e-5) end end function fbnntest.WeightedLookupTable() local totalIndex = math.random(6,9) local nIndex = math.random(3,5) local entry_size = math.random(2,5) local indices = torch.randperm(totalIndex):narrow(1,1,nIndex) local weights = torch.randn(nIndex) local module = nn.WeightedLookupTable(totalIndex, entry_size) local minval = 1 local maxval = totalIndex local input = torch.Tensor(indices:size(1), 2) input:select(2, 1):copy(indices) input:select(2, 2):copy(weights) local output = module:forward(input) for r=1,nIndex do for c=1,entry_size do mytester:assertlt(math.abs(output[r][c] - module.weight[input[r][1]][c] * input[r][2]), 1e-3, 'incorrect output') end end module:backwardUpdate(input, output, 0.1) input:zero() -- 1D local err = jac.testJacobianParameters(module, input, module.weight, module.gradWeight, minval, maxval) mytester:assertlt(err, 1e-4, '1D error on weight ') local err = jac.testJacobianUpdateParameters(module, input, module.weight, minval, maxval) mytester:assertlt(err, 1e-4, '1D error on weight [direct update] ') module.gradWeight:zero() for t,err in pairs(jac.testAllUpdate(module, input, 'weight', 'gradWeight')) do mytester:assertlt(err, 1e-4, string.format( '1D error on weight [%s]', t)) end end function fbnntest.IndividualDropout() local N = 1024 local D = 5 local net = nn.Sequential() net:add(fbnn.IndividualDropout(torch.range(0, .8, .8 / (D - 1)))) local output = net:forward(torch.ones(N, D)) assert(output) assert(output:size(1) == N) assert(output:size(2) == D) end function fbnntest.FasterLookup() local runtest = function(type) local totalIndex = math.random(6,9) local nIndex = math.random(3,5) local entry_size = math.random(2,5) local input = torch.randperm(totalIndex):narrow(1,1,nIndex):int() local module = nn.FasterLookup(totalIndex, entry_size) local minval = 1 local maxval = totalIndex module:type(type) local output = module:forward(input) module:backwardUpdate(input, output, 0.1) input:zero() -- 1D local err = jac.testJacobianParameters(module, input, module.weight, module.gradWeight, minval, maxval) mytester:assertlt(err,1e-5, '1D error on weight ') local err = jac.testJacobianUpdateParameters(module, input, module.weight, minval, maxval) mytester:assertlt(err,1e-5, '1D error on weight [direct update] ') module.gradWeight:zero() for t,err in pairs(jac.testAllUpdate(module, input, 'weight', 'gradWeight')) do mytester:assertlt(err, 1e-5, string.format( '1D error on weight [%s]', t)) end -- 2D local nframe = math.random(2,5) local input = torch.IntTensor(nframe, nIndex):zero() local err = jac.testJacobianParameters(module, input, module.weight, module.gradWeight, minval, maxval) mytester:assertlt(err,1e-5, '2D error on weight ') local err = jac.testJacobianUpdateParameters(module, input, module.weight, minval, maxval) mytester:assertlt(err,1e-5, '2D error on weight [direct update] ') module.gradWeight:zero() for t,err in pairs(jac.testAllUpdate(module, input, 'weight', 'gradWeight')) do mytester:assertlt(err, 1e-5, string.format( '2D error on weight [%s]', t)) end -- IO local ferr,berr = jac.testIO(module,input,minval,maxval) mytester:asserteq(ferr, 0, torch.typename(module) .. ' - i/o forward err ') mytester:asserteq(berr, 0, torch.typename(module) .. ' - i/o backward err ') end runtest(torch.DoubleTensor():type()) end mytester:add(fbnntest) function nn.fbnntest(tests) math.randomseed(os.time()) mytester:run(tests) end
local math, string, table, arg = math, string, table, arg local pairs, ipairs, require, error = pairs, ipairs, require, error local _ENV = {package=package} local PYLUA = require('PYLUA') local FontMetric = require('metric').FontMetric local CharMetric = require('metric').CharMetric local FontFormatError = require('metric').FontFormatError readUnsigned = function(ff, size) local res = 0 for _, c in PYLUA.ipairs(ff:read(size)) do res = res*256 res = res+PYLUA.ord(c) end return res end readSigned = function(ff, size) local res = PYLUA.ord(ff:read(1)) if res>=128 then res = res-256 end for _, c in PYLUA.ipairs(ff:read(size-1)) do res = res*256 res = res+PYLUA.ord(c) end return res end readFixed32 = function(ff) return readSigned(ff, 4)/65536.0 end readF2_14 = function(ff) return readSigned(ff, 2)/16384.0 end skip = function(ff, size) ff:read(size) end TTFFormatError = PYLUA.class(FontFormatError) { __init__ = function(self, msg) FontFormatError.__init__(self, msg) end ; } TTFMetric = PYLUA.class(FontMetric) { __init__ = function(self, ttfname, log, _kw_extra) if PYLUA.is_a(ttfname, PYLUA.keywords) then local kw = ttfname ttfname = log or kw.ttfname log = _kw_extra or kw.log end FontMetric.__init__(self, log) local ff = PYLUA.open(ttfname, 'rb') self:readFontMetrics(ff) ff:close() self:postParse() end ; readFontMetrics = function(self, ff) local version = ff:read(4) if version == '\x00\x01\x00\x00' then self.fonttype = 'TTF' elseif version=='OTTO' then -- self.fonttype="OTF" -- At the moment, I cannot parse bbox data out from CFF error(TTFFormatError('OpenType/CFF fonts are unsupported')) else error(TTFFormatError('Not a TrueType file')) end local numTables = readUnsigned(ff, 2) local tables = { } skip(ff, 6) for i = 1,numTables do local tag = ff:read(4) local checksum = readUnsigned(ff, 4) local offset = readUnsigned(ff, 4) local length = readUnsigned(ff, 4) tables[tag] = {offset, length} end local switchTable = function(tableTag) return tables[tableTag] or error(TTFFormatError('Required table '..tableTag..' missing in TrueType file')) end local offset, length = table.unpack(switchTable('head')) ff:seek(offset+12) local magic = readUnsigned(ff, 4) if magic~=0x5F0F3CF5 then error(TTFFormatError('Magic number in \'head\' table does not match the spec')) end skip(ff, 2) self.unitsPerEm = readUnsigned(ff, 2) local emScale = 1.0/self.unitsPerEm skip(ff, 16) local xMin = readSigned(ff, 2)*emScale local yMin = readSigned(ff, 2)*emScale local xMax = readSigned(ff, 2)*emScale local yMax = readSigned(ff, 2)*emScale self.bbox = {xMin, yMin, xMax, yMax} skip(ff, 6) self.indexToLocFormat = readSigned(ff, 2) offset, length = table.unpack(switchTable('maxp')) ff:seek(offset+4) self.numGlyphs = readUnsigned(ff, 2) offset, length = table.unpack(switchTable('name')) ff:seek(offset+2) local numRecords = readUnsigned(ff, 2) local storageOffset = readUnsigned(ff, 2)+offset local uniNames = { } local macNames = { } local englishCodes = {1033, 2057, 3081, 4105, 5129, 6153} for i = 1,numRecords do local platformID = readUnsigned(ff, 2) local encodingID = readUnsigned(ff, 2) local languageID = readUnsigned(ff, 2) local nameID = readUnsigned(ff, 2) local nameLength = readUnsigned(ff, 2) local nameOffset = readUnsigned(ff, 2) if platformID==3 and encodingID==1 then if PYLUA.op_in(languageID, englishCodes) or not uniNames[nameID] then uniNames[nameID] = {nameOffset, nameLength} end elseif platformID==1 and encodingID==0 then if languageID==0 or not macNames[nameID] then macNames[nameID] = {nameOffset, nameLength} end end end local getName = function(code) if macNames[code] then local nameOffset, nameLength = table.unpack(macNames[code]) ff:seek(storageOffset+nameOffset) return ff:read(nameLength) -- FIXME(grigoriev): repair Mac encoding here elseif uniNames[code] then nameOffset, nameLength = table.unpack(uniNames[code]) ff:seek(storageOffset+nameOffset) local result = '' for i = 1,nameLength/2 do result = result..PYLUA.unichr(readUnsigned(ff, 2)) end return result end end self.family = getName(1) self.fullname = getName(4) self.fontname = getName(6) offset, length = table.unpack(switchTable('OS/2')) ff:seek(offset) local tableVersion = readUnsigned(ff, 2) local cw = readSigned(ff, 2) if cw then self.charwidth = cw*emScale end local wght = readUnsigned(ff, 2) if wght<150 then self.weight = 'Thin' elseif wght<250 then self.weight = 'Extra-Light' elseif wght<350 then self.weight = 'Light' elseif wght<450 then self.weight = 'Regular' elseif wght<550 then self.weight = 'Medium' elseif wght<650 then self.weight = 'Demi-Bold' elseif wght<750 then self.weight = 'Bold' elseif wght<850 then self.weight = 'Extra-Bold' else self.weight = 'Black' end skip(ff, 62) self.ascender = readSigned(ff, 2)*emScale self.descender = readSigned(ff, 2)*emScale if tableVersion==2 then skip(ff, 14) local xh = readSigned(ff, 2) if xh then self.xheight = xh*emScale end local ch = readSigned(ff, 2) if ch then self.capheight = ch*emScale end end offset, length = table.unpack(switchTable('post')) ff:seek(offset+4) self.italicangle = readFixed32(ff) self.underlineposition = readSigned(ff, 2)*emScale self.underlinethickness = readSigned(ff, 2)*emScale offset, length = table.unpack(switchTable('hhea')) ff:seek(offset+34) local numHmtx = readUnsigned(ff, 2) offset, length = table.unpack(switchTable('hmtx')) ff:seek(offset) local glyphArray = {} local w = 0 for i = 1,self.numGlyphs do if i<numHmtx then w = readUnsigned(ff, 2)*emScale skip(ff, 2) end table.insert(glyphArray, CharMetric(PYLUA.keywords{width=w})) end offset, length = table.unpack(switchTable('cmap')) ff:seek(offset+2) local subtableOffset = 0 numTables = readUnsigned(ff, 2) local cmapEncodings = { } for i = 1,numTables do local platformID = readUnsigned(ff, 2) local encodingID = readUnsigned(ff, 2) subtableOffset = readUnsigned(ff, 4) cmapEncodings[string.format('%d %d', platformID, encodingID)] = subtableOffset end local encodingScheme = 'Unicode' subtableOffset = cmapEncodings['3 1'] if subtableOffset == nil then encodingScheme = 'Symbol' subtableOffset = cmapEncodings['3 0'] if subtableOffset == nil then error(TTFFormatError(string.format('Cannot use font \'%s\': no known subtable in \'cmap\' table', self.fullname))) elseif self.log then self.log:write(string.format('WARNING: font \'%s\' is a symbolic font - Unicode mapping may be unreliable\n', self.fullname)) end end ff:seek(offset+subtableOffset) local tableFormat = readUnsigned(ff, 2) if tableFormat~=4 then error(TTFFormatError(string.format('Unsupported format in \'cmap\' table: %d', tableFormat))) end local subtableLength = readUnsigned(ff, 2) skip(ff, 2) local segCount = readUnsigned(ff, 2)/2 skip(ff, 6) local endCounts = {} for i = 1,segCount do table.insert(endCounts, readUnsigned(ff, 2)) end skip(ff, 2) local startCounts = {} for i = 1,segCount do table.insert(startCounts, readUnsigned(ff, 2)) end local idDeltas = {} for i = 1,segCount do table.insert(idDeltas, readSigned(ff, 2)) end local rangeOffsets = {} for i = 1,segCount do table.insert(rangeOffsets, readUnsigned(ff, 2)) end local remainingLength = subtableLength-8*segCount-16 if remainingLength<=0 then remainingLength = remainingLength+65536 -- protection against Adobe's bug end local glyphIdArray = {} for i = 1,remainingLength/2 do table.insert(glyphIdArray, readUnsigned(ff, 2)) end for i = 1,segCount do for c = startCounts[i], endCounts[i]+1 do if c==0xFFFF then goto continue end local gid = 0 if (rangeOffsets[i] or 0) ~= 0 then local idx = c-startCounts[i]+rangeOffsets[i]/2-(segCount-i) gid = glyphIdArray[idx] else gid = c+idDeltas[i] end if gid>=65536 then gid = gid-65536 elseif gid<0 then gid = gid+65536 end local cm = glyphArray[gid+1] table.insert(cm.codes, c) -- Dirty hack: map the lower half of the private-use area to ASCII if encodingScheme=='Symbol' and PYLUA.op_in(c, range(61472, 61567)) then table.insert(cm.codes, c-61440) end if not cm.name then cm.name = string.format('u%04X', c) end ::continue:: end end offset, length = table.unpack(switchTable('loca')) ff:seek(offset) local glyphIndex = {} local scalefactor = self.indexToLocFormat+1 if self.indexToLocFormat==0 then for i = 1,self.numGlyphs+1 do table.insert(glyphIndex, readUnsigned(ff, 2)*2) end elseif self.indexToLocFormat==1 then for i = 1,self.numGlyphs+1 do table.insert(glyphIndex, readUnsigned(ff, 4)) end else error(TTFFormatError(string.format('Invalid indexToLocFormat value (%d) in \'head\' table', tostring(self.indexToLocFormat)))) end offset, length = table.unpack(switchTable('glyf')) for i = 1,self.numGlyphs do local cm = glyphArray[i] if glyphIndex[i]==glyphIndex[i+1] then cm.bbox = {0, 0, 0, 0} -- empty glyph else ff:seek(offset+glyphIndex[i]+2) local xMin = readSigned(ff, 2)*emScale local yMin = readSigned(ff, 2)*emScale local xMax = readSigned(ff, 2)*emScale local yMax = readSigned(ff, 2)*emScale cm.bbox = {xMin, yMin, xMax, yMax} end for _, c in ipairs(cm.codes) do self.chardata[c] = cm end end end ; } main = function() if #arg==1 then TTFMetric(PYLUA.keywords{log=io.stderr}, arg[1]):dump() else PYLUA.print('Usage: TTF.py <path to TTF file>', '\n') end end if arg and arg[1]==... then main() end return _ENV
local Modules = script.Parent.Parent.Parent.Parent local Roact = require(Modules.Roact) local PluginAccessor = require(Modules.Plugin.Components.PluginAccessor) local function Dropdown(props) if typeof(props.value) ~= 'EnumItem' then return nil end local value = props.value local enumType = value.EnumType local setValue = props.setValue return PluginAccessor.withPlugin(function(plugin) return Roact.createElement("TextButton", { LayoutOrder = 2, Text = typeof(value) == 'EnumItem' and value.Name or '', Size = UDim2.new(1, -150, 0, 22), BackgroundColor3 = Color3.fromRGB(255, 255, 255), BorderColor3 = Color3.fromRGB(238, 238, 238), Font = Enum.Font.SourceSans, TextColor3 = Color3.fromRGB(0, 0, 0), TextSize = 18, TextXAlignment = Enum.TextXAlignment.Left, [Roact.Event.Activated] = function(rbx) local menu = plugin:createPluginMenu("Dropdown", "Dropdown", "") local actions = {} for _, item in pairs(enumType:GetEnumItems()) do local action = menu:AddNewAction(item.Name, item.Name, "") actions[action] = item end local result = menu:ShowAsync() if result then local newValue = actions[result] setValue(newValue) end menu:Destroy() end, }) end) end return Dropdown
local defaults = {} local valid = {} return{ isCreatable = function(className) local validD = valid[className] if not validD then valid[className] = pcall(function() Instance.new(className) end) validD = valid[className] end return validD end, getDefaults = function(className,property) local instanceDefault = defaults[className] if not instanceDefault then defaults[className] = Instance.new(className) instanceDefault = defaults[className] end return instanceDefault[property] end }
-- Copyright 2020 SparkyPotato workspace "Spark" architecture "x86_64" configurations { "Debug", "Development", "Release" } startproject "Spark" group "Engine" project "Spark" location "Engine/Intermediate/ProjectFiles" language "C++" cppdialect "C++17" targetdir "Engine/Binaries/%{cfg.buildcfg}/Spark/" objdir "Engine/Intermediate/%{cfg.buildcfg}/Spark/" dependson "SparkBuild" kind "Makefile" includedirs { "Engine/**/Public", "Engine/Intermediate/GeneratedFiles" } files { "Engine/Source/**.h", "Engine/Source/**.cpp", "Engine/Source/**.json" } buildcommands { "..\\..\\Source\\Tools\\SparkBuild\\Build.bat Build Engine %{cfg.buildcfg}" } rebuildcommands { "..\\..\\Source\\Tools\\SparkBuild\\Build.bat Rebuild Engine %{cfg.buildcfg}" } cleancommands { "..\\..\\Source\\Tools\\SparkBuild\\Build.bat Clean Engine %{cfg.buildcfg}" } group "Tools" project "SparkBuild" location "Engine/Intermediate/ProjectFiles" language "C++" cppdialect "C++17" staticruntime "on" runtime "Release" targetdir "Engine/Binaries/%{cfg.buildcfg}/SparkBuild/" objdir "Engine/Intermediate/%{cfg.buildcfg}/SparkBuild/" kind "ConsoleApp" characterset "Unicode" filter "configurations:Release" optimize "speed" symbols "off" filter "configurations:Development" optimize "speed" symbols "on" filter "configurations:Debug" optimize "off" symbols "on" filter {} flags { "MultiProcessorCompile" } buildoptions { "/utf-8" } includedirs { "Engine/Source/Tools/SparkBuild/Public", "Engine/Source/Tools/SparkBuild/Private", "Engine/Dependencies/json/Public" } files { "Engine/Source/Tools/SparkBuild/Public/**.h", "Engine/Source/Tools/SparkBuild/Private/**.h", "Engine/Source/Tools/SparkBuild/Private/**.cpp" }
--[[ Copyright 2016-2020 The Node.lua Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --]] local ssdp = require('ssdp/ssdp') local exports = {} local UPNP_ADDRESS = ssdp.UPNP_ADDRESS local UPNP_PORT = ssdp.UPNP_PORT local UPNP_ROOT_DEVICE = ssdp.UPNP_ROOT_DEVICE local INET_ADDR_ANY = ssdp.INET_ADDR_ANY exports.version = "2.0" ------------------------------------------------------------------------------- --- SsdpServer local SsdpServer = ssdp.SsdpObject:extend() exports.SsdpServer = SsdpServer function SsdpServer:initialize(options, socket) options = options or {} self.deviceId = options.udn self.ssdpIp = options.ssdpIp or UPNP_ADDRESS self.adInterval = options.adInterval or 10000 self.location = options.location self.deviceModel = options.deviceModel self.port = options.ssdpPort or UPNP_PORT self.ssdpSig = options.ssdpSig or "Node.lua/2.2, UPnP/1.0, ssdp/2.0" self.ssdpTtl = options.ssdpTtl or 1 self.ttl = options.ttl or 1800 self.unicastHost = options.unicastHost or INET_ADDR_ANY self.description = options.description or "/device.json" self.intervalTimer = nil self.socket = socket self.usns = {} end function SsdpServer:_encodeNotify(nt, nts, usn) local sb = StringBuffer:new() sb:append("NOTIFY * HTTP/1.1\r\n") sb:append("Host:239.255.255.250:1900\r\n") sb:append("Cache-Control:max-age=1800\r\n") --sb:append("Location:"):append(self:_getLocation()):append("\r\n") sb:append("NT:"):append(nt):append("\r\n") sb:append("NTS:"):append(nts):append("\r\n") sb:append("Server:"):append(self.ssdpSig):append("\r\n") sb:append("USN:"):append(usn):append("\r\n") if (self.deviceModel) then sb:append("X-DeviceModel:"):append(self.deviceModel):append("\r\n") end sb:append("\r\n") return sb:toString() end function SsdpServer:_encodeResponse(serviceType, usn) local sb = StringBuffer:new() sb:append("HTTP/1.1 200 OK\r\n") sb:append("Cache-Control:max-age=1800\r\n") sb:append("Date:"):append(exports.newDateHeader()):append("\r\n") --sb:append("Location:"):append(self:_getLocation()):append("\r\n") sb:append("Server:"):append(self.ssdpSig):append("\r\n") sb:append("ST:"):append(serviceType):append("\r\n") sb:append("USN:"):append(usn):append("\r\n") if (self.deviceModel) then sb:append("X-DeviceModel:"):append(self.deviceModel):append("\r\n") end sb:append("\r\n") return sb:toString() end function SsdpServer:_getLocation() if (self.location) then if (type(self.location) == 'function') then return self.location() else return self.location end end local localAddress = self:getLocalAddress() return "http://" .. localAddress .. self.description end function SsdpServer:_handleSearch(request, remote) local st = request.headers['st'] or UPNP_ROOT_DEVICE --print('st', st) if (st ~= 'urn:schemas-upnp-org:service:cmpp-iot') and (st ~= 'urn:schemas-webofthings-org:device') then return end local usn = self.deviceId or 'uuid:123456' local response = self:_encodeResponse(st, usn) --console.log('handleSearch', remote.port, remote.ip, response) self:_sendMessage(response, remote.ip, remote.port) self:_sendMessage(response, UPNP_ADDRESS, remote.port) end function SsdpServer:_startNotifyLoop() if (self.intervalTimer) then return end self.intervalTimer = setInterval(self.adInterval, function() self:notify(true) end) end function SsdpServer:_stopNotifyLoop() if (self.intervalTimer) then clearInterval(self.intervalTimer) self.intervalTimer = nil end end function SsdpServer:addUSN(usn) if (usn) then self.usns[usn] = usn end end function SsdpServer:getLocalAddress() local addresses = self:_getLocalAddresses() for _, address in pairs(addresses) do return address.ip end return '0.0.0.0' end function SsdpServer:notify(alive) local nt = UPNP_ROOT_DEVICE local nts = "ssdp:alive" local usn = self.deviceId or 'uuid:123456' if (not alive) then nts = "ssdp:byebye" end local message = self:_encodeNotify(nt, nts, usn) self:_sendMessage(message, function() end) end function SsdpServer:start(localAddress) if (not self._started) then self:_createSocket(localAddress or INET_ADDR_ANY) self._started = true -- self:_startNotifyLoop() self:notify(true) end end function SsdpServer:stop() self:_stopNotifyLoop() end ------------------------------------------------------------------------------- function exports.newDateHeader() return os.date("%a, %d %b %Y %H:%M:%S GMT", os.time()) end ------------------------------------------------------------------------------- -- function exports.open(options, callback) local ssdpServer = SsdpServer:new(options) ssdpServer:start() return ssdpServer end setmetatable(exports, { __call = function(self, options, callback) return self.open(options, callback) end }) return exports
local addonName, pct = ...; pct.PROFESSIONS = { ALCHEMY = { spellId = 11611; }, LEATHERWORKING = { spellId = 10662; }, TAILORING = { spellId = 12180; } } pct.TRACKED_SPELLS = { TRANSMUTE_ARCANITE = { spellId = 17187, profession = pct.PROFESSIONS.ALCHEMY }, MOONCLOTH = { spellId = 18560, profession = pct.PROFESSIONS.TAILORING }, SALT_SHAKER = { spellId = 19566, profession = pct.PROFESSIONS.LEATHERWORKING } }; pct.COMMANDS = { help = function() print(" "); print("Available commands:"); print(" /pct help - shows available commands"); print(" /pct status - shows character cooldowns"); print(" "); end, status = function() print(" "); pct:updateCurrentCharacterCooldowns(ProfessionCooldownTrackerDB); pct:printStatus(ProfessionCooldownTrackerDB); print(" "); end }; local function getTableSize(tbl) local count = 0; for _ in pairs(tbl) do count = count + 1 end return count; end local function formatCooldownReadyIn(readyAt) local readyInSeconds = readyAt - GetServerTime(); local minutes = math.floor(readyInSeconds / 60 % 60); local hours = math.floor(readyInSeconds / 60 / 60 % 24); local days = math.floor(readyInSeconds / 60 / 60 / 24); local text = ""; if (days > 0) then text = text .. days .. " Days "; end if (hours > 0) then text = text .. hours .. " Hrs "; end if (minutes > 0) then text = text .. minutes .. " Mins "; end return "|cffff0000" .. text .. "|r"; end local function handleCommands(str) if (#str == 0) then pct.COMMANDS.help(); return; end if (str == "status") then pct.COMMANDS.status(); return; end pct.COMMANDS.help(); end function pct:initialize() if (ProfessionCooldownTrackerDB == nil) then ProfessionCooldownTrackerDB = {}; end SLASH_ProfessionCooldownTracker1 = "/pct"; SlashCmdList.ProfessionCooldownTracker = handleCommands; end function pct:updateCurrentCharacterCooldowns(db) local character = UnitName("player"); local cooldowns = db[character]; if (cooldowns == nil) then cooldowns = {}; db[character] = cooldowns; end for spell, info in pairs(pct.TRACKED_SPELLS) do local start, duration = GetSpellCooldown(info.spellId); if (duration ~= 0) then local readyInSeconds = start + duration - GetTime(); cooldowns[spell] = { readyAt = GetServerTime() + readyInSeconds, ready = false }; elseif (IsSpellKnown(info.profession.spellId)) then cooldowns[spell] = { ready = true }; else cooldowns[spell] = nil; end end end function pct:printStatus(db) print("Cooldowns:"); for character, cooldowns in pairs(db) do local cooldownCount = getTableSize(cooldowns); if (cooldownCount > 0) then print(" " .. character); for spell, info in pairs(pct.TRACKED_SPELLS) do local cooldown = cooldowns[spell]; if (cooldown ~= nil) then local name = GetSpellInfo(info.spellId); local line = " - " .. name .. ": "; if (cooldown.ready) then line = line .. "|cff00ff00Ready|r"; else line = line .. formatCooldownReadyIn(cooldowns[spell].readyAt); end print(line); end end end end end local events = CreateFrame("Frame"); events:SetScript("OnEvent", function(__, event, arg1) if event == "ADDON_LOADED" and arg1 == addonName then pct:initialize(); elseif event == "PLAYER_LOGIN" then pct:updateCurrentCharacterCooldowns(ProfessionCooldownTrackerDB); pct:printStatus(ProfessionCooldownTrackerDB); elseif event == "PLAYER_LOGOUT" then pct:updateCurrentCharacterCooldowns(ProfessionCooldownTrackerDB); end end); events:RegisterEvent("ADDON_LOADED"); events:RegisterEvent("PLAYER_LOGIN");
M = {} M.data = { title = "", active = false, } return M
-- formatter modules local function prettier() return { exe = "prettier", args = { "--stdin-filepath", vim.api.nvim_buf_get_name(0) }, stdin = true, } end require("formatter").setup({ logging = false, filetype = { sh = { function() return { exe = "shfmt", args = { "-" }, stdin = true } end, }, lua = { function() -- check if current folder has a lua formatter file local cfg = vim.fn.findfile("stylua.toml") if cfg == "" then cfg = vim.fn.expand("~/.config/nvim/lua/stylua.toml") end return { exe = "stylua", args = { "--config-path=" .. cfg, "-" }, stdin = true } end, }, python = { function() return { exe = "black", args = { "-q", "-" }, stdin = true } end, }, javascript = { prettier }, javascriptreact = { prettier }, markdown = { prettier }, json = { function() return { exe = "prettier", args = { "--stdin-filepath", vim.api.nvim_buf_get_name(0), "--parser", "json" }, stdin = true, } end, }, go = { function() return { exe = "gofmt", stdin = true } end, function() return { exe = "goimports", stdin = true } end, }, }, }) -- adding format on save autocmd vim.cmd([[ augroup FormatAu autocmd! autocmd BufWritePost *.go,*.jsx,*.js,*.json,*.md,*.py,*.sh,*.lua FormatWrite augroup END ]])
--[[ Copyright (C) 2013 David 'Falcqn' Hepworth Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ]]-- AddCSLuaFile( "makespherical.lua" ) TOOL.Category = "Construction" TOOL.Name = "#tool.makespherical.name" TOOL.Command = nil TOOL.ConfigName = nil TOOL.ClientConVar[ "radius" ] = "20" TOOL.ClientConVar[ "offset" ] = "0" TOOL.ClientConVar[ "offset_x" ] = "0" TOOL.ClientConVar[ "offset_y" ] = "0" TOOL.ClientConVar[ "offset_z" ] = "0" TOOL.ClientConVar[ "useobbcenter" ] = "0" if CLIENT then language.Add( "tool.makespherical.name", "Spherical Collisions" ) language.Add( "tool.makespherical.desc", "Gives entities a spherical collisions with a defined radius" ) language.Add( "tool.makespherical.0", "Left click to make an entity have spherical collisions based on its size. Right click to set collisions with a custom radius" ) language.Add( "tool.makespherical.1", "Left click to make an entity have spherical collisions based on its size. Right click to set collisions with a custom radius" ) function TOOL.BuildCPanel( panel ) panel:AddControl( "Header", { Text = "#tool.makespherical.name", Description = "#tool.makespherical.desc" } ) panel:AddControl( "Slider", { Label = "Set radius: ", Type = "Float", Min = "1", Max = "200", Command = "makespherical_radius" }) panel:AddControl( "CheckBox", { Label = "Offset render origin?", Command = "makespherical_offset" }) panel:AddControl( "Label", { Text = "Note: This only changes the position the prop's model is drawn at, getting the position or bounding box center in Lua or in " .. "E2 will give the exact same coordinates.\nThe prop's position will still be the center of the sphere." }) panel:AddControl( "Slider", { Label = "X Offset", Type = "Float", Min = "-100", Max = "100", Command = "makespherical_offset_x" }) panel:AddControl( "Slider", { Label = "Y Offset", Type = "Float", Min = "-100", Max = "100", Command = "makespherical_offset_y" }) panel:AddControl( "Slider", { Label = "Z Offset", Type = "Float", Min = "-100", Max = "100", Command = "makespherical_offset_z" }) panel:AddControl( "CheckBox", { Label = "Offset position by bounding box center instead", Command = "makespherical_useobbcenter" }) end end function TOOL:LeftClick( trace ) local ent = trace.Entity if not MakeSpherical.CanTool( ent ) then return false end if CLIENT then return true end if not ent.noradius then local OBB = ent:OBBMaxs() - ent:OBBMins() ent.noradius = math.max( OBB.x, OBB.y, OBB.z) / 2 end ent.obbcenter = ent.obbcenter or ent:OBBCenter() local offsetvec = Vector( self:GetClientNumber( "offset_x" ), self:GetClientNumber( "offset_y" ), self:GetClientNumber( "offset_z" ) ) local data = { // I store the obbcenter and "obb radius" because they are altered when SetCollisionBounds is used // This allows the spherical collisions to be reset even after duping obbcenter = ent.obbcenter, noradius = ent.noradius, radius = ent.noradius, mass = ent:GetPhysicsObject():GetMass(), enabled = true, isrenderoffset = self:GetClientNumber( "offset" ), renderoffset = ( self:GetClientNumber( "useobbcenter" ) == 1 ) and -ent.obbcenter or offsetvec } local constraintdata = MakeSpherical.CopyConstraintData( ent, true ) MakeSpherical.ApplySphericalCollisions( self:GetOwner(), ent, data ) timer.Simple( 0.01, function() MakeSpherical.ApplyConstraintData( ent, constraintdata ) end ) return true end function TOOL:RightClick( trace ) local ent = trace.Entity if not MakeSpherical.CanTool( ent ) then return false end if CLIENT then return true end if not ent.noradius then local OBB = ent:OBBMaxs() - ent:OBBMins() ent.noradius = math.max( OBB.x, OBB.y, OBB.z) / 2 end ent.obbcenter = ent.obbcenter or ent:OBBCenter() local offsetvec = Vector( self:GetClientNumber( "offset_x" ), self:GetClientNumber( "offset_y" ), self:GetClientNumber( "offset_z" ) ) local data = { obbcenter = ent.obbcenter, noradius = ent.noradius, radius = self:GetClientNumber( "radius" ), mass = ent:GetPhysicsObject():GetMass(), enabled = true, isrenderoffset = self:GetClientNumber( "offset" ), renderoffset = ( self:GetClientNumber( "useobbcenter" ) == 1 ) and -ent.obbcenter or offsetvec } local constraintdata = MakeSpherical.CopyConstraintData( ent, true ) MakeSpherical.ApplySphericalCollisions( self:GetOwner(), ent, data ) timer.Simple( 0.01, function() MakeSpherical.ApplyConstraintData( ent, constraintdata ) end ) return true end function TOOL:Reload( trace ) local ent = trace.Entity if not MakeSpherical.CanTool( ent ) then return false end if CLIENT then return true end if not ent.noradius then local OBB = ent:OBBMaxs() - ent:OBBMins() ent.noradius = math.max( OBB.x, OBB.y, OBB.z) / 2 end ent.obbcenter = ent.obbcenter or ent:OBBCenter() local data = { obbcenter = ent.obbcenter, noradius = ent.noradius, radius = ent.noradius, mass = ent:GetPhysicsObject():GetMass(), enabled = false, isrenderoffset = 0, renderoffset = nil } local constraintdata = MakeSpherical.CopyConstraintData( ent, true ) MakeSpherical.ApplySphericalCollisions( self:GetOwner(), ent, data ) timer.Simple( 0.01, function() MakeSpherical.ApplyConstraintData( ent, constraintdata ) end ) return true end
-- common metatable patterns and functionality -- copyright 2016 Samuel Baird MIT Licence local module = require('core.module') return module(function (meta) function meta.readonly(obj) local proxy = {} setmetatable(proxy, { __index = obj, __newindex = function (obj, property, value) error('object is readonly', 2) end }) return proxy end -- wrap an existing index metamethod as a function, regardless of what it currently is function meta.wrap_existing_index(metatable) local existing_index = metatable.__index if existing_index == nil then return function () end elseif type(existing_index) == 'table' then return function (obj, key) return existing_index[key] end else return existing_index end end -- wrap an existing newindex metamethod as a function, regardless of what it currently is function meta.wrap_existing_newindex(metatable) local existing_newindex = metatable.__newindex if existing_newindex == nil then return function (obj, key, value) rawset(obj, key, value) end elseif type(existing_newindex) == 'table' then return function (obj, key, value) existing_newindex[key] = value end else return existing_newindex end end -- invoke an index handler prior to the current metatables handler -- index_handler(obj, property, existing_handler) -> true, value if handled function meta.intercept_index(metatable, index_handler) local existing = meta.wrap_existing_index(metatable) metatable.__index = function (obj, property) local handled, value = index_handler(obj, property, existing) if handled then return value end return existing(obj, property) end end -- intercept_newindex return true if intercepted -- newindex_handler(obj, property, value, existing_handler) -> true if handled function meta.intercept_newindex(metatable, newindex_handler) local existing = meta.wrap_existing_newindex(metatable) metatable.__newindex = function (obj, property, value) local handled = newindex_handler(obj, property, value, existing) if not handled then existing(obj, property, value) end end end -- return a compound object that reads from a chain of other objects function meta.read_proxy_chain(init_item1, init_item2, ...) -- recursively add all init items onto the chain -- each item in the init list can be either a key value table to add to the chain -- or an array in which each entry is added to the chain local chain = {} local function add_to_chain(init_item1, init_item2, ...) if #init_item1 > 0 then -- if its an array treat each entry as an item on the chain for _, value in ipairs(init_item1) do chain[#chain + 1] = value end else chain[#chain + 1] = init_item1 end if init_item2 then add_to_chain(init_item2, ...) end end add_to_chain(init_item1, init_item2, ...) -- return an empty object and metatable to read from the chain until a value is found return setmetatable({}, { __index = function (proxy, property) for _, obj in ipairs(chain) do local v = obj[property] if v then -- store value on the property for subsequent reads proxy[property] = v -- return the found value return v end end end }) end end)
local config = { ["citizen"] = { male = 128, female = 136, addon = 3, items = { {5878,100} } }, ["hunter"] = { male = 129, female = 137, addon = 3, items = { {5876, 100}, {5948, 100} } }, ["mage"] = { male = 130, female = 138, addon = 3, items = { {2160, 1000} } }, ["knight"] = { male = 131, female = 139, addon = 3, items = { {5880, 100}, {5893, 100} } }, ["summoner"] = { male = 133, female = 141, addon = 3, items = { {2160,1000} } }, ["warrior"] = { male = 134, female = 142, addon = 3, items = { {5925, 100}, {5899, 100}, {5919, 1}, {5880, 100} } }, ["barbarian"] = { male = 147, female = 143, addon = 3, items = { {5911, 50}, {5910, 50}, {5879, 100} } }, ["druid"] = { male = 148, female = 144, addon = 3, items = { {5896, 50}, {5897, 50} } }, ["wizard"] = { male = 149, female = 145, addon = 3, items = { {2536, 1}, {2492, 1}, {2488, 1}, {2123, 1}, {5922, 50} } }, ["oriental"] = { male = 150, female = 146, addon = 3, items = { {5883, 100}, {5895, 100}, {5912, 100} } }, ["pirate"] = { male = 151, female = 155, addon = 3, items = { {6098, 100}, {6126, 100}, {6097, 100} } }, ["assassin"] = { male = 152, female = 156, addon = 3, items = { {5898, 30}, {5882, 10}, {5881, 30}, {5895, 20}, {5905, 10} } }, ["beggar"] = { male = 153, female = 157, addon = 3, items = { {5878, 50}, {2743, 30}, {5913, 20}, {5894, 10} } }, ["shaman"] = { male = 154, female = 158, addon = 3, items = { {3955, 5}, {5810, 5}, {3966, 5}, {3967, 5} } }, ["norseman"] = { male = 251, female = 252, addon = 3, items = { {7290, 15} } }, ["nightmare"] = { male = 268, female = 269, addon = 3, items = { {6500, 200} } }, ["jester"] = { male = 273, female = 270, addon = 3, items = { {2160, 25} } }, ["brotherhood"] = { male = 278, female = 279, addon = 3, items = { {6500, 200} } } } function onSay(player, words, param) local v = config[param:lower()] if not v then return false end local outfit = player:getSex() == PLAYERSEX_FEMALE and v["female"] or v["male"] if player:hasOutfit(outfit, 3) then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You have already obtained the " .. param .. " addons.") return false end local text = "" for i = 1, #v["items"] do local itemType = ItemType(v["items"][i][1]) text = text .. (i ~= 1 and (i == #v["items"] and " and " or ", ") or "") .. (v["items"][i][2] > 1 and v["items"][i][2] or itemType:getArticle()) .. " " .. (v["items"][i][2] > 1 and itemType:getPluralName() or itemType:getName()) end for i = 1, #v["items"] do if player:getItemCount(v["items"][i][1]) < v["items"][i][2] then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You need " .. text .. " for the whole " .. param .. " outfit.") return false end end for i = 1, #v["items"] do player:removeItem(unpack(v["items"][i])) end player:addOutfitAddon(v["female"], 3) player:addOutfitAddon(v["male"], 3) player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "Enjoy your new addons to your " .. param .. " outfit!") player:getPosition():sendMagicEffect(CONST_ME_FIREWORK_YELLOW) return false end
Locales ['fi'] = { ['buy_license'] = 'osta lisenssi?', ['yes'] = 'kyllä', ['no'] = 'ei', ['buy'] = 'sinä ostit', ['not_enough_black'] = 'ei tarpeeksi likaista rahaa', ['not_enough'] = 'sinulla ei ole tarpeeksi rahaa', ['shop'] = 'kauppa', ['shop_menu'] = 'paina ~INPUT_CONTEXT~ avataksesi kauppa ikkuna.', ['map_blip'] = 'asekauppa', }
--------------------------------------------------------------------- ---- Convert AD binary schlib to kicad symbol lib ---- Use 7z to unpack the compound format binary library ---- Get the headerfile of the library, then parse the element in each ---- componment --------------------------------------------------------------------- require("util") require("pcad_lib") -- UTF8 encoding -- 0xxx xxxx -- 110x xxxx 10xxxxxx -- 1110 xxxx 10xxxxxx 10xxxxxx -- 1111 0xxx 10xxxxxx 10xxxxxx 10xxxxxx -- 1111 10xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx -- 1111 110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx local function ensureUTF8(str) local lead = 0 if not string.find(str, "[\x80-\xff]") then return str end local r = true for i=1,#str do local t = str:byte(i) if lead > 0 then if t > 0xC0 then r = false break end lead = lead - 1 else if t < 0x80 then lead = 0 elseif t >= 0xc0 then if t < 0xe0 then lead = 1 elseif t < 0xf0 then lead = 2 elseif t < 0xf8 then lead = 3 elseif t < 0xfC then lead = 4 elseif t < 0xfE then lead = 5 else r = false break end else r = false break end end end if not r then local s = string.gsub(str, "[\x80-\xff].", "??") if _G.logE then _G.logE("String Not ASCII or UTF8 Convert", str, "to", s) end print("Warning: String Not ASCII or UTF8 Convert", str, "to", s) return s end return str end local function get_str(object, field) return ensureUTF8(object[ [[%UTF8%]] .. field] or object[field] or "") end local delimer = "|+" local logData = print local function parseADBlock(data, pos) local r = {} local length, t = string.unpack("I2I2", data, pos) local lastPos = pos+4+length pos = pos + 4 if t ~= 0 then r.bin = string.sub(data, pos, lastPos-1) return r,lastPos end while pos < lastPos do local p1,p2 = string.find(data, delimer, pos) if not p1 then if pos < lastPos-1 then p1=lastPos+1 p2 = p1 else return r,lastPos end end --logData(p1,p2, pos) if p1>pos then if p1>lastPos then p1 = lastPos - 1 end local record = string.sub(data, pos, p1-1) --logData(record) string.gsub(record, "([^=]+)=([^=]+)", function(k,v) r[k] = v end) end pos = p2 + 1 end return r,lastPos end local function parseADBlockFile(fileName) local f,e = io.open(fileName, "rb") local blocks = {} if f then local r = f:read("*a") --logData("Get ",#r, "bytes from ", fileName) local pos = 1 while pos < #r do data, pos = parseADBlock(r, pos) blocks[#blocks+1] = data end f:close() return blocks else logData(e) end end local function buildFont(fontID, fonts) local font = { w = 50, h = 50, thickness= 10, } if fontID and fonts[fontID] then font.w = math.floor(fonts[fontID].size * 5) font.h = font.w font.thickness = 10 end return font end local function parse_Header(headerName) local blocks = parseADBlockFile(headerName) local compList = {} local fonts = {} if #blocks > 0 then local block = blocks[1] local cnt = tonumber(block.COMPCOUNT) local compCnt = cnt if not cnt then logData("No comp in file " .. headerName) return end for i=1,cnt do local nRef = 'LIBREF' .. tostring(i-1) local n = 'COMPDESCR'..tostring(i-1) local nUtf = '%UTF8%COMPDESCR'..tostring(i-1) compList[#compList+1] = { name = block[nRef], desc = get_str(block,n), desc8 = block[nUtf], } --logData(block[nRef]) end cnt = tonumber(block.FONTIDCOUNT) if not cnt then logData("No font in file " .. headerName) return end for i=1,cnt do local n = tostring(i) fonts[n] = { size = block["SIZE"..n], name = block["FONTNAME"..n], unerline = block["UNDERLINE"..n], } end if #compList ~= compCnt then logData("Comp count parse error", #compList, compCnt) end return compList, fonts else logData("Fail to parse block in header") end return {},{} end local ad2kicad_line_width_t = { ['0'] = 1, ['1'] = 10, ['2'] = 30, ['3'] = 60, } local function getWidth(width) if width and ad2kicad_line_width_t[width] then return ad2kicad_line_width_t[width] end return 0 end local function ad2kicad_CoordValue(data) if data then if type(data) == 'string' then string.gsub(data, "([%+%-%d%.]+)", function(x) data = x end) end return math.floor(tonumber(data) * 10) end return 0 end local ad2kicad_textJustify = { [0] = {'B', 'L'}, [1] = {'B', 'C'}, [2] = {'B', 'R'}, [3] = {'C', 'L'}, [4] = {'C', 'C'}, [5] = {'C', 'R'}, [6] = {'T', 'L'}, [7] = {'T', 'C'}, [8] = {'T', 'R'}, } local ad2kicad_pinType = { [0] = "I_Input", [1] = "B_I/O", [2] = "O_Output", [3] = "C_Open Collector", [4] = "P_Passive", [5] = "T_HiZ", [6] = "E_Open Emitter", [7] = "W_Power", } local function split_name(n) local p = string.find(n,"_") if p then return string.sub(n,1,p-1),n end return "",n end local function get_pin_type(t) if ad2kicad_pinType[t] then return split_name(ad2kicad_pinType[t]) end logData("Pin type not found for " .. tostring(t) .. ", convert to passive") return split_name(ad2kicad_pinType[4]) end local kicad_pinShape_t = { [0] = " line", [1] = "I_Invert", [2] = "C_Clock", [3] = "IC_InvClock", [4] = "L_LowInput", [5] = "CL_LowClock", [6] = "V_LowOutput", [7] = "F_ClockNegEdge", [8] = "X_LogicNot", } local function get_pin_shage(shape) local t = kicad_pinShape_t[shape] if t then return split_name(t) end logData("Pin shape not found for " .. tostring(shape) .. ", convert to default") return "","default" end local function BF(d, From, To) To = To or From if _G.bit32 then d = bit32.rshift(d, From) return bit32.band(d, (2^(To-From+1)) - 1) end local t1 = math.floor(d/ (2^From)) local div = 2^(To-From+1) local t2 = math.modf(t1/div) return t1 - (t2 * div) end local InEdgeClock = 3 local OutEdgeDot = 1 local OutEdgeLowIn = 4 local OutEdgeLowOut = 17 local OutNot = 6 local function get_shape(inEdge, outEdge, inShape, outShape) if outShape == OutNot then return get_pin_shage(8) end if inEdge == InEdgeClock then if outEdge == OutEdgeLowIn then return get_pin_shage(5) end if outEdge == OutEdgeDot then return get_pin_shage(3) end return get_pin_shage(2) end if outEdge == OutEdgeDot then return get_pin_shage(1) end if outEdge == OutEdgeLowIn then return get_pin_shage(4) end if outEdge == OutEdgeLowOut then return get_pin_shage(6) end return get_pin_shage(0) end local function adPinToSymbol(pin) local r = string.gsub("X $name $num $x $y $pinLength $dir $nameSize $numSize $partNum 1 $eleType", "%$(%w+)", pin) if pin.hide then r = r .. " N" .. pin.shape end if pin.shape ~= "" then return r .. " " .. pin.shape end return r end local function next_is_bar(n,i) if i+1<=#n then local t = string.sub(n,i+1,i+1) return t == "\\" end return false end local function make_symbol_pin_name(n) local r = string.gsub(n, " ", " ") r = string.gsub(r, " ", "_") r = string.gsub(r, "[%s]+", "") r = string.gsub(r, "^[\\]+", "") local res = "" local isBar = false local i = 1 while i <= #r do local t = string.sub(r,i,i) if next_is_bar(r, i) then if not isBar then res = res .. "~" end isBar = true i = i + 1 else if isBar then res = res .. "~" end isBar = false end res = res .. t i = i + 1 end return res end local function parsePin(data,fonts, comp) local pin = {} pin.partNum = string.unpack("I1", data, 6) local inEdge,outEdge,inShape, outShape = string.unpack("I1I1I1I1", data, 9) pin.shape, pin.lShape = get_shape(inEdge, outEdge, inShape, outShape) local pos = 13 local strLen = string.unpack("I1", data, pos) local str = string.unpack("c" .. strLen, data, pos+1) pin.desc = str pos = pos + 1 + strLen pos = pos + 1 pin.t,pin.dir,pin.len, pin.x, pin.y = string.unpack("i1i1i2i2i2", data, pos) pin.disName = BF(pin.dir, 3) == 1 --and "show" or "hide" pin.disNum = BF(pin.dir, 4) == 1 --and "show" or "hide" pin.disNameT = tostring(pin.disName) pin.disNumT = tostring(pin.disNum) pin.hide = BF(pin.dir,2) == 1 --and "hide" or "show" pin.hideT = tostring(pin.hide) pin.dir = toKicadPinDir(math.floor(BF(pin.dir,0,1) * 90)) pin.pinLength = ad2kicad_CoordValue(pin.len) pin.x = ad2kicad_CoordValue(pin.x) pin.y = ad2kicad_CoordValue(pin.y) if pin.dir == "R" then pin.x = pin.x - pin.pinLength pin.bbox = BBOX.create(pin.pinLength, 10, pin.x + pin.pinLength/2, pin.y) elseif pin.dir == "L" then pin.x = pin.x + pin.pinLength pin.bbox = BBOX.create(pin.pinLength, 10, pin.x - pin.pinLength/2, pin.y) elseif pin.dir == "U" then pin.y = pin.y - pin.pinLength pin.bbox = BBOX.create(10, pin.pinLength, pin.x , pin.y + pin.pinLength/2) elseif pin.dir == "D" then pin.y = pin.y + pin.pinLength pin.bbox = BBOX.create(10, pin.pinLength, pin.x , pin.y - pin.pinLength/2) end -- TODO need parse the PinTextData to get the pin text size pin.nameSize = 50 pin.numSize = 50 pos = pos + 8 pos = pos + 4 local l1 = string.unpack("I1", data, pos) local n1 = string.unpack("c"..l1, data, pos+1) pos = pos + 1 + l1 local l2 = string.unpack("I1", data, pos) local n2 = string.unpack("c"..l2, data, pos + 1) pin.name = make_symbol_pin_name(n1) pin.name = ensureUTF8(pin.name) pin.num = n2 pin.eleType,pin.tl = get_pin_type(pin.t) pin.toSymbol = adPinToSymbol comp.pins[#comp.pins+1] = pin end local function parseText(block,fonts,comp) local t = block.NAME or 'user' local value = get_str(block, "TEXT") local x = ad2kicad_CoordValue(block['LOCATION.X']) local y = ad2kicad_CoordValue(block['LOCATION.Y']) local rotate = block['ORIENTATION'] or 0 local hide = false local just = tonumber(block.JUSTIFICATION) or 0 if block.ISHIDDEN and block.ISHIDDEN=='T' then hide = true end rotate = tonumber(rotate) * 90 local font = buildFont(block.FONTID, fonts) local hJust = ad2kicad_textJustify[just] and ad2kicad_textJustify[just][2] or 'C' local vJust = ad2kicad_textJustify[just] and ad2kicad_textJustify[just][1] or 'C' if t == 'Designator' then value = string.sub(value,1,-2) comp.ref = value == "" and 'U' or value end --x = math.floor(tonumber(x)) --x = math.floor(tonumber(y)) local v = { x = x, y = y, value = value, t = t, rotate = rotate, font = font, hide = hide, layer = 'symbol', toSymbol = textToSymbol, isText = true, hJust = hJust, vJust = vJust, } comp.texts = comp.texts or {} comp.texts[#comp.texts+1] = v end local function list_block(block) for k,v in pairs(block) do logData(" "..k.."="..v) end end local function parseCompHeader(block,fonts,comp) --list_block(block) comp.name = get_str(block, "LIBREFERENCE") comp.drawPinNo = 'Y' comp.drawPinName = 'Y' comp.ref = '***' comp.partNum = block.PARTCOUNT comp.description = get_str(block, "COMPONENTDESCRIPTION") --[ [[%UTF8%COMPONENTDESCRIPTION]] ] or block[ [[COMPONENTDESCRIPTION]] ] or "" end local function parseDummy(block,fonts,comp) return {} end local function element(array) local i = 0 return function() i = i + 1 return array[i] end end local function parseFP(block,fonts,comp) comp.FPName = block.MODELNAME end local function rectToSymbol(rect) return string.gsub("S $x1 $y1 $x2 $y2 $part 1 $width $fill", "%$(%w+)", rect) end local function parseRectangle(block, fonts, comp) --logData("Rectangle") --list_block(block) local f = block.ISSOLID and block.ISSOLID == 'T' local r = { x1 = ad2kicad_CoordValue(block['LOCATION.X']), y1 = ad2kicad_CoordValue(block['LOCATION.Y']), x2 = ad2kicad_CoordValue(block['CORNER.X']), y2 = ad2kicad_CoordValue(block['CORNER.Y']), part = block.OWNERPARTID or 0, width = getWidth(block.LINEWIDTH), fill = f and 'f' or 'N', toSymbol = rectToSymbol, } r.bbox = BBOX.create2P(r.x1,r.y1,r.x2,r.y2) comp.graphs[#comp.graphs+1] = r end local function parseArc(block, fonts, comp) local x = ad2kicad_CoordValue(block['LOCATION.X']) local y = ad2kicad_CoordValue(block['LOCATION.Y']) local r = ad2kicad_CoordValue(block.RADIUS) local startAngle = block.STARTANGLE or 0 local sweepAngle = block.ENDANGLE or 0 sweepAngle = sweepAngle - startAngle local width = getWidth(block.LINEWIDTH) local v = toKicadArc(x,y,r,startAngle,sweepAngle,width,"symbol") v.part = block.OWNERPARTID or 0 local f = block.ISSOLID and block.ISSOLID == 'T' v.fill = f and 'f' or 'N' v.bbox = BBOX.create(r*2,r*2) v.bbox = BBOX.moveTo(v.bbox, x, y) comp.graphs[#comp.graphs+1] = v end local function parseElliArc(block, fonts, comp) -- just ignore the second radius return parseArc(block, fonts, comp) end local function parseElliCircle(block, fonts, comp) block.STARTANGLE = 0 block.ENDANGLE = 360 return parseArc(block, fonts, comp) end local function buildShape(shape, x1,y1, x2,y2, size) -- TODO support for the line shape end local function parseLine(block, fonts, comp) --list_block(block) local pts = {} pts[1] = {ad2kicad_CoordValue(block['LOCATION.X']), ad2kicad_CoordValue(block['LOCATION.Y'])} pts[2] = {ad2kicad_CoordValue(block['CORNER.X']), ad2kicad_CoordValue(block['CORNER.Y'])} local v = toKicadPoly(pts, "symbol") v.fill = 'N' v.part = block.OWNERPARTID or 0 v.width = getWidth(block.LINEWIDTH) v.directOutput = true comp.graphs[#comp.graphs+1] = v end local function parsePolyLine(block, fonts, comp) local cnt = tonumber(block.LOCATIONCOUNT) --list_block(block) local pts = {} for i=1,cnt do pts[#pts+1] = {ad2kicad_CoordValue(block['X'..i]), ad2kicad_CoordValue(block['Y'..i])} end local v = toKicadPoly(pts, "symbol") v.fill = 'N' v.part = block.OWNERPARTID or 0 v.width = getWidth(block.LINEWIDTH) v.directOutput = true comp.graphs[#comp.graphs+1] = v end local function parsePoly(block, fonts, comp) local cnt = tonumber(block.LOCATIONCOUNT) local pts = {} for i=1,cnt do pts[#pts+1] = {ad2kicad_CoordValue(block['X'..i]), ad2kicad_CoordValue(block['Y'..i])} end pts[#pts+1] = pts[1] local v = toKicadPoly(pts, "symbol") local f = block.ISSOLID and block.ISSOLID == 'T' v.fill = f and 'f' or 'N' v.part = block.OWNERPARTID or 0 v.width = getWidth(block.LINEWIDTH) v.directOutput = true comp.graphs[#comp.graphs+1] = v end local function bLineToSymbol(bline) local r = string.gsub("B $count $part 1 $width ", "%$(%w+)", bline) for i=1,#bline.pts do local x,y = bline.pts[i][1], bline.pts[i][2] r = r .. x .. " " .. y .. " " end return r .. bline.fill end local function parseBLine(block, fonts, comp) logData("Not support bline right now") --[[ local cnt = tonumber(block.LOCATIONCOUNT) local pts = {} for i=1,cnt do pts[#pts+1] = {ad2kicad_CoordValue(block['X'..i]), ad2kicad_CoordValue(block['Y'..i])} end local v = {} v.pts = pts v.count = #pts v.part = block.OWNERPARTID or 0 v.width = getWidth(block.LINEWIDTH) local f = block.ISSOLID and block.ISSOLID == 'T' v.fill = f and 'f' or 'N' v.toSymbol = bLineToSymbol comp.graphs[#comp.graphs+1] = v --]] end ------------------------------------------------------------------------------------ -------------Convert IEEE symbol to kicad symbol begin ----------------------------- ------------------------------------------------------------------------------------ local function IEEE_polyLine_method(param, block, fonts, comp) local pts = {} local x = ad2kicad_CoordValue(block['LOCATION.X']) local y = ad2kicad_CoordValue(block['LOCATION.Y']) local rotate = nil if block.ORIENTATION then rotate = tonumber(block.ORIENTATION) * 90 end local scale = ad2kicad_CoordValue(block.SCALEFACTOR) scale = scale / 100 for pt in element(param) do local tx,ty = pt[1]*scale + x, pt[2]*scale + y if rotate then tx,ty = rotate_p2p(x,y,tx,ty,rotate) end pts[#pts+1] = {math.floor(tx), math.floor(ty)} end local v = toKicadPoly(pts, "symbol") local f = block.ISSOLID and block.ISSOLID == 'T' v.fill = f and 'f' or 'N' v.part = block.OWNERPARTID or 0 v.width = getWidth(block.LINEWIDTH) v.directOutput = true comp.graphs[#comp.graphs+1] = v end local function IEEE_circle_method(param, block, fonts, comp) block.RADIUS = tostring(tonumber(block.SCALEFACTOR)/2) parseElliCircle(block, fonts, comp) end local function IEEE_arc_method(param, block, fonts, comp) factor = tonumber(block.SCALEFACTOR) local scale = factor / 100 local rotate = 0 if block.ORIENTATION then rotate = tonumber(block.ORIENTATION) * 90 end local x = block['LOCATION.X'] local y = block['LOCATION.Y'] local mx,my = param.x*scale + x, param.y*scale + y mx,my = rotate_p2p(x,y,mx,my, rotate) block['LOCATION.X'] = mx block['LOCATION.Y'] = my block.RADIUS = param.r*scale block.STARTANGLE = param.startAngle + rotate block.ENDANGLE = param.endAngle + rotate parseArc(block, fonts, comp) end local function IEEE_mixed_method(param, block, fonts, comp) for action in element(param) do action.method(action.param, block, fonts, comp) end end ----------------------------------------------------------------------------------- ---- How to add new IEEE symbol ---- 1. Create a IEEE symbol in AD, with x,y = 0,0, rotate = 0, scale = 100 ---- 2. For poly lines, record the points coordinate in AD ---- 3. For circle witch center is at 0,0, use IEEE_circle_method without param ---- 4. For circle center not at 0,0, record the center and radius, ---- set startAngle = 0, endAngle = 360, use IEEE_arc_method ---- 5. For arc, record the center point, radius and start/end angle ---- 6. For poly line with arc, combine them with IEEE_mixed_method local IEEE_sym = { ['1'] = { -- dot method = IEEE_circle_method, param = {} }, ['2'] = { -- right left signal flow method = IEEE_polyLine_method, param = {{0,40},{120,0},{120, 80},{0,0}} }, ['3'] = { -- clock method = IEEE_polyLine_method, param = {{0,0},{0,80},{120, 40},{0,0}} }, ['4'] = { -- active low input method = IEEE_polyLine_method, param = {{0,0},{120,0},{0, 60},{0,0}} }, ['5'] = { -- analog in method = IEEE_mixed_method, param = { { method = IEEE_polyLine_method, param = {{0,30},{0,0},{60,0},{60,30}} }, { method = IEEE_arc_method, param = {x=30,y=30,r=30,startAngle = 0, endAngle = 180} }, } }, ['6'] = { -- not logic connection method = IEEE_mixed_method, param = { { method = IEEE_polyLine_method, param = {{0,0},{80,80}} }, { method = IEEE_polyLine_method, param = {{0,80},{80,0}} }, } }, ['7'] = { -- shift right method = IEEE_polyLine_method, param = {{0,0}, {60,-30}, {60,30}, {0,0}} }, ['8'] = { -- postpond out method = IEEE_polyLine_method, param = {{80,0}, {80,80}, {0,80}} }, ['9'] = { -- open collector method = IEEE_mixed_method, param = { { method = IEEE_polyLine_method, param = {{0,0}, {80,0}}, }, { method = IEEE_polyLine_method, param = {{0,40}, {40,0}, {80,40}, {40, 80}, {0, 40}}, }, } }, ['10'] = { -- HiZ method = IEEE_polyLine_method, param = {{0,80}, {40,0}, {80,80}, {0,80}} }, ['11'] = { -- high current method = IEEE_polyLine_method, param = {{0,0},{0,80},{80, 40},{0,0}} }, ['12'] = { -- pulse method = IEEE_polyLine_method, param = {{0,0},{80,0},{80, 80},{160,80}, {160, 0}, {240,0}} }, ['13'] = { -- schmitt method = IEEE_polyLine_method, param = {{0,0},{120,10},{120, 70},{160,80}, {40,70}, {40,10},{0,0}} }, ['14'] = { -- delay method = IEEE_polyLine_method, param = {{0,-20},{0,20},{0, 0},{200,0}, {200, -20} , {200, 20}} }, } local function drawIEEESymbol(symbol, block, fonts, comp) local is = IEEE_sym[symbol] if is then is.method(is.param, block, fonts, comp) else logData("IEEE symbol " .. symbol .. " not support") end end local function parseIEEESymbol(block, fonts, comp) local sym = block.SYMBOL drawIEEESymbol(sym, block, fonts, comp) --logData("IEEE") --list_block(block) end ------------------------------------------------------------------------------------ -------------Convert IEEE symbol to kicad symbol end ------------------------------- ------------------------------------------------------------------------------------ local record_t = { ['1'] = parseCompHeader, ['41'] = parseText, ['34'] = parseText, ['4'] = parseText, ['44'] = parseDummy, ['45'] = parseFP, ['46'] = parseDummy, ['48'] = parseDummy, ['14'] = parseRectangle, ['12'] = parseArc, ['6'] = parsePolyLine, ['13'] = parseLine, ['7'] = parsePoly, ['5'] = parseBLine, ['11'] = parseElliArc, ['8'] = parseElliCircle, ['3'] = parseIEEESymbol, } local function mkDummy(text, t) text = text and '"' .. text .. '"' or '"Dummy"' t = t and '"' .. t .. '"' or '"Dummy"' return { x = 0, y = 0, value = text, t = t, rotate = 0, font = {w=50,h=50,thickness=10}, hide = true, layer = 'symbol', toSymbol = textToSymbol, isText = true, } end local function adCompToSymbol(comp, libname4symbol) local r = "#\n# " .. comp.name .. "\n#\n" local pin_str = "" local graph_str = "" comp.drawPinNo = 'N' comp.drawPinName = 'N' local partUsed = {} local bbox = BBOX.create(1,1) for pin in element(comp.pins) do pin_str = pin_str .. pin:toSymbol() .. "\n" if pin.disName then comp.drawPinName = 'Y' end if pin.disNum then comp.drawPinNo = 'Y' end partUsed[tonumber(pin.partNum)] = 1 bbox = BBOX.merge(bbox, pin.bbox) end for graph in element(comp.graphs) do graph_str = graph_str .. graph:toSymbol() .. "\n" partUsed[tonumber(graph.part)] = 1 bbox = BBOX.merge(bbox, graph.bbox) end comp.partNum = #partUsed comp.defName = make_name(comp.name) r = r .. string.gsub([[DEF $defName $ref 0 40 $drawPinNo $drawPinName $partNum F N]], "%$(%w+)", comp) r = r .. "\n" local fp = comp.FPName if libname4symbol and libname4symbol ~= "" then fp = libname4symbol .. ":" .. string.upper(fp) end local bbl,bbt,bbr,bbb = BBOX.splitBB(bbox) local texts = {mkDummy(),mkDummy(comp.name),mkDummy(fp),mkDummy(""), mkDummy(comp.description, 'description')} texts[3].x = math.floor(bbl) texts[3].y = math.floor(bbt - 200) texts[3].hJust = 'L' texts[3].vJust = 'B' texts[2].x = math.floor(bbl + 50) texts[2].y = math.floor(bbb + 150) texts[2].hJust = 'L' texts[2].vJust = 'B' local vPos = math.floor(bbt - 300) for text in element(comp.texts) do if text.t == 'Designator' then text.x = math.floor(bbl) text.y = math.floor(bbb + 50) texts[1] = text elseif text.t == 'Comment' then text.x = math.floor(bbl + 150) text.y = math.floor(bbb + 50) texts[#texts+1] = text elseif text.t == 'ComponentLink1URL' then text.x = math.floor(bbl) text.y = math.floor(bbt - 100) texts[4] = text else if text.t ~= "user" then text.x = math.floor(bbl) text.y = math.floor(vPos) end texts[#texts+1] = text vPos = vPos - 100 end text.value = text.value or "" text.value = '"'..text.value..'"' text.t = '"'..text.t..'"' end for i=1,#texts do r = r .. texts[i]:toSymbol(i-1, i>4) .. "\n" end r = r .. "DRAW\n" r = r .. graph_str .. pin_str r = r .. "ENDDRAW\nENDDEF\n" return r end local function parseComp(compPath, fonts) local blocks = parseADBlockFile(compPath.."/data") local r = {} r.texts = {} r.graphs = {} r.pins = {} for i=1,#blocks do local bk = blocks[i] if bk.bin then parsePin(bk.bin,fonts,r) else local rec = tostring(bk.RECORD,fonts) if record_t[rec] then local g = record_t[rec](bk,fonts,r) else logData("Unknown record type " .. rec .. " in " .. compPath) list_block(bk) end end end r.toSymbol = adCompToSymbol return r end function parse_schlib(libpath, logFunc) logData = logFunc or logData local compList, fonts = parse_Header(libpath.."/FileHeader") local comps = {} for i=1,#compList do local n = string.gsub(compList[i].name, "([/\\%*])", "_") if #n > 31 then n = string.sub(n,1,31) end if string.sub(n,#n,#n) == '.' then n = string.sub(n,1,#n-1) .. '_' end local comp = parseComp(libpath.."/"..n, fonts) comps[#comps+1] = comp end return comps end function convert_schlib(inputName, outputName, fpLibName,logFunc) logData = logFunc or logData local oPath = string.gsub(inputName, "(%.[^%.]+)$", "") exec('7z x "'..inputName ..'" -y -o"'..oPath..'"') if not outputName or outputName == "" then outputName = oPath .. ".lib" end local comps = parse_schlib(oPath) local f,e = io.open(outputName, "w+") if f then f:write([[ EESchema-LIBRARY Version 2.4 #encoding utf-8 ]]) for comp in element(comps) do f:write(comp:toSymbol(fpLibName)) end f:write("\n#\n#End Library") f:close() else logData(e) end exec('rd "' .. oPath .. '" /Q /S') end
module(..., package.seeall) function apply(env, options) tundra.unitgen.load_toolset("generic-dotnet", env) env:set_many { ["DOTNET_SUFFIXES"] = { ".cs" }, ["DOTNET_SUFFIXES_RESOURCE"] = { ".resource" }, ["CSC"] = "gmcs", ["CSPROGSUFFIX"] = ".exe", ["CSLIBSUFFIX"] = ".dll", ["CSRESGEN"] = "resgen2 $(<) $(@)", ["_CSC_COMMON"] = "-warn:$(CSC_WARNING_LEVEL) /nologo $(CSLIBPATH:p-lib\\:) $(CSRESOURCES:p-resource\\:) $(CSLIBS:p-reference\\::A.dll)", ["CSCLIBCOM"] = "$(CSC) $(_CSC_COMMON) $(CSCOPTS) -target:library -out:$(@) $(<)", ["CSCEXECOM"] = "$(CSC) $(_CSC_COMMON) $(CSCOPTS) -target:exe -out:$(@) $(<)", } end
--************************ --name : SINGLE_AG_BD_01.lua --ver : 0.1 --author : Kintama --date : 2004/09/08 --lang : en --desc : Single Assassination Group for Blackdragon --npc : --************************ --changelog: --2004/09/08(0.1): Added description --************************ function DIALOG() NODE(0) GENDERCHECK() if (result==1) then SAY("Welcome to Black Dragon. Can I help you?") SAY("Good day and welcome to Black Dragon. Can I be of service?") SAY("Black Dragon bids you welcome. Are you here about the job?") SAY("Greetings, sir. What is your business with the Clan?") SAY("You have entered Clan territory, sir. What or who are you looking for?") ANSWER("Oh, I am just looking around. Thanks.",1) ANSWER("What can you tell me about this place?",1) ANSWER("Hey. What is this place?",1) ANSWER("Oh sorry, I thought you were someone else.",1) ANSWER("Yes, came regarding the contract.",2) ANSWER("OK, I heard you required a competent shark.",2) ANSWER("All right, I'm here for an assignment I took on the Black Dragon terminal.",2) else SAY("Welcome to Black Dragon, miss...") SAY("Good day, miss. Black Dragon welcomes you. Can I be of assistance?") SAY("Have you come about the job, miss?") SAY("You are on Clan territory, miss. What is you want with Black Dragon?") SAY("The Clan welcomes you. What, or who, are you looking for?") ANSWER("I am just looking around. Thanks.",1) ANSWER("What can you tell me about this place?",1) ANSWER("Nice place. What do you do here?",1) ANSWER("Pardon me, I thought you were someone else.",1) ANSWER("Yes, I cae about the job.",2) ANSWER("Greetings, the Black Dragon terminal referred me to you regarding an assignment.",2) end NODE(1) GENDERCHECK() if (result==1) then SAY("If you don't have any business with Black Dragon I suggest you leave, before we remove you.") SAY("If you have no real business here I suggest you leave, sir. Preferably before you overstay your welcome.") SAY("For general information about the Clan please consult the terminals.") SAY("Thank you for the visit, sir. Now leave.") ENDDIALOG() else SAY("If you don't have any business with Black Dragon I suggest you leave, before we remove you.") SAY("If you have no real business here I suggest you leave, miss. Preferably before you overstay your welcome.") SAY("For general information about the Clan please consult the terminals.") SAY("Thank you for the visit, miss. Now leave.") ENDDIALOG() end NODE(2) -- Giving Mission SAY("People under our protection have complained about aggressive %TARGET_NPCNAME(0) in the area. It would please us greatly if you killed %TARGET_VALUE(0,1) of them. Swing by here ones you are done.") SAY("Some of our... clients... have been having problems with %TARGET_VALUE(0,1) %TARGET_NPCNAME(0) in the faction area. Kill them and get back to me so we can talk about compensation.") SAY("Well then, to the business at hand. We have had reports of troublesome %TARGET_NPCNAME(0) in this area. Kill atleast %TARGET_VALUE(0,1) of them and then get back to me for compensation.") SETNEXTDIALOGSTATE(3) ENDDIALOG() NODE(3) ISMISSIONTARGETACCOMPLISHED(0) if (result==0) then -- Mission is not accomplished SAY("You haven't done your job yet. There are more %TARGET_NPCNAME(0) left. Failure is not acceptable...") SAY("Shark, you haven't done as you were instructed. Destroy the %TARGET_NPCNAME(0) or pay the price of failure.") SAY("Shark, I hired you to do a job. Failure is not acceptable. Neither is laziness. Do the job or prepare to run. Far.") SAY("You have your assignment, Shark. See to it.") ENDDIALOG() else -- Mission was accomplished SAY("My soldiers tell me you have succeeded. Good. A reward of %REWARD_MONEY() credits will be transfered to your account. I hope the offer is acceptable?") SAY("Nicely done, shark. Very nicely done. All %TARGET_NPCNAME(0) have been killed. %REWARD_MONEY() credits have been moved to your acccount. Check the terminals for more assignments.") SAY("You are crude but efficient, young shark. The %REWARD_MONEY() credits have been moved to your account. The Black Dragons always have need for people like yourself.") ACTIVATEDIALOGTRIGGER(1) ENDDIALOG() end end
-- -- Generated from file.lt -- local Slash = package.config:sub(1, 1) return {Slash = Slash, read = function(path) local f = assert(io.open(path, "r")) local text = f:read("*all") f:close() return text end, write = function(path, text) local f = assert(io.open(path, "w")) f:write(text) f:close() end, localize = function(path) if Slash == "\\" then return string.gsub(path, "/", Slash) end return string.gsub(path, "\\", Slash) end, filename = function(path) return string.match(path, "[^/]*$") end}
local DefaultOnStrike = function(inst) if inst.components.health and not inst.components.health:IsDead() then local protected = false if GetPlayer().components.inventory:IsInsulated() then protected = true end if not protected then local mult = TUNING.ELECTRIC_WET_DAMAGE_MULT * inst.components.moisture:GetMoisturePercent() local damage = -(TUNING.LIGHTNING_DAMAGE + (mult * TUNING.LIGHTNING_DAMAGE)) -- Magic hit point stuff that isn't being used right now -- if damage >= inst.components.health.currenthealth - 5 and inst.components.health.currenthealth > 10 then -- damage = inst.components.health.currenthealth - 5 -- end inst.components.health:DoDelta(damage, false, "lightning") inst.sg:GoToState("electrocute") else inst:PushEvent("lightningdamageavoided") end end end local PlayerLightningTarget = Class(function(self, inst) self.inst = inst self.hitchance = 0.3 self.onstrikefn = DefaultOnStrike end) function PlayerLightningTarget:SetHitChance(chance) self.hitchance = chance end function PlayerLightningTarget:GetHitChance() return self.hitchance end function PlayerLightningTarget:SetOnStrikeFn(fn) self.onstrikefn = fn end function PlayerLightningTarget:DoStrike() if self.onstrikefn then self.onstrikefn(self.inst) end end return PlayerLightningTarget
-- Called OnSpellStart function Cyclone(event) local target = event.target local caster = event.caster local ability = event.ability -- Checking if target has spell block, if target has spell block, there is no need to execute the spell if not target:TriggerSpellAbsorb(ability) then local hero_duration = ability:GetLevelSpecialValueFor("duration_hero", ability:GetLevel() - 1) local creep_duration = ability:GetLevelSpecialValueFor("duration_creeps", ability:GetLevel() - 1) -- Play sound target:EmitSound("Brewmaster_Storm.Cyclone") if target:IsRealHero() then target:AddNewModifier(caster, ability, "modifier_brewmaster_storm_cyclone", {duration=hero_duration}) else target:AddNewModifier(caster, ability, "modifier_brewmaster_storm_cyclone", {duration=creep_duration}) end end end
-- @Author:pandayu -- @Version:1.0 -- @DateTime:2018-09-09 -- @Project:pandaCardServer CardGame -- @Contact: QQ:815099602 local config = require "game.config" local timetool = require "include.timetool" local roleMgr = require "manager.roleMgr" local mailMgr = require "manager.mailMgr" local CDb = require "include.db" local table_insert = table.insert local cjson = require "include.cjson" local _M = {} _M.data = { activity ={}, } _M.type={ fund = 1, } _M.funs={ [1] = { model = "fund", count = {30,100,300}}, } function _M:init(db_config) self.data.stage ={} self.db = CDb:new(db_config) local result = self.db:get_all_record() if not result then return false end local find_hid = false for i=1,#result do local v = result[i] if v and v.id >0 then local activity = {} activity.typ = v.id activity.count = v.count or 1 activity.endtime = v.endtime self.data.activity[v.id] = activity end end return true end function _M:get_type_data(typ) return self.data.activity[typ] end function _M:get_type_count(typ) if not self.data.activity[typ] then return 0 end return self.data.activity[typ].count end function _M:set_type_count(typ,num) self:add_type_data(typ,num,0,true) end function _M:add_type_data(typ,num,endtime,set) if not num then num = 1 end local append =false if not self.data.activity[typ] then local activity = {} activity.typ = typ activity.count = num activity.endtime = endtime self.data.activity[typ] = activity append =true else if set then self.data.activity[typ].count = num else self.data.activity[typ].count = (self.data.activity[typ].count or 0) + num end end local rec = { id = self.data.activity[typ].typ, count = self.data.activity[typ].count, endtime = self.data.activity[typ].endtime } if append then self.db:append(rec) else self.db:update(rec) end self.db:save() if typ == self.type.fund then local refresh =false for i=1,#self.funs[typ].count do if self.data.activity[typ].count == self.funs[typ].count[i] then refresh =true break end end if refresh then for k,role in pairs(roleMgr.roles) do if role and role.base and role.base:is_fund() then role.activitylist:refresh() end end end end end function _M:send() local ct = timetool:now() local activity = {} local change = false for i,v in pairs(self.data.activity) do if (v.endtime >0 and v.endtime > ct ) or v.endtime == 0 then activity[i] = v end end self.data.activity = activity end function _M:get_all_activity_id_info(id) return self.data.activity[id] or {} end return _M
return {'bye','byebye','byes'}
#!/usr/bin/env lua -- [[ colors ]] local RED = "\x1b[31m" local GREEN = "\x1b[32m" local YELLOW = "\x1b[33m" local BLUE = "\x1b[34m" local PURPLE = "\x1b[35m" local CYAN = "\x1b[36m" local WHITE = "\x1b[97m" local NOCOL = "\x1b[0m" -- [[ opencmd ]] local function opencmd(cmd) local command = io.popen(cmd, "r") local command_output = command:read("*a") command:close() command_output = command_output:match("%C+") return command_output end -- [[ Shell ]] local function shell() return opencmd("basename $SHELL") end -- [[ Pkgs ]] local function pkgs() return opencmd([[ getPackages() { count_params() { echo "${#}"; } for PM in apt \ dnf \ emerge \ nix-env \ pacman \ rpm \ xbps-query do [ -x "$(command -v "$PM")" ] && PKG_MANAGER="${PKG_MANAGER} ${PM}" done for MANAGER in ${PKG_MANAGER#\ }; do case "$MANAGER" in apt ) GET_PKGS="$(apt list --installed 2>/dev/null | wc -l)" ;; dnf ) GET_PKGS="$(dnf list installed | wc -l)" ;; nix-env ) GET_PKGS="$(nix-store -q --requisites /run/current-system/sw | wc -l)" MANAGER='nix' ;; pacman ) GET_PKGS=$(pacman -Q | wc -l) ;; rpm ) GET_PKGS="$(rpm -qa --last | wc -l)" ;; xbps-query) GET_PKGS="$(xbps-query -l | wc -l)" ;; esac TOTAL_PKGS="${GET_PKGS}" case "$TOTAL_PKGS" in 0|1) TOTAL_PKGS='?' MANAGER='Unknown' ;; esac PKGS_INFO="${PKGS_INFO}${TOTAL_PKGS} (${MANAGER}), " done printf "${c5}${*}${rs}%s" "${PKGS_INFO%,\ }" } echo "$(getPackages)" ]]) end -- [[ os family ]] local function os_family() local osfamily = package.config:sub(1, 1) if osfamily == "/" then return "unix" elseif osfamily == "\\" then return "windows" end end -- [[ Window Manager ]] local function wm() return opencmd([[xprop -id "$(xprop -root _NET_SUPPORTING_WM_CHECK | cut -d' ' -f5)" _NET_WM_NAME | cut -d'"' -f2]]) end -- [[ Memory ]] local function mem() return opencmd([[free -h | awk '/^Mem:/ {print $3 "/" $2}' | sed 's/i//g']]) end -- [[ Editor ]] local function ed() return opencmd([[echo $EDITOR]]) end -- [[ Distro ]] local function distro() local distro_command = io.open("/etc/os-release", "r") local distro_temp = distro_command:read("*a") distro_command:close() local DISTRO = distro_temp:match("NAME.%W?%w+", 1):gsub('"', ""):gsub("NAME=", "") return DISTRO end -- [[ Ascii ]] local function ascii(info) if string.lower(info.os):find("ubuntu") then local ASCII = { YELLOW .. " _ " .. NOCOL, YELLOW .. " ---(_) " .. NOCOL, YELLOW .. " _/ --- \\ " .. NOCOL, YELLOW .. " (_) | | " .. NOCOL, YELLOW .. " \\ --- _/ " .. NOCOL, YELLOW .. " ---(_) " .. NOCOL, NOCOL .. " " .. NOCOL, } return ASCII elseif string.lower(info.os):find("arch") then local ASCII = { CYAN .. " /\\ " .. NOCOL, CYAN .. " / \\ " .. NOCOL, CYAN .. " /\\ \\ " .. NOCOL, CYAN .. " / \\ " .. NOCOL, CYAN .. " / ,, \\ " .. NOCOL, CYAN .. " / | | -\\ " .. NOCOL, CYAN .. "/_-'' ''-_\\ " .. NOCOL, } return ASCII elseif string.lower(info.os):find("gentoo") then local ASCII = { PURPLE .. " .-----. " .. NOCOL, PURPLE .. " .` _ `. " .. NOCOL, PURPLE .. " `. (_) `. " .. NOCOL, PURPLE .. " `. / " .. NOCOL, PURPLE .. " .` .` " .. NOCOL, PURPLE .. " / .` " .. NOCOL, PURPLE .. " \\____.-` " .. NOCOL, } return ASCII elseif string.lower(info.os):find("fedora") then local ASCII = { BLUE .. " " .. NOCOL, BLUE .. " /¯¯\\ " .. NOCOL, BLUE .. " __|__ " .. NOCOL, BLUE .. "/ T " .. NOCOL, BLUE .. "\\__/ " .. NOCOL, BLUE .. " " .. NOCOL, BLUE .. " " .. NOCOL, } return ASCII elseif string.lower(info.os):find("debian") then local ASCII = { RED .. " ,---._ " .. NOCOL, RED .. " /` __ \\ " .. NOCOL, RED .. " | / | " .. NOCOL, RED .. " | `.__.` " .. NOCOL, RED .. " \\ " .. NOCOL, RED .. " `-,_ " .. NOCOL, RED .. " " .. NOCOL, } return ASCII elseif string.lower(info.os):find("alpine") then local ASCII = { BLUE .. " /\\ " .. NOCOL, BLUE .. " / \\ " .. NOCOL, BLUE .. " / /\\ \\ /\\ " .. NOCOL, BLUE .. " / / \\ \\/ \\ " .. NOCOL, BLUE .. " / / \\ \\/\\ \\ " .. NOCOL, BLUE .. " / / /| \\ \\ \\ \\ " .. NOCOL, BLUE .. " /_/ /_| \\_\\ \\_\\ " .. NOCOL, } return ASCII elseif string.lower(info.os):find("void") then local ASCII = { GREEN .. " _______ " .. NOCOL, GREEN .. " _ \\______ - " .. NOCOL, GREEN .. "| \\ ___ \\ | " .. NOCOL, GREEN .. "| | / \\ | | " .. NOCOL, GREEN .. "| | \\___/ | | " .. NOCOL, GREEN .. "| \\______ \\_| " .. NOCOL, GREEN .. " -_______\\ ", } return ASCII elseif string.lower(info.os):find("android") then local ASCII = { GREEN .. " " .. NOCOL, GREEN .. " \\ _ / " .. NOCOL, GREEN .. ' .-"" ""-. ' .. NOCOL, GREEN .. "/ O O \\ " .. NOCOL, GREEN .. "|_________| " .. NOCOL, GREEN .. " " .. NOCOL, GREEN .. " " .. NOCOL, } return ASCII else math.randomseed(os.time()) RAND = math.random() local ASCII = { WHITE .. " " .. NOCOL, WHITE .. " .~. " .. NOCOL, WHITE .. " /V\\ " .. NOCOL, WHITE .. " // \\\\ " .. NOCOL, WHITE .. "/( )\\ " .. NOCOL, WHITE .. " ^`~'^ " .. NOCOL, WHITE .. " " .. NOCOL, } return ASCII end end -- [[ Fetch ]] local function fetch() local os_type = os_family() if os_type == "unix" then KERN = opencmd("uname") KERN_RELEASE = opencmd("uname -r") OS_NAME = opencmd("uname -o") if KERN:lower() == "linux" then if OS_NAME:lower() == "android" then local FETCH = { os = "Android", wm = "AndroidWM", kn = KERN .. KERN_RELEASE, sh = shell(), } return FETCH elseif OS_NAME:lower() == "gnu/linux" or OS_NAME:lower() == "linux" then local FETCH = { os = distro(), wm = wm(), kn = KERN .. " " .. KERN_RELEASE, sh = shell(), } return FETCH else local FETCH = { os = ":(", wm = ":(", kn = ":(", sh = ":(", } return FETCH end else local FETCH = { os = "Maybe or Minix, this is still in WIP", wm = "¯\\_(ツ)_/¯", kn = "¯\\_(ツ)_/¯", sh = "¯\\_(ツ)_/¯", } return FETCH end else local FETCH = { os = "you defeated me... (your os is CURRENTLY unsupported)", wm = "not sure", kn = "unknown", sh = "unknown", } return FETCH end end -- [[ Print ]] if arg[1] == "--icons" or arg[1] == "-i" then local info = fetch() ART = ascii(info) io.write(ART[1] .. GREEN .. "\u{f05a} | " .. NOCOL .. distro() .. "\n") io.write(ART[2] .. GREEN .. "\u{f2d0} | " .. NOCOL .. wm() .. "\n") io.write(ART[3] .. GREEN .. "\u{e795} | " .. NOCOL .. shell() .. "\n") io.write(ART[4] .. GREEN .. "\u{f044} | " .. NOCOL .. ed() .. "\n") io.write(ART[5] .. GREEN .. "\u{f200} | " .. NOCOL .. mem() .. "\n") io.write(ART[6] .. GREEN .. "\u{f487} | " .. NOCOL .. pkgs() .. "\n") io.write(ART[7] .. "\n") io.write("\n") io.write( RED .. " \u{f79f} " .. GREEN .. " \u{f79f} " .. YELLOW .. " \u{f79f} " .. BLUE .. " \u{f79f} " .. PURPLE .. " \u{f79f} " .. CYAN .. " \u{f79f} " ) io.write("\n") elseif arg[1] == "--off" or arg[1] == "-f" then local info = fetch() ART = ascii(info) io.write(GREEN .. "os | " .. NOCOL .. distro() .. "\n") io.write(GREEN .. "wm | " .. NOCOL .. wm() .. "\n") io.write(GREEN .. "Shell | " .. NOCOL .. shell() .. "\n") io.write(GREEN .. "ed | " .. NOCOL .. ed() .. "\n") io.write(GREEN .. "mem | " .. NOCOL .. mem() .. "\n") io.write(GREEN .. "pkgs | " .. NOCOL .. pkgs() .. "\n") io.write("\n") io.write( RED .. "██" .. GREEN .. "██" .. YELLOW .. "██" .. BLUE .. "██" .. PURPLE .. "██" .. CYAN .. "██\n" ) io.write("\n") elseif arg[1] == "--help" or arg[1] == "-h" then io.write([[ --help, -h Display this message --icons, -i Use nerd fonts --off, -f disables the ascii art ]]) else local info = fetch() ART = ascii(info) io.write(ART[1] .. GREEN .. "os | " .. NOCOL .. distro() .. "\n") io.write(ART[2] .. GREEN .. "wm | " .. NOCOL .. wm() .. "\n") io.write(ART[3] .. GREEN .. "shell | " .. NOCOL .. shell() .. "\n") io.write(ART[4] .. GREEN .. "ed | " .. NOCOL .. ed() .. "\n") io.write(ART[5] .. GREEN .. "mem | " .. NOCOL .. mem() .. "\n") io.write(ART[6] .. GREEN .. "pkgs | " .. NOCOL .. pkgs() .. "\n") io.write(ART[7] .. "\n") io.write("\n") io.write( RED .. " ██" .. GREEN .. "██" .. YELLOW .. "██" .. BLUE .. "██" .. PURPLE .. "██" .. CYAN .. "██\n" ) io.write("\n") end
require("rider.v2") local envoy = envoy local bodyHandler = {} bodyHandler.version = "v2" function bodyHandler:on_request_header() local header = envoy.req.get_header("test") if header == nil then envoy.logDebug("no req_header"); else envoy.logDebug("req_header: "..header); end local headers, body = envoy.httpCall( "web_service", { [":method"] = "GET", [":path"] = "/", [":authority"] = "web_service" }, nil, 5000) envoy.logDebug("httpcall_req_body1: "..body); end function bodyHandler:on_request_body() local headers, body2 = envoy.httpCall( "web_service", { [":method"] = "GET", [":path"] = "/", [":authority"] = "web_service" }, nil, 5000) envoy.logDebug("httpcall_req_body2: "..body2); envoy.respond({[":status"] = 200}, "ddddd") end function bodyHandler:on_response_header() local header = envoy.resp.get_header("test") if header == nil then envoy.logDebug("no resp_header"); else envoy.logDebug("resp_header: "..header); end local headers, body2 = envoy.httpCall( "web_service", { [":method"] = "GET", [":path"] = "/", [":authority"] = "web_service" }, nil, 5000) envoy.logDebug("httpcall_resp_body3: "..body2); end function bodyHandler:on_response_body() local body = envoy.resp.get_body() if body == nil then envoy.logDebug("no resp_body"); return end envoy.logDebug("resp_body: "..body); local headers, body2 = envoy.httpCall( "web_service", { [":method"] = "GET", [":path"] = "/", [":authority"] = "web_service" }, nil, 5000) envoy.logDebug("httpcall_resp_body4: "..body2); end return bodyHandler
--[[ Code in parts or totally from zorker https://github.com/zorker/rothui https://github.com/zorker/rothui/tree/master/wow8.0/rBuffFrame MIT license Code in parts or totally from lithammer https://github.com/lithammer/NeavUI https://github.com/lithammer/NeavUI/tree/master/Interface/AddOns/nBuff MIT license ]]-- Buffs = WUI:NewModule("Buffs") function Buffs:OnInitialize() self:CreateBuffFrame(WUI.name, WUI.db.profile.buffsL1, WUI.db.profile.buffsL2, WUI.db.profile.buffsL3, WUI.db.profile.buffsL4, WUI.db.profile.buffsL5, WUI.db.profile.buffsScale, WUI.db.profile.buffsPadding, WUI.db.profile.buffsWidth, WUI.db.profile.buffsHeight, WUI.db.profile.buffsMargin, WUI.db.profile.buffsNumCols, WUI.db.profile.buffsStartPoint, WUI.db.profile.buffsRowMargin) self:CreateDebuffFrame(WUI.name, WUI.db.profile.deBuffsLocation, WUI.db.profile.deBuffsScale, WUI.db.profile.deBuffsPadding, WUI.db.profile.deBuffsWidth, WUI.db.profile.deBuffsHeight, WUI.db.profile.deBuffsMargin, WUI.db.profile.deBuffsNumCols, WUI.db.profile.deBuffsStartPoint, WUI.db.profile.deBuffsRowMargin) end function Buffs:OnEnable() hooksecurefunc("AuraButton_Update", function(self, index) function AuraButton_SetBorderColor(self, ...) return self.border:SetVertexColor(...) end local button = _G[self..index] if button and not button.Shadow then local border = _G[self..index.."Border"] if border then border:SetPoint("TOPLEFT", button, -3, 2) border:SetPoint("BOTTOMRIGHT", button, 2, -2) border:SetTexture("Interface\\Buttons\\UI-Debuff-Overlays") border:SetTexCoord(0.296875, 0.5703125, 0, 0.515625) border.SetBorderColor = AuraButton_SetBorderColor end end end) end function Buffs:OnDisable() end function Buffs:GetButtonList(buttonName,numButtons,buttonList) buttonList = buttonList or {} for i=1, numButtons do local button = _G[buttonName..i] if not button then break end if button:IsShown() then table.insert(buttonList, button) end end return buttonList end --points --1. p1, f, fp1, fp2 --2. p2, rb-1, p3, bm1, bm2 --3. p4, b-1, p5, bm3, bm4 function Buffs:SetupButtonPoints(frame, buttonList, buttonWidth, buttonHeight, numCols, p1, fp1, fp2, p2, p3, bm1, bm2, p4, p5, bm3, bm4) for index, button in next, buttonList do button:SetSize(buttonWidth, buttonHeight) button:ClearAllPoints() if index == 1 then button:SetPoint(p1, frame, fp1, fp2) elseif numCols == 1 or mod(index, numCols) == 1 then button:SetPoint(p2, buttonList[index-numCols], p3, bm1, bm2) else button:SetPoint(p4, buttonList[index-1], p5, bm3, bm4) end end end function Buffs:SetupButtonFrame(frame, framePadding, buttonList, buttonWidth, buttonHeight, buttonMargin, numCols, startPoint, rowMargin) local numButtons = # buttonList numCols = max(min(numButtons, numCols),1) local numRows = max(ceil(numButtons/numCols),1) if not rowMargin then rowMargin = buttonMargin end local frameWidth = numCols*buttonWidth + (numCols-1)*buttonMargin + 2*framePadding local frameHeight = numRows*buttonHeight + (numRows-1)*rowMargin + 2*framePadding frame:SetSize(frameWidth,frameHeight) --TOPLEFT --1. TL, f, p, -p --2. T, rb-1, B, 0, -m --3. L, b-1, R, m, 0 if startPoint == "TOPLEFT" then self:SetupButtonPoints(frame, buttonList, buttonWidth, buttonHeight, numCols, startPoint, framePadding, -framePadding, "TOP", "BOTTOM", 0, -rowMargin, "LEFT", "RIGHT", buttonMargin, 0) --end --TOPRIGHT --1. TR, f, -p, -p --2. T, rb-1, B, 0, -m --3. R, b-1, L, -m, 0 elseif startPoint == "TOPRIGHT" then self:SetupButtonPoints(frame, buttonList, buttonWidth, buttonHeight, numCols, startPoint, -framePadding, -framePadding, "TOP", "BOTTOM", 0, -rowMargin, "RIGHT", "LEFT", -buttonMargin, 0) --end --BOTTOMRIGHT --1. BR, f, -p, p --2. B, rb-1, T, 0, m --3. R, b-1, L, -m, 0 elseif startPoint == "BOTTOMRIGHT" then self:SetupButtonPoints(frame, buttonList, buttonWidth, buttonHeight, numCols, startPoint, -framePadding, framePadding, "BOTTOM", "TOP", 0, rowMargin, "RIGHT", "LEFT", -buttonMargin, 0) --end --BOTTOMLEFT --1. BL, f, p, p --2. B, rb-1, T, 0, m --3. L, b-1, R, m, 0 --elseif startPoint == "BOTTOMLEFT" then else startPoint = "BOTTOMLEFT" self:SetupButtonPoints(frame, buttonList, buttonWidth, buttonHeight, numCols, startPoint, framePadding, framePadding, "BOTTOM", "TOP", 0, rowMargin, "LEFT", "RIGHT", buttonMargin, 0) end end function Buffs:CreateBuffFrame(addonName, buffsL1, buffsL2, buffsL3, buffsL4, buffsL5, buffsScale, buffsPadding, buffsWidth, buffsHeight, buffsMargin, buffsNumCols, buffsStartPoint, buffsRowMargin) frameName = addonName.."BuffFrame" frameParent = frameParent or UIParent frameTemplate = nil --create new parent frame for buttons local frame = CreateFrame("Frame", frameName, frameParent, frameTemplate) frame:SetPoint(buffsL1, buffsL2, buffsL3, buffsL4, buffsL5) frame:SetScale(buffsScale) local function UpdateAllBuffAnchors() --add temp enchant buttons local buttonList = self:GetButtonList("TempEnchant",BuffFrame.numEnchants) --add all other buff buttons buttonList = self:GetButtonList("BuffButton",BUFF_MAX_DISPLAY,buttonList) --adjust frame by button list self:SetupButtonFrame(frame, buffsPadding, buttonList, buffsWidth, buffsHeight, buffsMargin, buffsNumCols, buffsStartPoint, buffsRowMargin) end hooksecurefunc("BuffFrame_UpdateAllBuffAnchors", UpdateAllBuffAnchors) return frame end function Buffs:CreateDebuffFrame(addonName, deBuffsLocation, deBuffsScale, deBuffsPadding, deBuffsWidth, deBuffsHeight, deBuffsMargin, deBuffsNumCols, deBuffsStartPoint, deBuffsRowMargin) frameName = addonName.."DebuffFrame" frameParent = frameParent or UIParent --deBuffsLocation.Parent or UIParent frameTemplate = nil --create new parent frame for buttons local frame = CreateFrame("Frame", frameName, frameParent, frameTemplate) frame:SetPoint(unpack(deBuffsLocation)) frame:SetScale(deBuffsScale) local function UpdateAllDebuffAnchors(buttonName, index) --add all other debuff buttons local buttonList = self:GetButtonList("DebuffButton",DEBUFF_MAX_DISPLAY,buttonList) --adjust frame by button list self:SetupButtonFrame(frame, deBuffsPadding, buttonList, deBuffsWidth, deBuffsHeight, deBuffsMargin, deBuffsNumCols, deBuffsStartPoint, deBuffsRowMargin) end hooksecurefunc("DebuffButton_UpdateAnchors", UpdateAllDebuffAnchors) return frame end function Buffs:AuraButton_SetBorderColor(self, ...) return self.border:SetVertexColor(...) end
slot0 = class("BackYardBaseView") slot1 = require("Framework.notify.event") slot2 = require("Mod/BackYard/view/BackYardTool") slot0.Ctor = function (slot0, slot1, slot2, slot3, slot4) slot0.event = slot0.New() slot0._go = slot1 slot0._tf = tf(slot1) slot0.mode = slot2 slot0.bgm = slot4 pg.DelegateInfo.New(slot0) slot0.backyardPoolMgr = slot3 slot0.factory = BackYardFactory.New(slot0.backyardPoolMgr) slot0.effectMgr = BackyardEffectMgr.New(slot0._tf:Find("effects")) slot0.zoom = slot0:findTF("bg"):GetComponent("Zoom") end slot0.init = function (slot0, slot1) slot0.contextData = slot1 slot0:OnInit() slot0:OnDidEnter() end slot0.willExit = function (slot0) slot0:OnWillExit() slot0.event:clear() slot0.effectMgr:Destroy() pg.DelegateInfo.Dispose(slot0) slot0.factory:Destroy() slot0.isExist = true end slot0.enableZoom = function (slot0, slot1) slot0.zoom.enabled = slot1 end slot0.emit = function (slot0, ...) if slot0.event then slot0.event:emit(...) end end slot0.findTF = function (slot0, slot1, slot2) return findTF(slot2 or slot0._tf, slot1) end slot0.IsVisitMode = function (slot0) return slot0.mode == BackYardConst.MODE_VISIT end slot0.change2ScrPos = function (slot0, slot1, slot2) return slot0.change2ScrPos(slot1, slot2) end slot0.getMapPos = function (slot0, slot1) return slot0.getMapPos(slot1) end slot0.EnableMultiTouch = function (slot0, slot1) Input.multiTouchEnabled = slot1 end slot0.OnInit = function (slot0) return end slot0.OnDidEnter = function (slot0) return end slot0.OnWillExit = function (slot0) return end return slot0
-- /c function shuffle(list) for i = #list, 2, -1 do local j = math.random(i); list[i], list[j] = list[j], list[i]; end end local train = game.player.vehicle.train; local schedule = { current = 1, records = {} }; function addstop(name) table.insert(schedule.records, { station = name, wait_conditions = { { type = "time", ticks = 0, compare_type = "and" } } }); game.print("Added stop " .. name); end local directions = { "West", "East", "North", "South" }; local extra = { "Inner", "Outer" }; local combinations = {}; for _, start_dir in pairs(directions) do for _, start_ext in pairs(extra) do for _, stop_dir in pairs(directions) do if start_dir ~= stop_dir then for _, stop_ext in pairs(extra) do table.insert(combinations, { entrance = start_dir .. " Entrance " .. start_ext, exit = stop_dir .. " Exit " .. stop_ext }); end end end end end game.print("combinations: " .. tostring(#combinations)) shuffle(combinations); for _, path in pairs(combinations) do addstop(path.entrance); addstop(path.exit); end train.schedule = schedule; local i = 0; for _, start_dir in pairs(directions) do for _, start_ext in pairs(extra) do local start = start_dir .. " Entrance " .. start_ext; for _, stop_dir in pairs(directions) do for _, stop_ext in pairs(extra) do local stop = stop_dir .. " Exit " .. stop_ext; addstop(start); addstop(stop); end end end end
--[[ This file is part of 'Masque', an add-on for World of Warcraft. For license information, please see the included License.txt file or visit https://github.com/StormFX/Masque. * File...: Core\Regions\Normal.lua * Author.: StormFX 'Normal' Region * See Skins\Default.lua for region defaults. ]] local _, Core = ... ---------------------------------------- -- Lua --- local error, type = error, type ---------------------------------------- -- WoW API --- local hooksecurefunc, random = hooksecurefunc, random ---------------------------------------- -- Internal --- -- @ Skins\Default local Default = Core.Skins.Default.Normal -- @ Core\Utility local GetSize, SetPoints = Core.GetSize, Core.SetPoints local GetColor, GetTexCoords = Core.GetColor, Core.GetTexCoords ---------------------------------------- -- Locals --- local DEF_TEXTURE = Default.Texture local DEF_COLOR = Default.Color local Base = {} ---------------------------------------- -- SetEmpty --- -- Sets a button's empty state and updates its regions. local function SetEmpty(Button, IsEmpty) if IsEmpty == nil then local Icon = Button.__MSQ_Icon IsEmpty = (Icon and not Icon:IsShown()) or nil else IsEmpty = (IsEmpty and true) or nil end Button.__MSQ_Empty = IsEmpty local Normal = Button.__MSQ_Normal local Skin = Button.__MSQ_NormalSkin if Normal and (Skin and not Skin.Hide) then local Texture = Button.__MSQ_Random or Skin.Texture or DEF_TEXTURE local Color = Button.__MSQ_NormalColor or DEF_COLOR if IsEmpty then Normal:SetTexture(Skin.EmptyTexture or Texture) Normal:SetTexCoord(GetTexCoords(Skin.EmptyCoords or Skin.TexCoords)) Normal:SetVertexColor(GetColor(Skin.EmptyColor or Color)) else Normal:SetTexture(Texture) Normal:SetTexCoord(GetTexCoords(Skin.TexCoords)) Normal:SetVertexColor(GetColor(Color)) end end local Shadow = Button.__MSQ_Shadow local Gloss = Button.__MSQ_Gloss if IsEmpty then if Shadow then Shadow:Hide() end if Gloss then Gloss:Hide() end else if Shadow then Shadow:Show() end if Gloss then Gloss:Show() end end end ---------------------------------------- -- Hook --- -- Counters changes to a button's 'Normal' texture. -- * The default behavior for action buttons is to set the 'Normal' region's -- alpha to 0.5, but the PetBar and some add-ons still change the texture. local function Hook_SetNormalTexture(Button, Texture) if Button.__MSQ_NormalSkin then local Region = Button.__MSQ_Normal local Normal = Button:GetNormalTexture() if Normal and Normal ~= Region then Normal:SetTexture() Normal:Hide() end local Skin = Button.__MSQ_NormalSkin if Skin and Skin.Hide then Region:SetTexture() Region:Hide() end end SetEmpty(Button) end ---------------------------------------- -- Core --- -- Skins the 'Normal' layer of a button. function Core.SkinNormal(Region, Button, Skin, Color, xScale, yScale) Region = Region or Button:GetNormalTexture() local Custom = Base[Button] -- States Enabled if Skin.UseStates then if Custom then Custom:SetTexture() Custom:Hide() end if not Region then return end -- States Disabled else if Region then Region:SetAlpha(0) -- Fix for BT4's Pet buttons. Region:SetTexture() Region:Hide() end Region = Custom or Button:CreateTexture() Base[Button] = Region end local bType = Button.__MSQ_bType Skin = (bType and Skin[bType]) or Skin Color = Color or Skin.Color or DEF_COLOR Button.__MSQ_Normal = Region Button.__MSQ_NormalSkin = Skin Button.__MSQ_NormalColor = Color local Textures = Skin.Textures local Random if type(Textures) == "table" and #Textures > 0 then local i = random(1, #Textures) Random = Textures[i] end Button.__MSQ_Random = Random if Skin.Hide then if Region then Region:SetTexture() Region:Hide() end return end Region:SetAlpha(1) -- Counter BT4 fix. SetEmpty(Button) if not Button.__MSQ_Enabled then Button.__MSQ_Normal = nil Button.__MSQ_NormalSkin = nil Button.__MSQ_NormalColor = nil Button.__MSQ_Random = nil end Region:SetBlendMode(Skin.BlendMode or "BLEND") Region:SetDrawLayer(Skin.DrawLayer or "ARTWORK", Skin.DrawLevel or 0) Region:SetSize(GetSize(Skin.Width, Skin.Height, xScale, yScale)) SetPoints(Region, Button, Skin, nil, Skin.SetAllPoints) Region:Show() if not Button.__MSQ_NormalHook then hooksecurefunc(Button, "SetNormalTexture", Hook_SetNormalTexture) Button.__MSQ_NormalHook = true end end ---------------------------------------- -- API --- local API = Core.API -- Retrieves the 'Normal' region of a button. function API:GetNormal(Button) if type(Button) ~= "table" then if Core.db.profile.Debug then error("Bad argument to API method 'GetNormal'. 'Button' must be a button object.", 2) end return end return Button.__MSQ_Normal or Button:GetNormalTexture() end -- Sets the button's empty status. function API:SetEmpty(Button, IsEmpty) if type(Button) ~= "table" then return end SetEmpty(Button, IsEmpty) end
return {'babylonisch','baba','babbel','babbelaar','babbelaarster','babbelaartje','babbelachtig','babbelarij','babbelbox','babbelen','babbelkous','babbelpraatje','babbeltje','babbelziek','babbelzieke','babbelzucht','babe','babi','baboe','baboesjka','babok','baby','babyartikel','babyboom','babyboomer','babyboomgeneratie','babybox','babydoll','babyface','babyfoon','babygeur','babygroep','babygroepen','babyhoofd','babykamer','babykleding','babykleertjes','babykleren','babylance','babylijkje','babymarkt','babymelk','babymelkpoeder','babymoord','babypoeder','babyroof','babyshampoo','babysit','babysitten','babysitter','babytijd','babyverzorging','babyvoeding','babyvoedsel','babyuitzet','babiroesa','babyeczeem','babymais','babymais','babyfoto','babynaam','babyspullen','babyspeelgoed','babyolie','babyboek','babyhuid','babypop','babysterfte','babbeltruc','babyafdeling','babybad','babyblauw','babyborrel','babydouche','babyfles','babymassage','babypakket','babysite','babyslaapzak','babytaal','babyvet','babywinkel','babyzaak','babybed','babybos','babyleeftijd','babyolifant','bab','babyaap','babybond','babybus','babel','babette','babs','babylonische','babbelaars','babbelaarstertje','babbelaartjes','babbelachtige','babbelde','babbelden','babbelkousen','babbelpraatjes','babbels','babbelt','babbeltjes','babbelzieker','baboes','babys','babytje','babyartikelen','babyboomers','babyboxen','babyfoons','babyfotos','babykamers','babas','babbelboxen','babbelend','babbelende','babes','babyshampoos','babysits','babysitte','babysitters','babis','babiroesas','babydolls','babylanceje','babylancen','babylances','babels','babettes','babs','babybadje','babybedje','babybedjes','babyhoofdje','babykamertje','babynamen','babypoppen','babyzaken','babyflesjes','babywinkels','babyflesje','babypopje','babysites','babyborrels','babyflessen','babbeltrucs','babyhoofdjes','babyslaapzakken','babyboekje','babelse'}
local lz4 = require("lz4") local compress = lz4.compress local function writeChunk(stream, name, chunk) if #name ~= 4 then name = name..string.rep("\0", 4-#name) end stream.writeSetLengthString(name) local compressedData = compress(chunk) if compressedData.getLength() >= chunk.getLength() then stream.writeLEUInt32(0) stream.writeLEUInt32(chunk.getLength()) stream.writeSetLengthString("\x00\x00\x00\x00") stream.writeSetLengthString(chunk.dumpString()) else stream.writeLEUInt32(compressedData.getLength()) stream.writeLEUInt32(chunk.getLength()) stream.writeSetLengthString("\x00\x00\x00\x00") stream.writeSetLengthString(compressedData.dumpString()) end end return writeChunk
require 'colors' local Side = require 'actors/side' local State = require 'states/state' local Menu = require 'states/menu' local Game = require 'states/game' local Settings = require 'states/settingsMenu' local Info = require 'states/info' function love.load() math.randomseed(os.time()) --love.window.setMode(320, 240, flags) --love.window.setMode(640, 480, flags) --love.window.setMode(1024, 768, flags) love.window.setMode(800, 600, {resizable = true}) init() end function love.resize(w, h) init() end function init() x = 0 y = 0 width = love.graphics.getWidth() height = love.graphics.getHeight() centerWidth = width / 2 timelineWidth = width / 16 highscoreFont = love.graphics.newFont("assets/joystixmonospace.ttf", timelineWidth / 2) generalFont = love.graphics.newFont("assets/origap__.ttf" ,timelineWidth) supportFont = love.graphics.newFont("assets/arigami2.otf" ,timelineWidth / 1.5) local timeline = 0 local startSpeed = 1 local startScore = 0 local speedIncrement = 10 local level = 1 highscoreWidth = timelineWidth userChoice = nil mouse = { x = nil, y = nil } yourScore = "YOUR SCORE: " tapToRestart = "TAP TO RESTART" local maxHorizontalCount = math.floor(centerWidth / highscoreWidth) currentState = Menu(x, y, width - 1, height, randomColor(), randomColor(), generalFont) end function flush() leftEndRectangle = { x = -centerWidth, y = 0, width = centerWidth, height = height, color = randomColor() } rightEndRectangle = { x = width, y = 0, width = centerWidth, height = height, color = randomContrastColor(leftEndRectangle.color) } blinkColor = { 160, 160, 160, 160 } shouldListenEvents = true end function love.update(dt) if currentState.next == GlobalStates.settings then currentState = Settings(x, y, width, height, randomColor(), randomColor(), generalFont) elseif currentState.next == GlobalStates.game then currentState = Game(x, y, width, height, maxHorizontalCount, timeline, startSpeed, startScore, highscoreFont, speedIncrement, level) elseif currentState.next == GlobalStates.menu then currentState = Menu(x, y, width, height, randomColor(), randomColor(), generalFont) elseif currentState.next == GlobalStates.info then currentState = Info(x, y, width, height, randomColor(), randomColor(), supportFont) end currentState:update(dt) print(currentState.name) end function love.mousepressed(x, y, button, isTouch) currentState:mousepressed(x, y, button, isTouch) end function love.mousereleased(x, y, button, isTouch) currentState:mousereleased(x, y, button, isTouch) end function love.keypressed(key) currentState:keypressed(key) end function love.draw() currentState:draw() end
-- this require isn't specifically required as it will be added -- when executed inside of erlmon, but they are necessary to -- test the file on the command line, by typing lua config.lua require "lua/erlmon" -- Global Erlmon Settings Erlmon.http.login = 'admin' Erlmon.http.password = 'admin' Erlmon.smtp.host = "mail.foo.com" -- Global SMTP Settings alert("chad@foo.com") -- Monitors monitor_port(11211)
function description() return "Copy the URL" end function run() local windex = focused_window_index() local uri = webview_uri(windex, focused_webview_index(windex)) set_command_field_text(windex, uri) focus_commandbar_in_window(windex) return false end
local parser = require 'parser' local core = require 'core' local buildVM = require 'vm' rawset(_G, 'TEST', true) function TEST(script) return function (expect) local start = script:find('<?', 1, true) local finish = script:find('?>', 1, true) local pos = (start + finish) // 2 + 1 local new_script = script:gsub('<[!?]', ' '):gsub('[!?]>', ' ') local ast = parser:ast(new_script, 'lua', 'Lua 5.3') local vm = buildVM(ast) assert(vm) local source = core.findSource(vm, pos) local hover = core.hover(source) if expect then assert(hover) expect = expect:gsub('^[\r\n]*(.-)[\r\n]*$', '%1'):gsub('\r\n', '\n') local label = hover.label:gsub('^[\r\n]*(.-)[\r\n]*$', '%1'):gsub('\r\n', '\n') assert(expect == label) else assert(hover == nil) end end end TEST [[ local function <?x?>(a, b) end ]] "function x(a: any, b: any)" TEST [[ local function x(a, b) end <?x?>() ]] "function x(a: any, b: any)" TEST [[ local mt = {} mt.__index = mt function mt:init(a, b, c) return {} end local obj = setmetatable({}, mt) obj:<?init?>(1, '测试') ]] [[ function mt:init(a: number, b: string, c: any) -> table ]] TEST [[ local mt = {} mt.__index = mt function mt:init(a, b, c) return {} end local obj = setmetatable({}, mt) obj:init(1, '测试') obj.<?init?>(obj, 1, '测试') ]] [[ function mt.init(self: table, a: number, b: string, c: any) -> table ]] TEST [[ function obj.xxx() end obj.<?xxx?>() ]] "function obj.xxx()" TEST [[ obj.<?xxx?>() ]] [[function obj.xxx() -> any ]] TEST [[ local <?x?> = 1 ]] "local x: number = 1" TEST [[ <?x?> = 1 ]] "global x: number = 1" TEST [[ local t = {} t.<?x?> = 1 ]] "field t.x: number = 1" TEST [[ t = {} t.<?x?> = 1 ]] "global t.x: number = 1" TEST [[ local mt = {} mt.__name = 'class' local <?obj?> = setmetatable({}, mt) ]] "local obj: *class {}" TEST [[ local mt = {} mt.name = 'class' mt.__index = mt local <?obj?> = setmetatable({}, mt) ]] [[ local obj: *class { __index: table, name: string = "class", } ]] TEST [[ local mt = {} mt.TYPE = 'class' mt.__index = mt local <?obj?> = setmetatable({}, mt) ]] [[ local obj: *class { TYPE: string = "class", __index: table, } ]] TEST [[ local mt = {} mt.Class = 'class' mt.__index = mt local <?obj?> = setmetatable({}, mt) ]] [[ local obj: *class { Class: string = "class", __index: table, } ]] TEST[[ local fs = require 'bee.filesystem' local <?root?> = fs.current_path() ]] "local root: *bee::filesystem" TEST[[ ('xx'):<?yy?>() ]] [[function *string:yy() -> any]] TEST [[ local <?v?> = collectgarbage() ]] "local v: any" TEST [[ local type w2l:get_default()[<?type?>] ]] "local type: any" TEST [[ <?load?>() ]] [=[ function load(chunk: string/function [, chunkname: string [, mode: string [, env: table]]]) -> function, error_message: string ]=] TEST [[ string.<?lower?>() ]] [[ function string.lower(string) -> string ]] TEST [[ local function x(a, ...) end <?x?>(1, 2, 3, 4, 5, 6, 7) ]] [[ function x(a: number, ...) ]] TEST [[ local function x() return y() end <?x?>() ]] [[ function x() -> any ]] TEST [[ local mt = {} mt.__index = mt function mt:add(a, b) end local function init() return setmetatable({}, mt) end local t = init() t:<?add?>() ]] [[ function mt:add(a: any, b: any) ]] TEST [[ local <?t?> = - 1000 ]] [[local t: number = -1000]] TEST [[ for <?c?> in io.lines() do end ]] [[local c: string]] TEST [[ local function f() return ... end local <?n?> = f() ]] [[local n: any]] TEST [[ local <?n?> = table.unpack(t) ]] [[local n: any]] TEST [[ local <?n?> table.pack(n) ]] [[ local n: any ]] TEST [[ (<?'xxx'?>):sub() ]] (nil) TEST [[ local <?t?> = { a = 1, b = 2, c = 3, } ]] [[ local t: { a: number = 1, b: number = 2, c: number = 3, } ]] TEST [[ local <?t?> = { a = 1, [1] = 2, [true] = 3, [5.5] = 4, [{}] = 5, [function () end] = 6, ["b"] = 7, ["012"] = 8, } ]] [[ local t: { ["012"]: number = 8, [*function]: number = 6, [*table]: number = 5, [001]: number = 2, [5.5]: number = 4, [true]: number = 3, a: number = 1, b: number = 7, } ]] TEST [[ local <?t?> = {} t[#t+1] = 1 t[#t+1] = 1 local any = collectgarbage() t[any] = any ]] [[ local t: { [*number]: number = 1, } ]] TEST[[ local x = 1 local y = x print(<?y?>) ]] [[ local y: number = 1 ]] TEST[[ local mt = {} mt.a = 1 mt.b = 2 mt.c = 3 local <?obj?> = setmetatable({}, {__index = mt}) ]] [[ local obj: { a: number = 1, b: number = 2, c: number = 3, } ]] TEST[[ local mt = {} mt.__index = {} function mt:test(a, b) self:<?test?>() end ]] [[ function mt:test(a: any, b: any) ]] TEST[[ local mt = {} mt.__index = mt mt.__name = 'obj' function mt:remove() end local <?self?> = setmetatable({ id = 1, }, mt) ]] [[ local self: *obj { __index: table, __name: string = "obj", id: number = 1, remove: function, } ]] TEST[[ local <?sssss?> = require 'utf8' ]] [[ local sssss<utf8>: { char: function, charpattern: string, codepoint: function, codes: function, len: function, offset: function, } ]] TEST[[ function a(v) print(<?v?>) end a(1) ]] [[ local v: number = 1 ]] TEST[[ function a(v) print(<?v?>) end pcall(a, 1) ]] [[ local v: number = 1 ]] TEST[[ function a(v) print(<?v?>) end xpcall(a, log.error, 1) ]] [[ local v: number = 1 ]] TEST[[ function a(v) return 'a' end local _, <?r?> = pcall(a, 1) ]] [[ local r: string = "a" ]] TEST[[ local <?n?> = rawlen() ]] [[ local n: integer ]] TEST[[ <?next?>() ]] [[ function next(table: table [, index: any]) -> key: any, value: any ]] TEST[[ local <?n?> = pairs() ]] [[ function n<next>(table: table [, index: any]) -> key: any, value: any ]] TEST[[ ---@class Class local <?x?> = class() ]] [[ local x: *Class {} ]] TEST[[ ---@class Class <?x?> = class() ]] [[ global x: *Class {} ]] TEST[[ local t = { ---@class Class <?x?> = class() } ]] [[ field x: *Class {} ]] TEST[[ ---@type Class local <?x?> = class() ]] [[ local x: *Class {} ]] TEST[[ ---@type Class <?x?> = class() ]] [[ global x: *Class {} ]] TEST[[ local t = { ---@type Class <?x?> = class() } ]] [[ field x: *Class {} ]] TEST[[ ---@type A|B|C local <?x?> = class() ]] [[ local x: *A|B|C {} ]] TEST[[ ---@class Class local <?x?> = { b = 1 } ]] [[ local x: *Class { b: number = 1, } ]] TEST [[ ---@class Class local mt = {} ---@param t Class function f(<?t?>) end ]] [[ local t: *Class {} ]] TEST [[ ---@class Class local mt = {} ---@param t Class function f(t) print(<?t?>) end ]] [[ local t: *Class {} ]] TEST [[ ---@class Class local mt = {} ---@param t Class function f(t) end f(<?s?>) ]] [[ global s: *Class {} ]] TEST [[ ---@class Class ---@param k Class for <?k?> in pairs(t) do end ]] [[ local k<key>: *Class {} ]] TEST [[ ---@class Class ---@param v Class for k, <?v?> in pairs(t) do end ]] [[ local v<value>: *Class {} ]] TEST [[ ---@return A|B ---@return C local function <?f?>() end ]] [[ function f() -> A|B, C ]] TEST [[ ---@generic T ---@param x T ---@return T local function f(x) end local <?r?> = f(1) ]] [[ local r: number ]] TEST [[ ---@vararg Class local function f(...) local _, <?x?> = ... end f(1, 2, 3) ]] [[ local x: *Class = 2 ]] TEST [[ ---@vararg Class local function f(...) local _, <?x?> = ... end ]] [[ local x: *Class {} ]] TEST [[ ---@type string[] local <?x?> ]] [[ local x: { [*integer]: string, } ]] TEST [[ ---@type string[] local t local <?x?> = t[1] ]] [[ local x: string ]] TEST [[ ---@type string[] local t for _, <?x?> in ipairs(t) do end ]] [[ local x: string ]] TEST [[ ---@type string[] local t for _, <?x?> in pairs(t) do end ]] [[ local x: string ]] TEST [[ ---@type string[] local t for <?k?>, v in pairs(t) do end ]] [[ local k: integer ]] TEST [[ ---@type table<ClassA, ClassB> local <?x?> ]] [[ local x: { [*ClassA]: ClassB, } ]] TEST [[ ---@type table<ClassA, ClassB> local t for _, <?x?> in pairs(t) do end ]] [[ local x: *ClassB ]] TEST [[ ---@type table<ClassA, ClassB> local t for <?k?>, v in pairs(t) do end ]] [[ local k: *ClassA ]] TEST [[ ---@type fun(x: number, y: number):boolean local <?f?> ]] [[ function f(x: number, y: number) -> boolean ]] TEST [[ ---@type fun(x: number, y: number):boolean local f f(<?a?>) ]] [[ global a: number ]] TEST [[ ---@type fun(x: number, y: number):boolean local f local <?r?> = f() ]] [[ local r: boolean ]]
local expect, printed = require'rx-test'() local rx, _ = require'rx'() describe('Buffer Operator', function() describe('buffer()', function() it('is included in rx object', function() assert.no.is_nil(_.buffer) end) it('handles multiple values', function() local test_ = rx.from({'world', 'folks', 'people'}) .pipe(_.buffer(3)) -- expect(test_).to.produce({'world', 'folks', 'people'}) end) it('flushes the buffer on completion regardless of size', function() local test_ = rx.from({'world', 'folks'}) .pipe(_.buffer(3)) -- expect(test_).to.produce({'world', 'folks'}) end) end) end)
--- -- @author wesen -- @copyright 2020 wesen <wesen-ac@web.de> -- @release 0.1 -- @license MIT -- local Object = require "classic" --- -- Parses the HTML reporter configuration from a luacov configuration table. -- -- @type Configuration -- local Configuration = Object:extend() --- -- The luacov configuration table -- -- @tfield table luacovConfigurationTable -- Configuration.luacovConfigurationTable = nil --- -- The "html" configuration field of the luacov configuration table -- -- @tfield table htmlReporterConfigurationTable -- Configuration.htmlReporterConfigurationTable = nil --- -- Configuration constructor. -- -- @tparam table _luacovConfigurationTable The luacov configuration table -- function Configuration:new(_luacovConfigurationTable) if (type(_luacovConfigurationTable) == "table") then self.luacovConfigurationTable = _luacovConfigurationTable else self.luacovConfigurationTable = {} end if (type(self.luacovConfigurationTable["html"]) == "table") then self.htmlReporterConfigurationTable = self.luacovConfigurationTable["html"] else self.htmlReporterConfigurationTable = {} end end -- Public Methods --- -- Returns the "outputDirectory" config value or the default value if no config value is set. -- -- @treturn string The "outputDirectory" config value -- function Configuration:getOutputDirectoryPath() if (type(self.htmlReporterConfigurationTable["outputDirectory"]) == "string") then return self.htmlReporterConfigurationTable["outputDirectory"] else return "luacov-html" end end --- -- Returns the "projectName" config value or the default value if no config value is set. -- -- @treturn string The "projectName" config value -- function Configuration:getProjectName() if (type(self.htmlReporterConfigurationTable["projectName"]) == "string") then return self.htmlReporterConfigurationTable["projectName"] else return "All Files" end end return Configuration
--[[ Element: Additional Power Bar Handles updating and visibility of a status bar displaying the player's alternate/additional power, such as Mana for Balance druids. Widget AdditionalPower - A StatusBar to represent current caster mana. Sub-Widgets .bg - A Texture which functions as a background. It will inherit the color of the main StatusBar. Notes The default StatusBar texture will be applied if the UI widget doesn't have a status bar texture or color defined. Options .colorClass - Use `self.colors.class[class]` to color the bar. .colorSmooth - Use `self.colors.smooth` to color the bar with a smooth gradient based on the players current mana percentage. .colorPower - Use `self.colors.power[token]` to color the bar. This will always use MANA as token. Sub-Widget Options .multiplier - Defines a multiplier, which is used to tint the background based on the main widgets R, G and B values. Defaults to 1 if not present. Examples -- Position and size local AdditionalPower = CreateFrame("StatusBar", nil, self) AdditionalPower:SetSize(20, 20) AdditionalPower:SetPoint('TOP') AdditionalPower:SetPoint('LEFT') AdditionalPower:SetPoint('RIGHT') -- Add a background local Background = AdditionalPower:CreateTexture(nil, 'BACKGROUND') Background:SetAllPoints(AdditionalPower) Background:SetTexture(1, 1, 1, .5) -- Register it with oUF self.AdditionalPower = AdditionalPower self.AdditionalPower.bg = Background Hooks Override(self) - Used to completely override the internal update function. Removing the table key entry will make the element fall-back to its internal function again. ]] local _, ns = ... local oUF = ns.oUF local playerClass = select(2, UnitClass('player')) local ADDITIONAL_POWER_BAR_NAME = ADDITIONAL_POWER_BAR_NAME local ADDITIONAL_POWER_BAR_INDEX = ADDITIONAL_POWER_BAR_INDEX local function Update(self, event, unit, powertype) if(unit ~= 'player' or (powertype and powertype ~= ADDITIONAL_POWER_BAR_NAME)) then return end local element = self.AdditionalPower if(element.PreUpdate) then element:PreUpdate(unit) end local cur = UnitPower('player', ADDITIONAL_POWER_BAR_INDEX) local max = UnitPowerMax('player', ADDITIONAL_POWER_BAR_INDEX) element:SetMinMaxValues(0, max) element:SetValue(cur) local r, g, b, t if(element.colorClass) then t = self.colors.class[playerClass] elseif(element.colorSmooth) then r, g, b = self.ColorGradient(cur, max, unpack(element.smoothGradient or self.colors.smooth)) elseif(element.colorPower) then t = self.colors.power[ADDITIONAL_POWER_BAR_NAME] end if(t) then r, g, b = t[1], t[2], t[3] end if(b) then element:SetStatusBarColor(r, g, b) local bg = element.bg if(bg) then local mu = bg.multiplier or 1 bg:SetVertexColor(r * mu, g * mu, b * mu) end end if(element.PostUpdate) then return element:PostUpdate(unit, cur, max, event) end end local function Path(self, ...) return (self.AdditionalPower.Override or Update) (self, ...) end local function ElementEnable(self) self:RegisterEvent('UNIT_POWER_FREQUENT', Path) self:RegisterEvent('UNIT_DISPLAYPOWER', Path) self:RegisterEvent('UNIT_MAXPOWER', Path) self.AdditionalPower:Show() if self.AdditionalPower.PostUpdateVisibility then self.AdditionalPower:PostUpdateVisibility(true, not self.AdditionalPower.isEnabled) end self.AdditionalPower.isEnabled = true Path(self, 'ElementEnable', 'player', ADDITIONAL_POWER_BAR_NAME) end local function ElementDisable(self) self:UnregisterEvent('UNIT_POWER_FREQUENT', Path) self:UnregisterEvent('UNIT_DISPLAYPOWER', Path) self:UnregisterEvent('UNIT_MAXPOWER', Path) self.AdditionalPower:Hide() if self.AdditionalPower.PostUpdateVisibility then self.AdditionalPower:PostUpdateVisibility(false, self.AdditionalPower.isEnabled) end self.AdditionalPower.isEnabled = nil Path(self, 'ElementDisable', 'player', ADDITIONAL_POWER_BAR_NAME) end local function Visibility(self, event, unit) local shouldEnable if(not UnitHasVehicleUI('player')) then if(UnitPowerMax(unit, ADDITIONAL_POWER_BAR_INDEX) ~= 0) then if(ALT_MANA_BAR_PAIR_DISPLAY_INFO[playerClass]) then local powerType = UnitPowerType(unit) shouldEnable = ALT_MANA_BAR_PAIR_DISPLAY_INFO[playerClass][powerType] end end end if(shouldEnable) then ElementEnable(self) else ElementDisable(self) end end local VisibilityPath = function(self, ...) return (self.AdditionalPower.OverrideVisibility or Visibility) (self, ...) end local function ForceUpdate(element) return VisibilityPath(element.__owner, 'ForceUpdate', element.__owner.unit) end local Enable = function(self, unit) local element = self.AdditionalPower if(element and unit == 'player') then element.__owner = self element.ForceUpdate = ForceUpdate self:RegisterEvent('UNIT_DISPLAYPOWER', VisibilityPath) if(element:IsObjectType'StatusBar' and not element:GetStatusBarTexture()) then element:SetStatusBarTexture[[Interface\TargetingFrame\UI-StatusBar]] end return true end end local Disable = function(self) local element = self.AdditionalPower if(element) then ElementDisable(self) self:UnregisterEvent('UNIT_DISPLAYPOWER', VisibilityPath) end end oUF:AddElement('AdditionalPower', VisibilityPath, Enable, Disable)
local addonName, global = ...; local greetings = { "You look awesome today, by the way!", "Have a great day!", "I'm gonna have tacos on Friday :D", "Pineapple on pizza is actually pretty good." }; local greeting = greetings[math.random(#greetings)]; print(global.ADDON_NAME_PRETTY .. " v" .. global.VERSION .. " loaded. " .. greeting)
ITEM.name = "Saiga-12 Drum Magazine" ITEM.description = "A drum magazine explicitly made for the Saiga-12." ITEM.category = "Attachments" ITEM.model = "models/Items/BoxSRounds.mdl" ITEM.width = 1 ITEM.height = 1 ITEM.slot = 4 ITEM.weight = 2 ITEM.price = 5000 ITEM.isAttachment = true ITEM.attSearch = { "kk_ins2_mag_saiga_20", } -- Slot Numbers Defined: -- Sights = 1 -- Barrels = 2 -- Lasers/Lights = 3 -- Magazines = 4 -- Underbarrel = 5 -- Additional slots can be added so long as they line up with the SWEP's attachment code appropriately.
--Copyright 2016 Alex Iverson local funcTools = require"fr.functionTools" local createFunction = funcTools.createFunction local tinsert = table.insert local tremove = table.remove local PropertyMetatable local Property local function fromEventStream(stream, initial) local subscribers = {} local preupdates = {} local nSubscribers = 0 local unsub local function sink(event, val) if event == "Initial" or event == "Next" then initial = val end for i=1, nSubscribers do preupdates[i]() end local i = 1 while i <= nSubscribers do local finished = subscribers[i](event, val) if finished then tremove(subscribers, i) nSubscribers = nSubscribers - 1 else i = i + 1 end end if nSubscribers == 0 then unsub = nil return true else return false end end local prop = Property.create(function(self, other, preupdate) preupdate() if not other("Initial", initial) then tinsert(subscribers, other) tinsert(preupdates, preupdate) nSubscribers = nSubscribers + 1 if not unsub then unsub = stream:subscribe(sink) end end return function() for i=1, #subscribers do if subscribers[i] == other then tremove(subscribers, i) tremove(preupdates, i) nSubscribers = nSubscribers - 1 if nSubscribers == 0 then unsub() unsub = nil end return end end end end) prop.tag = "Property.FromEventStream" prop[1] = stream return prop end local function propertyFromBinder(binder) local subscribers = {} local preupdates = {} local nSubscribers = 0 local pending = 0 local currentValue local hasCurrent local unsub local prop local function sink(event, ...) if pending ~= 0 then return end if event == "Next" or event == "Initial" then hasCurrent = true currentValue = ... end local i = 1 while i <= nSubscribers do local finished = subscribers[i](event, ...) if finished then tremove(subscribers, i) tremove(preupdates, i) nSubscribers = nSubscribers - 1 else i = i + 1 end end if nSubscribers == 0 then return true else return false end end local function preupdate() --print(("preupdating %s, %d updates pending"):format(prop.name or "anonymous " .. prop.tag .. tostring(prop):sub(7), pending)) if pending == 0 then --print(("%s triggering subscriber preupdates"):format(prop.name or "anonymous ".. prop.tag .. tostring(prop):sub(7))) for i=1, nSubscribers do preupdates[i]() end end pending = pending + 1 end local function updateReady() --print(("readying %s, %d updates pending"):format(prop.name or "anonymous ".. prop.tag .. tostring(prop):sub(7), pending)) pending = pending - 1 return pending == 0 end prop = Property.create(function(self, other, otherPreupdate) if hasCurrent then otherPreupdate() end if not hasCurrent or not other("Initial", currentValue) then tinsert(subscribers, other) tinsert(preupdates, otherPreupdate) nSubscribers = nSubscribers + 1 if not unsub then unsub = binder(sink, preupdate, updateReady) end end return function() for i=1, #subscribers do if subscribers[i] == other then tremove(subscribers, i) tremove(preupdates, i) nSubscribers = nSubscribers - 1 return end end end end) prop.tag = "property.fromBinder" return prop end Property = { combine = function(self, other, f, ...) local combineFunc = createFunction(f, ...) local valA, valB local haveA, haveB local unsubA, unsubB local prop = propertyFromBinder(function(sink, preupdate, updateReady) unsubA = self:subscribe(function(event, value) --print(("%s recieved %s %s from %s"):format(prop.name, event, value, self.name)) if event == "Next" or event == "Initial" then valA = value haveA = true if haveB and updateReady() then return sink(event, combineFunc(valA, valB)) end else if updateReady() then return sink(event, value) end end end, function() --print(("preupdate propagating from %s to %s"):format(self.name, prop.name)) if haveB then preupdate() end end) unsubB = other:subscribe(function(event, value) --print(("%s recieved %s %s from %s"):format(prop.name, event, value, other.name)) if event == "Next" or event == "Initial" then valB = value haveB = true if haveA and updateReady() then return sink(event, combineFunc(valA, valB)) end else if updateReady() then return sink(event, value) end end end, function() --print(("preupdate propagating from %s to %s"):format(other.name, prop.name)) if haveA then preupdate() end end) return function() unsubA(); unsubB() end end) prop.tag = "Property.Combine" prop[1] = self prop[2] = other prop[3] = f return prop end, combineAsArray = function(props) local latestValues = {} local unsubs = {} local initialized = {} local allInitialized = false local prop = propertyFromBinder( function(sink, preupdate, updateReady) for i = 1, #props do unsubs[i] = props[i]:subscribe( function(event, value) if event == "Initial" then initialized[i] = true latestValues[i] = value if not allInitialized then for j = 1, #props do if not initialized[j] then return end end allInitialized = true end local ready = updateReady() if ready then local vals = {} for j=1,#props do vals[j] = latestValues[j] end sink(event, vals) end elseif event == "Next" then latestValues[i] = value if updateReady() then local vals = {} for j=1,#props do vals[j] = latestValues[j] end sink(event, vals) end else sink(event, value) end end, function() if not allInitialized then for j = 1, #props do if not initialized[j] and i ~= j then return end end end preupdate() end ) end return function() for i = 1, #props do unsubs[i]() end end end ) prop.tag = "property.combineAsArray" return prop end, onValue = function(self, f, ...) local eachFunc = createFunction(f, ...) return self:subscribe(function(event, ...) if event == "Next" or event == "Initial" then eachFunc(...) end return false end, function() --[[print("onValue recieved preupdate")]] end) end, map = function(self, f, ...) local mapFunc = createFunction(f, ...) local prop = propertyFromBinder(function(sink, preupdate, updateReady) return self:subscribe(function(event, ...) if event == "Next" or event == "Initial" then if updateReady() then return sink(event, mapFunc(...)) end else if updateReady() then return sink(event, ...) end end end, preupdate) end) prop.tag = "property.map" return prop end, Not = function(self) return self:map(function(val) return not val end) end } Property.each = Property.onValue local function add(a, b) return a + b end local function mul(a, b) return a * b end local function sub(a, b) return a - b end local function div(a, b) return a / b end --TODO: Finish combination metamethods PropertyMetatable = { __index = Property, __add = function(self, other) local prop = self:combine(other, add) prop.tag = "property.add" return prop end, __mul = function(self, other) local prop = self:combine(other, mul) prop.tag = "property.mul" return prop end, __sub = function(self, other) local prop = self:combine(other, sub) prop.tag = "property.sub" return prop end, __div = function(self, other) local prop = self:combine(other, div) prop.tag = "property.div" return prop end, __type = "fr.property" } function Property.create(subscribe) return setmetatable({subscribe = subscribe}, PropertyMetatable) end function Property.isProperty(obj) return getmetatable(obj) == PropertyMetatable end function Property.constant(value) local prop = Property.create(function(self, sink, preupdate) preupdate() sink("Initial", value) end) prop.tag = "Property.Constant" prop[1] = value return prop end Property.fromEventStream = fromEventStream return Property