content stringlengths 5 1.05M |
|---|
require "GGPrediction"
require "DamageLib"
require "2DGeometry"
require "MapPositionGOS"
local EnemyHeroes = {}
local AllyHeroes = {}
local EnemySpawnPos = nil
local AllySpawnPos = nil
--do--
--local Version = 1.4
--local Files = {
--Lua = {
--Path = SCRIPT_PATH,
--Name = "dnsSupports.lua",
--Url = "https://raw.githubusercontent.com/fkndns/dnsSupports/main/dnsSupports.lua"
--},
--Version = {
--Path = SCRIPT_PATH,
--Name = "dnsSupports.version",
--Url = "https://raw.githubusercontent.com/fkndns/dnsSupports/main/dnsSupports.version" -- check if Raw Adress correct pls.. after you have create the version file on Github
--}
--}
--local function AutoUpdate()
--local function DownloadFile(url, path, fileName)
--DownloadFileAsync(url, path .. fileName, function() end)
--while not FileExist(path .. fileName) do end
--end
--local function ReadFile(path, fileName)
--local file = io.open(path .. fileName, "r")
--local result = file:read()
--file:close()
--return result
--end
--DownloadFile(Files.Version.Url, Files.Version.Path, Files.Version.Name)
--local textPos = myHero.pos:To2D()
--local NewVersion = tonumber(ReadFile(Files.Version.Path, Files.Version.Name))
--if NewVersion > Version then
--DownloadFile(Files.Lua.Url, Files.Lua.Path, Files.Lua.Name)
--print("New dnsMarksmen Version. Press 2x F6") -- <-- you can change the massage for users here !!!!
--else
--print(Files.Version.Name .. ": No Updates Found") -- <-- here too
--end
--end
--AutoUpdate()
--end --
local ItemHotKey = {[ITEM_1] = HK_ITEM_1, [ITEM_2] = HK_ITEM_2,[ITEM_3] = HK_ITEM_3, [ITEM_4] = HK_ITEM_4, [ITEM_5] = HK_ITEM_5, [ITEM_6] = HK_ITEM_6,}
local function GetInventorySlotItem(itemID)
assert(type(itemID) == "number", "GetInventorySlotItem: wrong argument types (<number> expected)")
for _, j in pairs({ITEM_1, ITEM_2, ITEM_3, ITEM_4, ITEM_5, ITEM_6}) do
if myHero:GetItemData(j).itemID == itemID and myHero:GetSpellData(j).currentCd == 0 then return j end
end
return nil
end
local function IsNearEnemyTurret(pos, distance)
--PrintChat("Checking Turrets")
local turrets = _G.SDK.ObjectManager:GetTurrets(GetDistance(pos) + 1000)
for i = 1, #turrets do
local turret = turrets[i]
if turret and GetDistance(turret.pos, pos) <= distance+915 and turret.team == 300-myHero.team then
--PrintChat("turret")
return turret
end
end
end
local function IsUnderEnemyTurret(pos)
--PrintChat("Checking Turrets")
local turrets = _G.SDK.ObjectManager:GetTurrets(GetDistance(pos) + 1000)
for i = 1, #turrets do
local turret = turrets[i]
if turret and GetDistance(turret.pos, pos) <= 915 and turret.team == 300-myHero.team then
--PrintChat("turret")
return turret
end
end
end
function GetDifference(a,b)
local Sa = a^2
local Sb = b^2
local Sdif = (a-b)^2
return math.sqrt(Sdif)
end
function GetDistanceSqr(Pos1, Pos2)
local Pos2 = Pos2 or myHero.pos
local dx = Pos1.x - Pos2.x
local dz = (Pos1.z or Pos1.y) - (Pos2.z or Pos2.y)
return dx^2 + dz^2
end
function DrawTextOnHero(hero, text, color)
local pos2D = hero.pos:To2D()
local posX = pos2D.x - 50
local posY = pos2D.y
Draw.Text(text, 28, posX + 50, posY - 15, color)
end
function GetDistance(Pos1, Pos2)
return math.sqrt(GetDistanceSqr(Pos1, Pos2))
end
function IsImmobile(unit)
local MaxDuration = 0
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff and buff.count > 0 then
local BuffType = buff.type
if BuffType == 5 or BuffType == 12 or BuffType == 22 or BuffType == 23 or BuffType == 25 or BuffType == 30 or buff.name == "recall" then
local BuffDuration = buff.duration
if BuffDuration > MaxDuration then
MaxDuration = BuffDuration
end
end
end
end
return MaxDuration
end
function IsCleanse(unit)
local MaxDuration = 0
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff and buff.count > 0 then
local BuffType = buff.type
if BuffType == 5 or BuffType == 8 or BuffType == 9 or BuffType == 12 or BuffType == 22 or BuffType == 23 or BuffType == 25 or BuffType == 32 then
local BuffDuration = buff.duration
if BuffDuration > MaxDuration then
MaxDuration = BuffDuration
end
end
end
end
return MaxDuration
end
function IsChainable(unit)
local MaxDuration = 0
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff and buff.count > 0 then
local BuffType = buff.type
if BuffType == 5 or BuffType == 8 or BuffType == 9 or BuffType == 12 or BuffType == 22 or BuffType == 23 or BuffType == 25 or BuffType == 32 or BuffType == 10 then
local BuffDuration = buff.duration
if BuffDuration > MaxDuration then
MaxDuration = BuffDuration
end
end
end
end
return MaxDuration
end
function GetEnemyHeroes()
for i = 1, Game.HeroCount() do
local Hero = Game.Hero(i)
if Hero.isEnemy then
table.insert(EnemyHeroes, Hero)
PrintChat(Hero.name)
end
end
--PrintChat("Got Enemy Heroes")
end
function GetEnemyBase()
for i = 1, Game.ObjectCount() do
local object = Game.Object(i)
if not object.isAlly and object.type == Obj_AI_SpawnPoint then
EnemySpawnPos = object
break
end
end
end
function GetAllyBase()
for i = 1, Game.ObjectCount() do
local object = Game.Object(i)
if object.isAlly and object.type == Obj_AI_SpawnPoint then
AllySpawnPos = object
break
end
end
end
function GetAllyHeroes()
for i = 1, Game.HeroCount() do
local Hero = Game.Hero(i)
if Hero.isAlly and Hero.charName ~= myHero.charName then
table.insert(AllyHeroes, Hero)
PrintChat(Hero.name)
end
end
--PrintChat("Got Enemy Heroes")
end
function GetBuffStart(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff.name == buffname and buff.count > 0 then
return buff.startTime
end
end
return nil
end
function GetBuffExpire(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff.name == buffname and buff.count > 0 then
return buff.expireTime
end
end
return nil
end
function GetBuffDuration(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff.name == buffname and buff.count > 0 then
return buff.duration
end
end
return 0
end
function GetBuffStacks(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff.name == buffname and buff.count > 0 then
return buff.count
end
end
return 0
end
local function GetWaypoints(unit) -- get unit's waypoints
local waypoints = {}
local pathData = unit.pathing
table.insert(waypoints, unit.pos)
local PathStart = pathData.pathIndex
local PathEnd = pathData.pathCount
if PathStart and PathEnd and PathStart >= 0 and PathEnd <= 20 and pathData.hasMovePath then
for i = pathData.pathIndex, pathData.pathCount do
table.insert(waypoints, unit:GetPath(i))
end
end
return waypoints
end
local function GetUnitPositionNext(unit)
local waypoints = GetWaypoints(unit)
if #waypoints == 1 then
return nil -- we have only 1 waypoint which means that unit is not moving, return his position
end
return waypoints[2] -- all segments have been checked, so the final result is the last waypoint
end
local function GetUnitPositionAfterTime(unit, time)
local waypoints = GetWaypoints(unit)
if #waypoints == 1 then
return unit.pos -- we have only 1 waypoint which means that unit is not moving, return his position
end
local max = unit.ms * time -- calculate arrival distance
for i = 1, #waypoints - 1 do
local a, b = waypoints[i], waypoints[i + 1]
local dist = GetDistance(a, b)
if dist >= max then
return Vector(a):Extended(b, dist) -- distance of segment is bigger or equal to maximum distance, so the result is point A extended by point B over calculated distance
end
max = max - dist -- reduce maximum distance and check next segments
end
return waypoints[#waypoints] -- all segments have been checked, so the final result is the last waypoint
end
function GetTarget(range)
if _G.SDK then
return _G.SDK.TargetSelector:GetTarget(range, _G.SDK.DAMAGE_TYPE_MAGICAL);
else
return _G.GOS:GetTarget(range,"AD")
end
end
function GotBuff(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
--PrintChat(buff.name)
if buff.name == buffname and buff.count > 0 then
return buff.count
end
end
return 0
end
function BuffActive(unit, buffname)
for i = 0, unit.buffCount do
local buff = unit:GetBuff(i)
if buff.name == buffname and buff.count > 0 then
return true
end
end
return false
end
function IsReady(spell)
return myHero:GetSpellData(spell).currentCd == 0 and myHero:GetSpellData(spell).level > 0 and myHero:GetSpellData(spell).mana <= myHero.mana and Game.CanUseSpell(spell) == 0
end
function Mode()
if _G.SDK then
if _G.SDK.Orbwalker.Modes[_G.SDK.ORBWALKER_MODE_COMBO] then
return "Combo"
elseif _G.SDK.Orbwalker.Modes[_G.SDK.ORBWALKER_MODE_HARASS] or Orbwalker.Key.Harass:Value() then
return "Harass"
elseif _G.SDK.Orbwalker.Modes[_G.SDK.ORBWALKER_MODE_LANECLEAR] or Orbwalker.Key.Clear:Value() then
return "LaneClear"
elseif _G.SDK.Orbwalker.Modes[_G.SDK.ORBWALKER_MODE_LASTHIT] or Orbwalker.Key.LastHit:Value() then
return "LastHit"
elseif _G.SDK.Orbwalker.Modes[_G.SDK.ORBWALKER_MODE_FLEE] then
return "Flee"
end
else
return GOS.GetMode()
end
end
function GetItemSlot(unit, id)
for i = ITEM_1, ITEM_7 do
if unit:GetItemData(i).itemID == id then
return i
end
end
return 0
end
function IsFacing(unit)
local V = Vector((unit.pos - myHero.pos))
local D = Vector(unit.dir)
local Angle = 180 - math.deg(math.acos(V*D/(V:Len()*D:Len())))
if math.abs(Angle) < 80 then
return true
end
return false
end
function IsMyHeroFacing(unit)
local V = Vector((myHero.pos - unit.pos))
local D = Vector(myHero.dir)
local Angle = 180 - math.deg(math.acos(V*D/(V:Len()*D:Len())))
if math.abs(Angle) < 80 then
return true
end
return false
end
function SetMovement(bool)
if _G.PremiumOrbwalker then
_G.PremiumOrbwalker:SetAttack(bool)
_G.PremiumOrbwalker:SetMovement(bool)
elseif _G.SDK then
_G.SDK.Orbwalker:SetMovement(bool)
_G.SDK.Orbwalker:SetAttack(bool)
end
end
local function CheckHPPred(unit, SpellSpeed)
local speed = SpellSpeed
local range = myHero.pos:DistanceTo(unit.pos)
local time = range / speed
if _G.SDK and _G.SDK.Orbwalker then
return _G.SDK.HealthPrediction:GetPrediction(unit, time)
elseif _G.PremiumOrbwalker then
return _G.PremiumOrbwalker:GetHealthPrediction(unit, time)
end
end
function EnableMovement()
SetMovement(true)
end
local function IsValid(unit)
if (unit and unit.valid and unit.isTargetable and unit.alive and unit.visible and unit.networkID and unit.pathing and unit.health > 0) then
return true;
end
return false;
end
local function ClosestPointOnLineSegment(p, p1, p2)
local px = p.x
local pz = p.z
local ax = p1.x
local az = p1.z
local bx = p2.x
local bz = p2.z
local bxax = bx - ax
local bzaz = bz - az
local t = ((px - ax) * bxax + (pz - az) * bzaz) / (bxax * bxax + bzaz * bzaz)
if (t < 0) then
return p1, false
end
if (t > 1) then
return p2, false
end
return {x = ax + t * bxax, z = az + t * bzaz}, true
end
local function ValidTarget(unit, range)
if (unit and unit.valid and unit.isTargetable and unit.alive and unit.visible and unit.networkID and unit.pathing and unit.health > 0) then
if range then
if GetDistance(unit.pos) <= range then
return true;
end
else
return true
end
end
return false;
end
local function GetEnemyCount(range, pos)
local pos = pos.pos
local count = 0
for i, hero in pairs(EnemyHeroes) do
local Range = range * range
if GetDistanceSqr(pos, hero.pos) < Range and IsValid(hero) then
count = count + 1
end
end
return count
end
local function GetAllyCount(range, pos)
local pos = pos.pos
local count = 0
for i, hero in pairs(AllyHeroes) do
local Range = range * range
if GetDistanceSqr(pos, hero.pos) < Range and IsValid(hero) then
count = count + 1
end
end
return count
end
function GetTurretShot(unit)
local turrets = _G.SDK.ObjectManager:GetTurrets(GetDistance(unit.pos) + 1000)
for i = 1, #turrets do
local turret = turrets[i]
if turret and turret.activeSpell.valid and turret.activeSpell.target == unit.handle and not turret.activeSpell.isStopped and turret.team == 300-myHero.team then
--PrintChat("turret shot")
return true
else
return false
end
end
end
local function MMCast(pos, spell)
local MMSpot = Vector(pos):ToMM()
local MouseSpotBefore = mousePos
Control.SetCursorPos(MMSpot.x, MMSpot.y)
Control.KeyDown(spell); Control.KeyUp(spell)
DelayAction(function() Control.SetCursorPos(MouseSpotBefore) end, 0.20)
end
class "Manager"
function Manager:__init()
if myHero.charName == "Lulu" then
DelayAction(function () self:LoadLulu() end, 1.05)
end
end
function Manager:LoadLulu()
Lulu:Spells()
Lulu:Menu()
Callback.Add("Tick", function() Lulu:Tick() end)
Callback.Add("Draw", function() Lulu:Draws() end)
end
class "Lulu"
local WBuffs = {
["Ashe"] = {"AsheQ"},
["Hecarim"] = {"HecarimRamp"},
["Kaisa"] = {"KaisaE"},
["Kayle"] = {"KayleE"},
["Kennen"] = {"KennenShurikenStorm"},
["KogMaw"] = {"KogMawBioArcaneBarrage"},
["MasterYi"] = {"Highlander"},
["Quinn"] = {"QuinnE"},
["Rammus"] = {"PowerBall"},
["Rengar"] = {"RengarR"},
["Samira"] = {"SamiraE"},
["Singed"] = {"InsanityPotion"},
["Skarner"] = {"SkarnerImpale"},
["Tristana"] = {"TristanaE"},
["Twitch"] = {"TwitchFullAutomatic"},
["Varus"] = {"VarusR"},
["Vayne"] = {"VayneInquisition"},
["Xayah"] = {"XayahW"},
}
local EnemyLoaded = false
local AllyLoaded = false
-- Icons
local ChampIcon = "https://www.proguides.com/public/media/rlocal/champion/thumbnail/117.png"
local QIcon = "https://www.proguides.com/public/media/rlocal/champion/ability/thumbnail/LuluQ.png"
local WIcon = "https://www.proguides.com/public/media/rlocal/champion/ability/thumbnail/LuluW.png"
local EIcon = "https://www.proguides.com/public/media/rlocal/champion/ability/thumbnail/LuluE.png"
local RIcon = "https://www.proguides.com/public/media/rlocal/champion/ability/thumbnail/LuluR.png"
--Ranges
local AARange = 550
local QRange = 925
local WRange = 650
local ERange = 650
local RRange = 900
-- Buffs
function Lulu:Menu()
self.Menu = MenuElement({type = MENU, id = "lulu", name = "dnsLulu", leftIcon = ChampIcon})
-- combo
self.Menu:MenuElement({id = "combo", name = "Combo", type = MENU})
self.Menu.combo:MenuElement({id = "qcombo", name = "Use [Q] in Combo", value = true, leftIcon = QIcon})
self.Menu.combo:MenuElement({id = "qcombohc", name = "[Q] HitChance", value = 2, drop = {"Normal", "High", "Immobile"}, leftIcon = QIcon})
self.Menu.combo:MenuElement({id = "wcombo", name = "Use [W] in Combo", value = true, leftIcon = WIcon})
self.Menu.combo:MenuElement({id = "rcombo", name = "Use [R] in Combo", value = true, leftIcon = RIcon})
self.Menu.combo:MenuElement({id = "rcombocount", name = "[R] HitCount", value = 3, min = 1, max = 5, step = 1, leftIcon = RIcon})
self.Menu.combo:MenuElement({id = "rcomboallies", name = "Use [R] on:", type = MENU, leftIcon = RIcon})
-- Auto
self.Menu:MenuElement({id = "auto", name = "Auto", type = MENU})
self.Menu.auto:MenuElement({id = "qks", name = "Use [Q] KS", value = false, leftIcon = QIcon})
self.Menu.auto:MenuElement({id = "wbuff", name = "Use [W] Buff", value = true, leftIcon = WIcon})
self.Menu.auto:MenuElement({id = "winterrupt", name = "Use [W] Interrupt", value = true, leftIcon = WIcon})
self.Menu.auto:MenuElement({id = "eauto", name = "Use [E] Shield", value = true, leftIcon = EIcon})
self.Menu.auto:MenuElement({id = "eautohp", name = "[E] HP <=", value = 80, min = 5, max = 100, step = 5, identifier = "%", leftIcon = EIcon})
self.Menu.auto:MenuElement({id = "eautoallies", name = "Use [E] on:", type = MENU, leftIcon = EIcon})
self.Menu.auto:MenuElement({id = "rauto", name = "Use [R] Shield", value = true, leftIcon = RIcon})
self.Menu.auto:MenuElement({id = "rautohp", name = "[R] HP <=", value = 30, min = 5, max = 100, step = 5, identifier = "%", leftIcon = RIcon})
self.Menu.auto:MenuElement({id = "rautoallies", name = "Use [R] on:", type = MENU, leftIcon = RIcon})
-- Draw
self.Menu:MenuElement({id = "draws", name = "Draws", type = MENU})
self.Menu.draws:MenuElement({id = "qdraw", name = "Draw [Q] Range", value = false, leftIcon = QIcon})
self.Menu.draws:MenuElement({id = "wedraw", name = "Draw [W] / [E] Range", value = false, leftIcon = WIcon, rightIcon = EIcon})
self.Menu.draws:MenuElement({id = "rdraw", name = "Draw [R] Range", value = false, leftIcon = RIcon})
end
function Lulu:ActiveMenu()
for i, ally in pairs(AllyHeroes) do
self.Menu.combo.rcomboallies:MenuElement({id = ally.charName, name = ally.charName, value = true})
self.Menu.auto.eautoallies:MenuElement({id = ally.charName, name = ally.charName, value = true})
self.Menu.auto.rautoallies:MenuElement({id = ally.charName, name = ally.charName, value = true})
end
end
function Lulu:Draws()
if self.Menu.draws.qdraw:Value() then
Draw.Circle(myHero, QRange, 1, Draw.Color(255, 255, 255, 0))
end
if self.Menu.draws.wedraw:Value() then
Draw.Circle(myHero, WRange, 1, Draw.Color(255, 0, 255, 0))
end
if self.Menu.draws.rdraw:Value() then
Draw.Circle(myHero, RRange, 1, Draw.Color(255, 255, 0, 0))
end
end
function Lulu:Spells()
QSpell = GGPrediction:SpellPrediction({Delay = 0.25, Radius = 80, Range = QRange, Speed = 1400, Collision = false, Type = GGPrediction.SPELLTYPE_LINE})
end
function Lulu:Tick()
if _G.JustEvade and _G.JustEvade:Evading() or (_G.ExtLibEvade and _G.ExtLibEvade.Evading) or Game.IsChatOpen() or myHero.dead then return end
target = GetTarget(AARange)
CastingQ = myHero.activeSpell.name == "LuluQ"
CastingW = myHero.activeSpell.name == "LuluW"
CastingE = myHero.activeSpell.name == "LuluE"
CastingR = myHero.activeSpell.name == "LuluR"
if EnemyLoaded == false then
local CountEnemy = 0
for i, enemy in pairs(EnemyHeroes) do
CountEnemy = CountEnemy + 1
end
if CountEnemy < 1 then
GetEnemyHeroes()
else
EnemyLoaded = true
PrintChat("Enemy Loaded")
end
end
if AllyLoaded == false then
local CountAlly = 0
for i, ally in pairs(AllyHeroes) do
CountAlly = CountAlly + 1
end
if CountAlly < 1 then
GetAllyHeroes()
else
AllyLoaded = true
PrintChat("Ally Loaded")
self:ActiveMenu()
end
end
self:Auto()
self:Logic()
end
function Lulu:CastingChecks()
if not CastingQ and not CastingW and not CastingE and not CastingR then
return true
else
return false
end
end
function Lulu:CanUse(spell, mode)
if mode == nil then
mode = Mode()
end
if spell == _Q then
if mode == "Combo" and IsReady(_Q) and self.Menu.combo.qcombo:Value() then
return true
end
if mode == "KS" and IsReady(_Q) and self.Menu.auto.qks:Value() then
return true
end
end
if spell == _W then
if mode == "Combo" and IsReady(_W) and self.Menu.combo.wcombo:Value() then
return true
end
if mode == "Buff" and IsReady(_W) and self.Menu.auto.wbuff:Value() then
return true
end
if mode == "Interrupt" and IsReady(_W) and self.Menu.auto.winterrupt:Value() then
return true
end
end
if spell == _E then
if mode == "Auto" and IsReady(_E) and self.Menu.auto.eauto:Value() then
return true
end
end
if spell == _R then
if mode == "Combo" and IsReady(_R) and self.Menu.combo.rcombo:Value() then
return true
end
if mode == "Auto" and IsReady(_R) and self.Menu.auto.rauto:Value() then
return true
end
end
end
function Lulu:Logic()
self:TurretShield()
if Mode() == "Combo" then
self:ComboQ()
end
end
function Lulu:Auto()
for i, enemy in pairs(EnemyHeroes) do
self:QKS(enemy)
self:WInterrupt(enemy)
self:WDash(enemy)
self:EShieldSelf(enemy)
self:RShieldSelf(enemy)
if Mode() == "Combo" then
self:WComboSelf(enemy)
end
for j, ally in pairs(AllyHeroes) do
self:WBuff(ally)
self:EShieldAlly(enemy, ally)
self:RShieldAlly(enemy, ally)
self:TurretShieldAlly(ally)
if Mode() == "Combo" then
self:ComboR(enemy, ally)
self:WComboAlly(enemy, ally)
end
end
end
end
-- [functions] --
function Lulu:ComboQ()
local qtarget = GetTarget(QRange)
if ValidTarget(qtarget, QRange) and self:CanUse(_Q, "Combo") and self:CastingChecks() and myHero.attackData.state ~= 2 then
QSpell:GetPrediction(qtarget, myHero)
if QSpell:CanHit(self.Menu.combo.qcombohc:Value() + 1) then
Control.CastSpell(HK_Q, QSpell.CastPosition)
end
end
end
function Lulu:ComboR(enemy, ally)
if ValidTarget(ally, RRange) and self:CanUse(_R, "Combo") and self:CastingChecks() and myHero.attackData.state ~= 2 and self.Menu.combo.rcomboallies[ally.charName]:Value() and GetEnemyCount(250, ally) >= self.Menu.combo.rcombocount:Value() then
Control.CastSpell(HK_R, ally)
end
end
function Lulu:QKS(enemy)
if ValidTarget(enemy, QRange) and self:CanUse(_Q, "KS") and self:CastingChecks() and myHero.attackData.state ~= 2 then
local QDam = getdmg("Q", enemy, myHero, myHero:GetSpellData(_Q).level)
if enemy.health <= QDam then
QSpell:GetPrediction(enemy, myHero)
if QSpell:CanHit(HITCHANCE_HIGH) then
Control.CastSpell(HK_Q, QSpell.CastPosition)
end
end
end
end
function Lulu:WComboSelf(enemy)
if ValidTarget(enemy, WRange) and self:CanUse(_W, "Combo") and self:CastingChecks() and myHero.attackData.state ~= 2 and enemy.activeSpell.valid and not enemy.activeSpell.isStopped then
if enemy.activeSpell.target == myHero.handle then
Control.CastSpell(HK_W, enemy)
else
local placementPos = enemy.activeSpell.placementPos
local width = myHero.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(myHero.pos, enemy.pos, placementPos)
if GetDistance(myHero.pos, spellLine) <= width then
Control.CastSpell(HK_W, enemy)
end
end
end
end
function Lulu:WComboAlly(enemy, ally)
if ValidTarget(ally) and ValidTarget(enemy, WRange) and self:CanUse(_W, "Combo") and self:CastingChecks() and myHero.attackData.state ~= 2 and enemy.activeSpell.valid and not enemy.activeSpell.isStopped then
if enemy.activeSpell.target == ally.handle then
Control.CastSpell(HK_W, enemy)
else
local placementPos = enemy.activeSpell.placementPos
local width = ally.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(ally.pos, enemy.pos, placementPos)
if GetDistance(ally.pos, spellLine) <= width then
Control.CastSpell(HK_W, enemy)
end
end
end
end
function Lulu:WBuff(ally)
if ValidTarget(ally, WRange) and self:CanUse(_W, "Buff") and self:CastingChecks() and myHero.attackData.state ~= 2 and ally.activeSpell.valid then
local t = WBuffs[ally.charName]
if t then
for i = 1, #t do
if ally.activeSpell.name == t[i] then
Control.CastSpell(HK_W, ally)
end
end
end
end
end
function Lulu:WInterrupt(enemy)
local Timer = Game.Timer()
if ValidTarget(enemy, WRange) and self:CanUse(_W, "Interrupt") and self:CastingChecks() and myHero.attackData.state ~= 2 and enemy.activeSpell.valid and not enemy.activeSpell.isStopped and enemy.activeSpell.castEndTime - Timer > 0.4 then
Control.CastSpell(HK_W, enemy)
end
end
function Lulu:WDash(enemy)
if ValidTarget(enemy, WRange) and self:CanUse(_W, "Interrupt") and self:CastingChecks() and myHero.attackData.state ~= 2 then
if enemy.pathing.isDashing then
if GetDistance(myHero.pos, enemy.pathing.endPos) < GetDistance(myHero.pos, enemy.pos) then
Control.CastSpell(HK_W, enemy)
end
end
end
end
function Lulu:EShieldAlly(enemy, ally)
if ValidTarget(ally, ERange) and self:CanUse(_E, "Auto") and self:CastingChecks() and myHero.attackData.state ~= 2 and self.Menu.auto.eautoallies[ally.charName]:Value() and enemy.activeSpell.valid and not enemy.activeSpell.isStopped and ally.health / ally.maxHealth <= self.Menu.auto.eautohp:Value() / 100 then
if enemy.activeSpell.target == ally.handle then
Control.CastSpell(HK_E, ally)
else
local placementPos = enemy.activeSpell.placementPos
local width = ally.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(ally.pos, enemy.pos, placementPos)
if GetDistance(ally.pos, spellLine) <= width then
Control.CastSpell(HK_E, ally)
end
end
end
end
function Lulu:EShieldSelf(enemy)
if ValidTarget(enemy) and self:CanUse(_E, "Auto") and self:CastingChecks() and myHero.attackData.state ~= 2 and enemy.activeSpell.valid and not enemy.activeSpell.isStopped and myHero.health / myHero.maxHealth <= self.Menu.auto.eautohp:Value() / 100 then
if enemy.activeSpell.target == myHero.handle then
Control.CastSpell(HK_E, myHero)
else
local placementPos = enemy.activeSpell.placementPos
local width = myHero.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(myHero.pos, enemy.pos, placementPos)
if GetDistance(myHero.pos, spellLine) <= width then
Control.CastSpell(HK_E, myHero)
end
end
end
end
function Lulu:TurretShield()
if self:CanUse(_E, "Auto") and GetTurretShot(myHero) and self:CastingChecks() and myHero.attackData.state ~= 2 and myHero.health / myHero.maxHealth <= self.Menu.auto.eautohp:Value() / 100 then
Control.CastSpell(HK_E, myHero)
end
end
function Lulu:TurretShieldAlly(ally)
if ValidTarget(ally, ERange) and self:CanUse(_E, "Auto") and GetTurretShot(ally) and self:CastingChecks() and myHero.attackData.state ~= 2 and ally.health / ally.maxHealth <= self.Menu.auto.eautohp:Value() / 100 then
Control.CastSpell(HK_E, ally)
end
end
function Lulu:RShieldSelf(enemy)
if ValidTarget(enemy) and self:CanUse(_R, "Auto") and self:CastingChecks() and myHero.attackData.state ~= 2 and enemy.activeSpell.valid and not enemy.activeSpell.isStopped and myHero.health / myHero.maxHealth <= self.Menu.auto.rautohp:Value() / 100 then
if enemy.activeSpell.target == myHero.handle then
Control.CastSpell(HK_R, myHero)
else
local placementPos = enemy.activeSpell.placementPos
local width = myHero.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(myHero.pos, enemy.pos, placementPos)
if GetDistance(myHero.pos, spellLine) <= width then
Control.CastSpell(HK_R, myHero)
end
end
end
end
function Lulu:RShieldAlly(enemy, ally)
if ValidTarget(ally, RRange) and self:CanUse(_R, "Auto") and self:CastingChecks() and myHero.attackData.state ~= 2 and self.Menu.auto.rautoallies[ally.charName]:Value() and enemy.activeSpell.valid and not enemy.activeSpell.isStopped and ally.health / ally.maxHealth <= self.Menu.auto.rautohp:Value() / 100 then
if enemy.activeSpell.target == ally.handle then
Control.CastSpell(HK_R, ally)
else
local placementPos = enemy.activeSpell.placementPos
local width = ally.boundingRadius + 50
if enemy.activeSpell.width > 0 then width = width + enemy.activeSpell.width end
local spellLine = ClosestPointOnLineSegment(ally.pos, enemy.pos, placementPos)
if GetDistance(ally.pos, spellLine) <= width then
Control.CastSpell(HK_R, ally)
end
end
end
end
function OnLoad()
Manager()
end
|
local arg = ngx.req.get_uri_args()
local action = arg['action']
local config = require "config_kubeinv"
local redis = require "resty.redis"
local red = redis:new()
local okredis, errredis = red:connect("unix:/tmp/redis.sock")
if okredis then
ngx.log(ngx.ERR, "Connection to Redis is ok")
else
ngx.log(ngx.ERR, "Connection to Redis is not ok")
ngx.log(ngx.ERR, errredis)
end
ngx.header['Access-Control-Allow-Origin'] = '*'
ngx.header['Access-Control-Allow-Methods'] = 'GET, POST, OPTIONS'
ngx.header['Access-Control-Allow-Headers'] = 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range'
ngx.header['Access-Control-Expose-Headers'] = 'Content-Length,Content-Range'
if ngx.var.request_method == "GET" and action == 'container_definition' then
ngx.log(ngx.ERR, "Received request for getting chaos container definition")
local res, err = red:get("chaos_container")
if res == ngx.null then
ngx.log(ngx.ERR, "There is no chaos_container key set in Redis. Taking default chaos container definition")
ngx.say(config['default_chaos_container'])
else
ngx.log(ngx.ERR, "There is chaos_container key set in Redis. Taking custom chaos container definition")
ngx.say(res)
end
elseif ngx.var.request_method == "POST" and action == 'set' then
local body_data = ngx.req.get_body_data()
ngx.log(ngx.ERR, "Received new yaml definition for chaos container: " .. body_data)
red:set("chaos_container", body_data)
ngx.say("New chaos container definition has been configured in Redis")
return ngx.exit(ngx.status)
end |
LinkLuaModifier("modifier_mutation_shadow_dance_buff", "modifier/mutation/modifier_mutation_shadow_dance.lua", LUA_MODIFIER_MOTION_NONE )
modifier_mutation_shadow_dance = modifier_mutation_shadow_dance or class({})
function modifier_mutation_shadow_dance:IsPurgable() return false end
function modifier_mutation_shadow_dance:IsHidden() return true end
if IsServer() then
function modifier_mutation_shadow_dance:DeclareFunctions()
local funcs = {
MODIFIER_EVENT_ON_TAKEDAMAGE,
MODIFIER_EVENT_ON_ATTACK_LANDED,
}
return funcs
end
function modifier_mutation_shadow_dance:OnCreated()
self.delay = 3.0
self:GetParent().last_seen = 0
self:StartIntervalThink(0.1)
end
function modifier_mutation_shadow_dance:OnIntervalThink()
-- print("last seen "..self:GetParent():GetUnitName().." :", self:GetParent().last_seen)
if self:GetParent():GetTeamNumber() == 2 then
for _, hero in pairs(HeroList:GetAllHeroes()) do
if hero:CanEntityBeSeenByMyTeam(self:GetParent()) and hero:GetTeamNumber() == 3 then
modifier_mutation_shadow_dance:ResetCheck(self:GetParent())
return
end
end
elseif self:GetParent():GetTeamNumber() == 3 then
for _, hero in pairs(HeroList:GetAllHeroes()) do
if hero:CanEntityBeSeenByMyTeam(self:GetParent()) and hero:GetTeamNumber() == 2 then
modifier_mutation_shadow_dance:ResetCheck(self:GetParent())
return
end
end
end
self:GetParent().last_seen = self:GetParent().last_seen + 0.1
if self:GetParent().last_seen and self:GetParent().last_seen >= self.delay then
if not self:GetParent():HasModifier("modifier_mutation_shadow_dance_buff") then
self:GetParent():AddNewModifier(self:GetParent(), nil, "modifier_mutation_shadow_dance_buff", {})
end
end
end
function modifier_mutation_shadow_dance:OnTakeDamage(kv)
if self:GetParent() == kv.unit then
modifier_mutation_shadow_dance:ResetCheck(self:GetParent())
end
end
function modifier_mutation_shadow_dance:OnAttackLanded(kv)
if self:GetParent() == kv.attacker then
modifier_mutation_shadow_dance:ResetCheck(self:GetParent())
end
end
function modifier_mutation_shadow_dance:ResetCheck(hero)
hero.last_seen = 0
if hero:HasModifier("modifier_mutation_shadow_dance_buff") then
hero:RemoveModifierByName("modifier_mutation_shadow_dance_buff")
end
end
end
modifier_mutation_shadow_dance_buff = modifier_mutation_shadow_dance_buff or class({})
function modifier_mutation_shadow_dance_buff:OnCreated()
self.health_regen = 5
self.mana_regen = 2
end
function modifier_mutation_shadow_dance_buff:DeclareFunctions()
local funcs = {
MODIFIER_PROPERTY_HEALTH_REGEN_PERCENTAGE,
MODIFIER_PROPERTY_MANA_REGEN_TOTAL_PERCENTAGE,
}
return funcs
end
function modifier_mutation_shadow_dance_buff:GetEffectName()
return "particles/econ/events/fall_major_2016/radiant_fountain_regen_fm06_lvl2.vpcf"
end
function modifier_mutation_shadow_dance_buff:GetModifierHealthRegenPercentage()
return self.health_regen
end
function modifier_mutation_shadow_dance_buff:GetModifierTotalPercentageManaRegen( params )
return self.mana_regen
end
function modifier_mutation_shadow_dance_buff:GetTexture()
return "slark_shadow_dance"
end
|
local replicated_storage = game:GetService("ReplicatedStorage");
local piece_config = require(script.Parent.piece_config);
local Rodux = require(replicated_storage.Rodux);
local _ = require(replicated_storage.rodash);
local initial_matrix = {};
for i = 1, 23 do
initial_matrix[i] = {};
for j = 1, 10 do
initial_matrix[i][j] = nil;
end
end
local function get_permutation(tetriminos, random_state)
local out = {};
while #tetriminos > 0 do
local tetrimino = table.remove(tetriminos, random_state:NextInteger(#tetriminos));
table.insert(out, tetriminos);
end
return out;
end
local function advance_piece(old_bag) -- hi Wendy!
local new_bag = _.slice(old_bag.bag, 2);
local random_state = old_bag.random_state;
if #new_bag < 7 then
random_state = random_state:Clone();
local next_bag = get_permutation({"S", "Z", "J", "L", "I", "O", "T"}, random_state);
_.append(new_bag.bag, next_bag);
end
return {
bag = new_bag,
random_state = random_state,
};
end
local function spawn_piece(name)
local initial_position = piece_config[name].orientations[1];
return {
minos = initial_position,
row_offset = 0,
col_offset = 0,
orientation = 1,
name = name,
};
end
local playfield = Rodux.createReducer({
matrix = initial_matrix,
ghost_minos = {},
bag = {},
}, {
start_game = function(state, action)
local seed = action.seed;
local random_state = Random.new(seed);
local initial_bag = advance_piece({bag = {}, random_state = random_state});
local first_piece = initial_bag.bag[1];
local bag = advance_piece(initial_bag);
return {
matrix = state.matrix,
falling = spawn_piece(first_piece),
bag = bag,
};
end,
move = function(state, action)
local x_delta = action.delta;
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 cjson = require "include.cjson"
local math_random = math.random
local math_ceil = math.ceil
local math_min = math.min
local table_insert = table.insert
local math_floor = math.floor
local _M = {}
_M.data = {
rank = config.template.bossranklist,
award = config.template.bossawardlist,
attribute = config.template.bossattribute,
stage = config.template.stage,
shop = config.template.shop,
rand = {},
hp = {},
}
_M.boss_challenge_free_max = 10
_M.boss_add_challenge_interval = 7200
_M.boss_challage_time = 30 --600
_M.boss_time = 3600
_M.boss_refresh_free = 4
_M.boss_refresh_max = 8
_M.boss_add_refresh_interval = 3600
_M.boss_stage_id = "敌将"
_M.boss_stagetype = 4
_M.boss_challage_id = 11
_M.refresh_cost_id = 12
function _M:__init()
local ids={}
for k,v in pairs(self.data.attribute) do
ids[k] = v.stage
end
for k,v in pairs(ids) do
v = v%100
local stage_data = self.data.stage[self.boss_stage_id .. v][self.boss_stagetype]
local one_hp =0
if stage_data then
for k1,v1 in ipairs(stage_data.bossrate) do
one_hp = one_hp + v1[1]
end
end
self.data.hp[v] = one_hp
end
end
function _M:get_profit(id)
if self.data.attribute[id] then
return { [ self.data.attribute[id].drop[1] ] = self.data.attribute[id].drop[2]}
end
end
function _M:get_rand_boss( )
return math_random(1,#self.data.attribute)
end
--9. 每天12点到14点,全力一击挑战卷消耗减半
--10. 每天18点到20点,获得的功勋*2
function _M:get_challage_cost_num(typ)
local cost_num = 1
if typ == 2 then
local hour = timetool:get_hour()
if hour < 12 or hour >= 14 then cost_num = 2 end
end
return cost_num
end
function _M:get_challage_add_exploit(damage)
--local exploit = math_ceil(damage / 3500)
--BOSS战功勋计算奖励由原来的伤害/3500修改为 【20000基础值+照成伤害/100000】
local exploit = 20000 + math_floor(damage / 100000)
if exploit <= 0 then return 0 end
local hour = timetool:get_hour()
if hour >= 18 and hour < 20 then exploit = exploit * 2 end
return exploit
end
function _M:boss_hp(id)
return self.data.hp[id%100]
end
function _M:get_explot(id)
if not self.data.award[id] then return false end
--ngx.log(ngx.ERR,cjson.encode(self.data.award[id].item),"======type:",type(self.data.award[id].item))
return true,config:change_cost_num(self.data.award[id].item)
end
function _M:can_get_explot(id,explot)
return self.data.award[id].endprint <= explot
end
--1. 钻石补充每次2钻,每次回复一点挑战点
--2. 后续每2次增加2钻
--3. 最大100钻为上限
function _M:get_diamond(count)
--return math_min(100,2 + math_ceil(count /2) * 2) or 0
return math_min(100,6 + math_floor((count-1) /2) * 2) or 6
end
--卷每次消耗一次一张 卷ID 10
--碎片一次20个。 碎片ID 12
function _M:get_refresh_cost(typ)
local cost = {}
if typ == 1 then cost[10] = 1
elseif typ == 2 then cost[self.refresh_cost_id] = 20 end
return cost
end
function _M:get_pricetype1_data()
if not self.pricetype1 then
self.pricetype1 = {}
self.pricetype1_pro ={}
self.pricetype1_n = 0
for k,v in pairs(self.data.shop) do
table_insert(self.pricetype1,v.pricetype1)
self.pricetype1_n = self.pricetype1_n + v.pricetype1[3]
table_insert(self.pricetype1_pro,self.pricetype1_n)
end
end
return self.pricetype1
end
function _M:get_pricetype2_data()
if not self.pricetype2 then
self.pricetype2 = {}
self.pricetype2_pro ={}
self.pricetype2_n = 0
for k,v in pairs(self.data.shop) do
table_insert(self.pricetype2,v.pricetype2)
self.pricetype2_n = self.pricetype2_n + v.pricetype2[3]
table_insert(self.pricetype2_pro,self.pricetype2_n)
end
end
return self.pricetype2
end
function _M:refresh_pricetype1()
self:get_pricetype1_data()
local r = math_random(1,self.pricetype1_n)
local idx = 0
for i,v in ipairs(self.pricetype1_pro) do
if r < v then
idx = i
break;
end
r = r - v
end
if idx == 0 then return false end
idx = idx + 800
-- ngx.log(ngx.ERR,"idx:",idx .. " self.pricetype1[idx][1]:" , self.pricetype1[idx][1] .. " self.pricetype1[idx][2]:" , self.pricetype1[idx][2])
return self.data.shop[idx].index,1,self.data.shop[idx].discount
end
function _M:refresh_pricetype2()
self:get_pricetype2_data()
local r = math_random(1,self.pricetype2_n)
local idx = 0
for i,v in ipairs(self.pricetype2_pro) do
if r < v then
idx = i
break;
end
r = r - v
end
if idx == 0 then return false end
idx = idx + 800
-- ngx.log(ngx.ERR,"idx:",idx .. " self.pricetype2[idx][1]:" , self.pricetype2[idx][1] .. " self.pricetype2[idx][2]:" , self.pricetype2[idx][2])
return self.data.shop[idx].index,2,self.data.shop[idx].discount
end
--eq 物品id
--b pricetype1
--n num
function _M:refresh_item()
local eq = {}
local b={}
local n={}
--其中三个为道具购买,三个为钻石购买
for i=1,3 do
local eq1,b1,n1= self:refresh_pricetype1()
table_insert(eq,eq1)
table_insert(b,b1)
table_insert(n,n1)
end
for i=1,3 do
local eq1,b1,n1= self:refresh_pricetype2()
table_insert(eq,eq1)
table_insert(b,b1)
table_insert(n,n1)
end
return eq,b,n
end
function _M:get_rand_data(id)
if not self.data.rand[id] then
self.data.rand[id] = {}
self.data.rand[id].n = 0
self.data.rand[id].cards = self.data.shop[id].pricetype
-- [[22076,100,5000],[1,100,2000]]
for i,v in pairs(self.data.rand[id].cards) do
self.data.rand[id].n = self.data.rand[id].n + v[3]
end
end
return self.data.rand[id]
end
function _M:rand_one(id)
local cid = 0
local rand_data= self:get_rand_data(id)
local r1 = math_random(1,rand_data.n)
local idx = 0
for i,v in ipairs(rand_data.cards) do
if r1 < v[1] then
idx = i
break;
end
r1 = r1 - v[1]
end
if idx == 0 then return false end
local r2 = math_random(1,#rand_data.cards[idx][2])
cid = rand_data.cards[idx][2][r2]
return cid
end
function _M:get_can_buy_cost(id,typ)
local cost ={}
local price = {}
id = id % 800
if typ == 1 then
self:get_pricetype1_data()
price = self.pricetype1[id]
elseif typ == 2 then
self:get_pricetype2_data()
price = self.pricetype2[id]
end
if #price < 0 then return false end
cost = { [price[1] ] = price[2] }
return cost
end
function _M:get_buy_item(id)
local profit ={}
profit = { [self.data.shop[id].id ] = 1 }
return profit
end
function _M:get_range_reward()
local range = {}
local profit ={}
for k,v in ipairs(self.data.rank) do
local lrang ={}
table_insert(lrang,v.rank[1])
table_insert(lrang,v.rank[2])
table_insert(range,lrang)
table_insert(profit, {[ v.item[1] ] = v.item[2]})
end
return range,profit
end
function _M:get_boss_profit(id)
if not self.data.attribute[id] or not self.data.attribute[id].fixdrop then return {} end
return config:change_cost_num(self.data.attribute[id].fixdrop)
end
return _M |
-------------------------------------------------------------------------------
-- Mob Framework Mod by Sapier
--
-- You may copy, use, modify or do nearly anything except removing this
-- copyright notice.
-- And of course you are NOT allowed to pretend you have written it.
--
--! @file error_handling.lua
--! @brief code required to do error handling
--! @copyright Sapier
--! @author Sapier
--! @date 2013-05-010
--!
-- Contact sapier a t gmx net
-------------------------------------------------------------------------------
--
-------------------------------------------------------------------------------
-- name: mobf_assert_backtrace(value)
--
--! @brief assert in case value is false
--
--! @param value to evaluate
-------------------------------------------------------------------------------
function mobf_assert_backtrace(value)
if value == false then
print(debug.traceback("Current Callstack:\n"))
assert(value)
end
end
-------------------------------------------------------------------------------
-- name: mobf_assert_validpos(pos)
--
--! @brief check if a pos is valid
--
--! @param pos to evaluate
-------------------------------------------------------------------------------
function mobf_assert_validpos(pos)
mobf_assert_backtrace(pos ~= nil)
mobf_assert_backtrace(type(pos) == "table")
mobf_assert_backtrace(pos.x ~= nil)
mobf_assert_backtrace(pos.y ~= nil)
mobf_assert_backtrace(pos.z ~= nil)
mobf_assert_backtrace(type(pos.x) == "number")
mobf_assert_backtrace(type(pos.y) == "number")
mobf_assert_backtrace(type(pos.z) == "number")
end |
if not init then
init = true
cnt = 0
powerlevel = 100
else
energy = machine.energy()
self.label(string.format('Power: %d',energy))
if cnt == 0 then
machine.generate_power('default:tree',powerlevel)
if energy > 40 then
cnt = 1
end
else
if check_inventory.self('default:coal_lump 10','main') then
craft('default:coalblock')
end
if check_inventory.self('default:coalblock','main') then
machine.compress('default:coalblock')
if check_inventory.self('default:diamond 10','main') then
craft('default:diamondblock',18)
end
else
machine.generate_power('default:tree',powerlevel)
end
if energy <= 40 then
cnt = 0
end
end
end |
local TestBaseClass = {}
TestBaseClass.__index = TestBaseClass
--#############################################################################
--DO NOT EDIT ABOVE
--#############################################################################
--#############################################################################
--Begin Custom Code
--Required local functions:
-- __ctor()
-- __dtor()
-- __load()
-- __unLoad()
--#############################################################################
local __ctor = function(self, init)
--TODO: construct this Entity
end
local __dtor = function(self)
--TODO: destruct this Entity
end
local __load = function(self)
--TODO: load this Entity
end
local __unLoad = function(self)
--TODO: unload this Entity
end
--#############################################################################
--End Custom Code
--#############################################################################
--#############################################################################
--DO NOT EDIT BELOW
--#############################################################################
setmetatable(TestBaseClass, {
__call = function (cls, ...)
local self = setmetatable({}, cls)
self:_create(...)
return self
end,
})
function TestBaseClass:className()
return "TestBaseClass"
end
function TestBaseClass:class()
return self
end
function TestBaseClass:superClass()
return nil
end
function TestBaseClass:isa(theClass)
local b_isa = false
local cur_class = theClass:class()
while ( nil ~= cur_class ) and ( false == b_isa ) do
if cur_class == theClass then
b_isa = true
else
cur_class = cur_class:superClass()
end
end
return b_isa
end
function TestBaseClass:__gc()
TestBaseClass._destroy(self)
end
function TestBaseClass:__tostring()
local ret = self:className() .. " =\n{\n"
for pos,val in pairs(self) do
ret = ret .. "\t" .. "["..pos.."]" .. " => " .. type(val) .. " = " .. tostring(val) .. "\n"
end
return ret .. "\n\t" .. tostring_r(getmetatable(self)) .. "\n}"
end
function TestBaseClass:_destroy()
assert(not self.__TestBaseClassCalledLoad, "Must unload before you destroy")
__dtor(self)
end
function TestBaseClass:_create(init)
self.__TestBaseClassCalledLoad = false
__ctor(self, init)
end
function TestBaseClass:load()
__load(self)
self.__TestBaseClassCalledLoad = true
end
function TestBaseClass:unLoad()
assert(self.__TestBaseClassCalledLoad, "Must load before unloading")
__unLoad(self)
self.__TestBaseClassCalledLoad = false
end
return TestBaseClass
|
return(function(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_llIlllll,ThroitCheats_IIlIIIIll)local ThroitCheats_llIlIlllIlIIlIII=string.char;local ThroitCheats_IlIIIIlllIIllIIIII=string.sub;local ThroitCheats_IlIIlIIIIlllIlllllIIll=table.concat;local ThroitCheats_llIllIIlIIIllI=math.ldexp;local ThroitCheats_lIIIIlIIlllIllIlllIlIl=getfenv or function()return _ENV end;local ThroitCheats_llIIIIIIIIl=select;local ThroitCheats_IlIlllllIIIllIIIlllI=unpack or table.unpack;local ThroitCheats_IllllllIlllIl=tonumber;local ThroitCheats_IIlIIIIlllIllIlIIlIl='\103\127\127\127\124\123\127\127\127\24\30\18\26\124\117\127\127\127\56\26\11\44\26\13\9\22\28\26\124\120\127\127\127\47\19\30\6\26\13\12\124\116\127\127\127\19\16\28\30\19\47\19\30\6\26\13\124\121\127\127\127\60\16\19\16\13\76\124\124\127\127\127\17\26\8\125\127\127\127\127\127\159\16\63\125\127\127\127\127\127\127\127\127\124\116\127\127\127\56\26\11\44\15\26\28\22\30\19\12\124\118\127\127\127\42\15\27\30\11\26\58\12\15\124\123\127\127\127\8\30\22\11\125\229\230\230\230\230\230\198\64\124\122\127\127\127\15\30\22\13\12\124\117\127\127\127\56\26\11\47\19\30\6\26\13\12\124\123\127\127\127\49\30\18\26\124\118\127\127\127\60\23\30\13\30\28\11\26\13\124\122\127\127\127\20\17\22\25\26\124\113\127\127\127\57\22\17\27\57\22\13\12\11\60\23\22\19\27\124\122\127\127\127\52\17\22\25\26\124\121\127\127\127\20\17\22\25\26\77\124\119\127\127\127\61\30\28\20\15\30\28\20\124\124\127\127\127\24\10\17\124\124\127\127\127\56\10\17\124\123\127\127\127\24\10\17\77\127\9\127\127\127\126\127\127\127\126\127\127\127\126\127\127\127\126\127\127\127\125\127\127\127\125\127\127\127\125\127\127\127\124\127\127\127\122\127\127\127\122\127\127\127\122\127\127\127\122\127\127\127\122\127\127\127\122\127\127\127\121\127\127\127\121\127\127\127\121\127\127\127\121\127\127\127\121\127\127\127\121\127\127\127\120\127\127\127\120\127\127\127\120\127\127\127\120\127\127\127\120\127\127\127\120\127\127\127\100\127\127\127\100\127\127\127\100\127\127\127\100\127\127\127\100\127\127\127\116\127\127\127\99\127\127\127\99\127\127\127\57\126\127\127\57\126\127\127\57\126\127\127\57\126\127\127\57\126\127\127\57\126\127\127\57\126\127\127\57\126\127\127\98\127\127\127\55\126\127\127\55\126\127\127\52\126\127\127\52\126\127\127\52\126\127\127\52\126\127\127\52\126\127\127\51\126\127\127\51\126\127\127\49\126\127\127\49\126\127\127\49\126\127\127\49\126\127\127\49\126\127\127\48\126\127\127\48\126\127\127\48\126\127\127\48\126\127\127\48\126\127\127\48\126\127\127\48\126\127\127\47\126\127\127\47\126\127\127\47\126\127\127\47\126\127\127\47\126\127\127\46\126\127\127\46\126\127\127\46\126\127\127\46\126\127\127\46\126\127\127\45\126\127\127\45\126\127\127\45\126\127\127\45\126\127\127\45\126\127\127\45\126\127\127\44\126\127\127\44\126\127\127\44\126\127\127\42\126\127\127\42\126\127\127\41\126\127\127\41\126\127\127\40\126\127\127\40\126\127\127\37\126\127\127\37\126\127\127\37\126\127\127\37\126\127\127\37\126\127\127\36\126\127\127\36\126\127\127\36\126\127\127\36\126\127\127\36\126\127\127\35\126\127\127\35\126\127\127\35\126\127\127\35\126\127\127\35\126\127\127\35\126\127\127\34\126\127\127\34\126\127\127\34\126\127\127\32\126\127\127\32\126\127\127\31\126\127\127\31\126\127\127\30\126\127\127\30\126\127\127\49\126\127\127\27\126\127\127\26\126\127\127\25\126\127\127\125\127\127\127\114\127\127\127\124\122\127\127\127\15\30\22\13\12\124\117\127\127\127\56\26\11\47\19\30\6\26\13\12\124\123\127\127\127\49\30\18\26\124\118\127\127\127\60\23\30\13\30\28\11\26\13\124\122\127\127\127\20\17\22\25\26\124\113\127\127\127\57\22\17\27\57\22\13\12\11\60\23\22\19\27\124\122\127\127\127\52\17\22\25\26\124\121\127\127\127\20\17\22\25\26\77\124\119\127\127\127\61\30\28\20\15\30\28\20\124\124\127\127\127\24\10\17\124\124\127\127\127\56\10\17\124\123\127\127\127\24\10\17\77\124\122\127\127\127\15\13\22\17\11\127\70\127\127\127\115\127\127\127\115\127\127\127\115\127\127\127\115\127\127\127\115\127\127\127\115\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\114\127\127\127\113\127\127\127\113\127\127\127\113\127\127\127\113\127\127\127\113\127\127\127\112\127\127\127\112\127\127\127\112\127\127\127\112\127\127\127\112\127\127\127\111\127\127\127\111\127\127\127\111\127\127\127\111\127\127\127\111\127\127\127\111\127\127\127\110\127\127\127\110\127\127\127\108\127\127\127\108\127\127\127\108\127\127\127\108\127\127\127\108\127\127\127\107\127\127\127\107\127\127\127\107\127\127\127\107\127\127\127\107\127\127\127\106\127\127\127\106\127\127\127\106\127\127\127\106\127\127\127\106\127\127\127\106\127\127\127\105\127\127\127\105\127\127\127\115\127\127\127\103\127\127\127\101\127\127\127\101\127\127\127\101\127\127\127\101\127\127\127\100\127\127\127\127\127\127\127\70\127\127\127\109\13\127\127\127\126\127\127\127\127\127\127\126\127\127\127\127\127\95\127\127\126\127\126\127\125\127\127\127\127\126\127\125\127\127\127\127\127\127\127\127\127\127\125\127\123\127\127\127\127\77\127\126\127\95\103\127\122\127\123\127\124\127\127\18\127\121\127\126\127\127\127\95\103\127\121\127\121\127\124\127\121\41\127\122\127\77\127\126\127\121\127\123\50\127\127\127\77\127\126\127\95\103\127\122\127\123\127\123\127\121\58\127\122\127\77\127\126\127\127\127\123\50\127\127\127\77\127\126\127\95\103\127\122\127\123\127\123\127\95\62\127\122\127\122\127\121\127\109\127\127\120\127\120\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\122\127\127\127\95\127\127\122\127\123\127\118\127\95\127\127\122\127\122\127\121\127\109\127\127\120\127\120\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\119\127\127\127\109\127\127\122\127\122\127\127\127\121\127\127\122\127\97\127\126\127\126\127\123\50\127\127\127\97\127\126\127\109\71\127\122\127\119\127\127\127\121\58\127\122\127\95\127\126\127\127\127\123\50\127\127\127\95\127\126\127\95\103\127\122\127\123\127\124\127\127\99\127\122\127\125\127\127\127\95\103\127\122\127\123\127\123\127\95\62\127\122\127\122\127\121\127\109\127\127\120\127\116\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\117\127\127\127\95\127\127\122\127\123\127\118\127\95\127\127\122\127\122\127\121\127\109\127\127\120\127\116\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\115\127\127\127\109\127\127\122\127\117\127\127\127\121\127\127\122\127\79\127\126\127\126\127\123\50\127\127\127\79\127\126\127\109\71\127\122\127\115\127\127\127\121\58\127\122\127\77\127\126\127\127\127\123\50\127\127\127\77\127\126\127\95\103\127\122\127\123\127\124\127\127\99\127\122\127\124\127\127\127\121\125\127\127\127\121\127\126\127\125\127\123\50\127\127\127\121\127\126\127\109\71\127\127\127\114\127\127\127\127\18\127\126\127\125\127\127\127\127\18\127\125\127\124\127\127\127\127\22\127\127\127\125\127\126\127\127\39\127\127\127\126\127\127\127\85\127\127\127\124\122\127\127\127\15\30\22\13\12\124\117\127\127\127\56\26\11\47\19\30\6\26\13\12\124\118\127\127\127\60\23\30\13\30\28\11\26\13\124\123\127\127\127\49\30\18\26\124\123\127\127\127\23\26\30\27\124\113\127\127\127\57\22\17\27\57\22\13\12\11\60\23\22\19\27\124\123\127\127\127\55\26\30\27\124\120\127\127\127\28\23\30\18\12\42\54\124\122\127\127\127\60\23\30\18\12\124\117\127\127\127\28\23\30\18\12\60\16\19\16\13\124\122\127\127\127\57\13\30\18\26\124\111\127\127\127\61\30\28\20\24\13\16\10\17\27\60\16\19\16\13\76\124\116\127\127\127\56\26\11\44\15\26\28\22\30\19\12\124\123\127\127\127\8\30\22\11\124\116\127\127\127\56\26\11\60\23\22\19\27\13\26\17\124\121\127\127\127\22\15\30\22\13\12\124\120\127\127\127\59\26\12\11\13\16\6\124\122\127\127\127\25\30\28\26\12\124\122\127\127\127\57\13\16\17\11\124\123\127\127\127\61\30\28\20\124\121\127\127\127\61\16\11\11\16\18\124\123\127\127\127\51\26\25\11\124\122\127\127\127\45\22\24\23\11\124\124\127\127\127\43\16\15\125\127\127\127\127\127\127\127\127\125\127\127\127\127\127\127\107\63\125\127\127\127\127\127\127\143\64\124\120\127\127\127\12\10\13\25\30\28\26\124\119\127\127\127\54\17\12\11\30\17\28\26\124\124\127\127\127\17\26\8\124\117\127\127\127\44\10\13\25\30\28\26\56\10\22\124\123\127\127\127\57\30\28\26\124\123\127\127\127\58\17\10\18\124\119\127\127\127\49\16\13\18\30\19\54\27\124\116\127\127\127\62\19\8\30\6\12\48\17\43\16\15\126\126\124\122\127\127\127\25\13\30\18\26\124\123\127\127\127\44\22\5\26\124\122\127\127\127\42\59\22\18\77\124\112\127\127\127\61\16\13\27\26\13\44\22\5\26\47\22\7\26\19\124\105\127\127\127\61\30\28\20\24\13\16\10\17\27\43\13\30\17\12\15\30\13\26\17\28\6\124\113\127\127\127\18\10\13\27\26\13\26\13\60\16\19\16\13\13\127\81\124\127\127\96\127\127\127\96\127\127\127\96\127\127\127\96\127\127\127\96\127\127\127\96\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\94\127\127\127\92\127\127\127\92\127\127\127\92\127\127\127\92\127\127\127\92\127\127\127\91\127\127\127\91\127\127\127\91\127\127\127\90\127\127\127\90\127\127\127\90\127\127\127\90\127\127\127\90\127\127\127\90\127\127\127\89\127\127\127\89\127\127\127\89\127\127\127\88\127\127\127\88\127\127\127\88\127\127\127\88\127\127\127\87\127\127\127\87\127\127\127\84\127\127\127\84\127\127\127\84\127\127\127\84\127\127\127\82\127\127\127\82\127\127\127\82\127\127\127\82\127\127\127\80\127\127\127\80\127\127\127\80\127\127\127\77\127\127\127\77\127\127\127\77\127\127\127\77\127\127\127\75\127\127\127\75\127\127\127\75\127\127\127\74\127\127\127\74\127\127\127\74\127\127\127\74\127\127\127\72\127\127\127\72\127\127\127\71\127\127\127\71\127\127\127\71\127\127\127\71\127\127\127\70\127\127\127\70\127\127\127\70\127\127\127\69\127\127\127\69\127\127\127\71\127\127\127\68\127\127\127\74\127\127\127\67\127\127\127\64\127\127\127\64\127\127\127\64\127\127\127\63\127\127\127\63\127\127\127\63\127\127\127\63\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\62\127\127\127\60\127\127\127\60\127\127\127\60\127\127\127\60\127\127\127\59\127\127\127\59\127\127\127\59\127\127\127\59\127\127\127\59\127\127\127\59\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\58\127\127\127\57\127\127\127\57\127\127\127\56\127\127\127\56\127\127\127\54\127\127\127\54\127\127\127\54\127\127\127\54\127\127\127\54\127\127\127\54\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\53\127\127\127\52\127\127\127\52\127\127\127\51\127\127\127\51\127\127\127\50\127\127\127\50\127\127\127\50\127\127\127\60\127\127\127\63\127\127\127\49\127\127\127\48\127\127\127\44\127\127\127\44\127\127\127\44\127\127\127\43\127\127\127\43\127\127\127\43\127\127\127\43\127\127\127\41\127\127\127\41\127\127\127\40\127\127\127\40\127\127\127\40\127\127\127\40\127\127\127\39\127\127\127\39\127\127\127\39\127\127\127\38\127\127\127\38\127\127\127\40\127\127\127\37\127\127\127\43\127\127\127\36\127\127\127\33\127\127\127\33\127\127\127\33\127\127\127\32\127\127\127\32\127\127\127\32\127\127\127\32\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\31\127\127\127\29\127\127\127\29\127\127\127\29\127\127\127\29\127\127\127\28\127\127\127\28\127\127\127\28\127\127\127\28\127\127\127\28\127\127\127\28\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\27\127\127\127\26\127\127\127\26\127\127\127\25\127\127\127\25\127\127\127\23\127\127\127\23\127\127\127\23\127\127\127\23\127\127\127\23\127\127\127\23\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\22\127\127\127\21\127\127\127\21\127\127\127\20\127\127\127\20\127\127\127\19\127\127\127\19\127\127\127\19\127\127\127\29\127\127\127\32\127\127\127\18\127\127\127\11\127\127\127\11\127\127\127\11\127\127\127\11\127\127\127\9\127\127\127\9\127\127\127\9\127\127\127\9\127\127\127\7\127\127\127\7\127\127\127\7\127\127\127\4\127\127\127\4\127\127\127\4\127\127\127\4\127\127\127\2\127\127\127\2\127\127\127\2\127\127\127\1\127\127\127\1\127\127\127\1\127\127\127\1\127\127\127\255\127\127\127\255\127\127\127\254\127\127\127\254\127\127\127\254\127\127\127\254\127\127\127\253\127\127\127\253\127\127\127\253\127\127\127\252\127\127\127\252\127\127\127\254\127\127\127\251\127\127\127\1\127\127\127\250\127\127\127\247\127\127\127\247\127\127\127\247\127\127\127\246\127\127\127\246\127\127\127\246\127\127\127\246\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\245\127\127\127\243\127\127\127\243\127\127\127\243\127\127\127\243\127\127\127\242\127\127\127\242\127\127\127\242\127\127\127\242\127\127\127\242\127\127\127\242\127\127\127\241\127\127\127\241\127\127\127\240\127\127\127\240\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\239\127\127\127\237\127\127\127\237\127\127\127\237\127\127\127\237\127\127\127\237\127\127\127\237\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\236\127\127\127\235\127\127\127\235\127\127\127\234\127\127\127\234\127\127\127\233\127\127\127\233\127\127\127\233\127\127\127\243\127\127\127\246\127\127\127\232\127\127\127\231\127\127\127\227\127\127\127\227\127\127\127\227\127\127\127\226\127\127\127\226\127\127\127\226\127\127\127\226\127\127\127\224\127\127\127\224\127\127\127\223\127\127\127\223\127\127\127\223\127\127\127\223\127\127\127\222\127\127\127\222\127\127\127\222\127\127\127\221\127\127\127\221\127\127\127\223\127\127\127\220\127\127\127\226\127\127\127\219\127\127\127\216\127\127\127\216\127\127\127\216\127\127\127\215\127\127\127\215\127\127\127\215\127\127\127\215\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\214\127\127\127\212\127\127\127\212\127\127\127\212\127\127\127\212\127\127\127\211\127\127\127\211\127\127\127\211\127\127\127\211\127\127\127\211\127\127\127\211\127\127\127\210\127\127\127\210\127\127\127\209\127\127\127\209\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\208\127\127\127\206\127\127\127\206\127\127\127\206\127\127\127\206\127\127\127\206\127\127\127\206\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\205\127\127\127\204\127\127\127\204\127\127\127\203\127\127\127\203\127\127\127\202\127\127\127\202\127\127\127\202\127\127\127\212\127\127\127\215\127\127\127\201\127\127\127\194\127\127\127\194\127\127\127\194\127\127\127\194\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\192\127\127\127\190\127\127\127\190\127\127\127\190\127\127\127\187\127\127\127\187\127\127\127\187\127\127\127\187\127\127\127\185\127\127\127\185\127\127\127\185\127\127\127\184\127\127\127\184\127\127\127\184\127\127\127\184\127\127\127\182\127\127\127\182\127\127\127\181\127\127\127\181\127\127\127\181\127\127\127\181\127\127\127\180\127\127\127\180\127\127\127\180\127\127\127\179\127\127\127\179\127\127\127\181\127\127\127\178\127\127\127\184\127\127\127\177\127\127\127\174\127\127\127\174\127\127\127\174\127\127\127\173\127\127\127\173\127\127\127\173\127\127\127\173\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\172\127\127\127\170\127\127\127\170\127\127\127\170\127\127\127\170\127\127\127\169\127\127\127\169\127\127\127\169\127\127\127\169\127\127\127\169\127\127\127\169\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\168\127\127\127\167\127\127\127\167\127\127\127\166\127\127\127\166\127\127\127\165\127\127\127\165\127\127\127\165\127\127\127\165\127\127\127\165\127\127\127\165\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\164\127\127\127\163\127\127\127\163\127\127\127\162\127\127\127\162\127\127\127\161\127\127\127\161\127\127\127\161\127\127\127\170\127\127\127\173\127\127\127\160\127\127\127\159\127\127\127\158\127\127\127\158\127\127\127\158\127\127\127\158\127\127\127\155\127\127\127\155\127\127\127\155\127\127\127\154\127\127\127\154\127\127\127\154\127\127\127\154\127\127\127\152\127\127\127\152\127\127\127\151\127\127\127\151\127\127\127\151\127\127\127\151\127\127\127\150\127\127\127\150\127\127\127\150\127\127\127\149\127\127\127\149\127\127\127\151\127\127\127\148\127\127\127\154\127\127\127\147\127\127\127\144\127\127\127\144\127\127\127\144\127\127\127\143\127\127\127\143\127\127\127\143\127\127\127\143\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\142\127\127\127\140\127\127\127\140\127\127\127\140\127\127\127\140\127\127\127\139\127\127\127\139\127\127\127\139\127\127\127\139\127\127\127\139\127\127\127\139\127\127\127\138\127\127\127\138\127\127\127\137\127\127\127\137\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\136\127\127\127\134\127\127\127\134\127\127\127\134\127\127\127\134\127\127\127\134\127\127\127\134\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\133\127\127\127\132\127\127\127\132\127\127\127\131\127\127\127\131\127\127\127\130\127\127\127\130\127\127\127\130\127\127\127\140\127\127\127\143\127\127\127\129\127\127\127\125\126\127\127\121\126\127\127\121\126\127\127\120\126\127\127\120\126\127\127\120\126\127\127\120\126\127\127\118\126\127\127\118\126\127\127\118\126\127\127\117\126\127\127\117\126\127\127\117\126\127\127\117\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\116\126\127\127\114\126\127\127\114\126\127\127\114\126\127\127\114\126\127\127\113\126\127\127\113\126\127\127\113\126\127\127\113\126\127\127\113\126\127\127\113\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\112\126\127\127\111\126\127\127\111\126\127\127\110\126\127\127\110\126\127\127\108\126\127\127\108\126\127\127\108\126\127\127\108\126\127\127\108\126\127\127\108\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\107\126\127\127\106\126\127\127\106\126\127\127\105\126\127\127\105\126\127\127\104\126\127\127\104\126\127\127\104\126\127\127\114\126\127\127\117\126\127\127\103\126\127\127\100\126\127\127\100\126\127\127\100\126\127\127\100\126\127\127\98\126\127\127\98\126\127\127\98\126\127\127\97\126\127\127\97\126\127\127\97\126\127\127\97\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\96\126\127\127\94\126\127\127\94\126\127\127\94\126\127\127\94\126\127\127\93\126\127\127\93\126\127\127\93\126\127\127\93\126\127\127\93\126\127\127\93\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\92\126\127\127\91\126\127\127\91\126\127\127\90\126\127\127\90\126\127\127\88\126\127\127\88\126\127\127\88\126\127\127\88\126\127\127\88\126\127\127\88\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\87\126\127\127\86\126\127\127\86\126\127\127\85\126\127\127\85\126\127\127\84\126\127\127\84\126\127\127\84\126\127\127\94\126\127\127\97\126\127\127\83\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\80\126\127\127\78\126\127\127\78\126\127\127\78\126\127\127\77\126\127\127\77\126\127\127\77\126\127\127\77\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\76\126\127\127\74\126\127\127\74\126\127\127\74\126\127\127\74\126\127\127\73\126\127\127\73\126\127\127\73\126\127\127\73\126\127\127\73\126\127\127\73\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\72\126\127\127\71\126\127\127\71\126\127\127\70\126\127\127\70\126\127\127\69\126\127\127\69\126\127\127\69\126\127\127\69\126\127\127\69\126\127\127\69\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\68\126\127\127\67\126\127\127\67\126\127\127\66\126\127\127\66\126\127\127\65\126\127\127\65\126\127\127\65\126\127\127\74\126\127\127\77\126\127\127\64\126\127\127\96\127\127\127\59\126\127\127\57\126\127\127\127\127\127\127\81\124\127\127\109\13\127\127\127\126\127\127\127\127\127\127\126\127\127\127\127\127\95\127\127\126\127\126\127\125\127\127\127\127\126\127\125\127\127\127\127\127\127\127\127\127\127\125\127\123\127\127\127\127\84\124\126\127\95\103\127\122\127\123\127\124\127\121\58\127\122\127\84\124\126\127\127\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\126\127\127\127\95\103\127\121\127\121\127\123\127\121\41\127\122\127\84\124\126\127\121\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\124\127\95\12\127\122\127\122\127\121\127\109\127\127\120\127\120\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\122\127\127\127\109\127\127\122\127\122\127\127\127\121\127\127\122\127\84\124\126\127\127\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\124\127\95\40\127\122\127\122\127\120\127\95\127\127\122\127\122\127\121\127\109\127\127\120\127\118\127\127\127\127\127\127\122\127\120\127\125\127\109\127\127\122\127\119\127\127\127\109\127\127\122\127\119\127\127\127\121\127\127\122\127\35\125\126\127\127\127\123\50\127\127\127\35\125\126\127\109\71\127\122\127\119\127\127\127\95\31\127\122\127\122\127\116\127\95\127\127\122\127\122\127\115\127\109\127\127\122\127\117\127\127\127\109\127\127\122\127\114\127\127\127\127\127\127\122\127\126\127\126\127\109\127\127\122\127\117\127\127\127\127\127\127\121\127\125\127\127\127\121\127\127\122\127\160\127\126\127\121\127\123\50\127\127\127\160\127\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\74\127\122\127\79\127\126\127\121\127\123\50\127\127\127\79\127\126\127\109\71\127\122\127\113\127\127\127\127\108\127\122\127\126\127\126\127\123\50\127\127\127\160\127\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\74\127\122\127\245\127\126\127\121\127\123\50\127\127\127\245\127\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\55\127\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\57\127\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\57\127\126\127\118\127\123\50\127\127\127\57\127\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\62\127\126\127\125\127\123\50\127\127\127\62\127\126\127\121\125\127\121\127\68\127\126\127\125\127\123\50\127\127\127\68\127\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\248\127\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\248\127\126\127\109\71\127\111\127\98\127\127\127\95\121\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\85\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\33\127\126\127\121\125\127\120\127\46\127\126\127\125\127\123\50\127\127\127\46\127\126\127\123\50\127\127\127\160\127\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\225\127\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\227\127\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\227\127\126\127\118\127\123\50\127\127\127\227\127\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\232\127\126\127\125\127\123\50\127\127\127\232\127\126\127\121\125\127\121\127\238\127\126\127\125\127\123\50\127\127\127\238\127\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\162\127\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\162\127\126\127\109\71\127\111\127\98\127\127\127\95\21\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\127\127\127\110\127\122\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\203\127\126\127\121\125\127\120\127\216\127\126\127\125\127\123\50\127\127\127\216\127\126\127\109\71\127\122\127\117\127\127\127\127\18\127\121\127\121\127\127\127\121\74\127\122\127\230\126\126\127\121\127\123\50\127\127\127\230\126\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\74\127\122\127\149\127\126\127\121\127\123\50\127\127\127\149\127\126\127\109\71\127\122\127\113\127\127\127\127\108\127\122\127\126\127\126\127\123\50\127\127\127\230\126\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\74\127\122\127\59\126\126\127\121\127\123\50\127\127\127\59\126\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\125\126\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\127\126\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\127\126\126\127\118\127\123\50\127\127\127\127\126\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\132\127\126\127\125\127\123\50\127\127\127\132\127\126\127\121\125\127\121\127\138\127\126\127\125\127\123\50\127\127\127\138\127\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\62\126\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\62\126\126\127\109\71\127\111\127\98\127\127\127\95\86\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\127\127\127\110\127\125\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\103\126\126\127\121\125\127\120\127\116\126\126\127\125\127\123\50\127\127\127\116\126\126\127\123\50\127\127\127\230\126\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\39\126\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\41\126\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\41\126\126\127\118\127\123\50\127\127\127\41\126\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\46\126\126\127\125\127\123\50\127\127\127\46\126\126\127\121\125\127\121\127\52\126\126\127\125\127\123\50\127\127\127\52\126\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\232\126\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\232\126\126\127\109\71\127\111\127\98\127\127\127\95\86\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\127\127\127\110\127\122\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\17\126\126\127\121\125\127\120\127\30\126\126\127\125\127\123\50\127\127\127\30\126\126\127\109\71\127\122\127\117\127\127\127\127\18\127\121\127\122\127\127\127\121\74\127\122\127\84\124\126\127\121\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\41\127\122\127\215\126\126\127\121\127\123\50\127\127\127\215\126\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\41\127\122\127\215\126\126\127\121\127\123\50\127\127\127\215\126\126\127\109\71\127\122\127\113\127\127\127\127\108\127\122\127\126\127\126\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\74\127\122\127\125\125\126\127\121\127\123\50\127\127\127\125\125\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\191\126\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\193\126\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\193\126\126\127\118\127\123\50\127\127\127\193\126\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\198\126\126\127\125\127\123\50\127\127\127\198\126\126\127\121\125\127\121\127\204\126\126\127\125\127\123\50\127\127\127\204\126\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\128\126\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\128\126\126\127\109\71\127\111\127\98\127\127\127\95\21\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\127\127\127\110\127\125\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\169\126\126\127\121\125\127\120\127\182\126\126\127\125\127\123\50\127\127\127\182\126\126\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\74\127\122\127\84\124\126\127\121\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\101\125\126\127\95\92\127\116\127\117\127\112\127\127\97\127\116\127\125\127\125\127\109\127\127\115\127\111\127\127\127\127\127\127\114\127\116\127\127\127\127\127\127\115\127\125\127\113\127\123\127\127\127\127\103\125\126\127\95\103\127\110\127\111\127\123\127\89\72\127\110\127\103\125\126\127\118\127\123\50\127\127\127\103\125\126\127\95\92\127\110\127\111\127\110\127\127\24\127\110\127\125\127\126\127\121\125\127\115\127\108\125\126\127\125\127\123\50\127\127\127\108\125\126\127\121\125\127\121\127\114\125\126\127\125\127\123\50\127\127\127\114\125\126\127\95\103\127\121\127\123\127\124\127\95\93\127\121\127\121\127\112\127\127\127\127\121\127\125\127\125\127\109\127\127\120\127\111\127\127\127\127\127\127\119\127\121\127\127\127\127\127\127\120\127\125\127\118\127\123\127\127\127\127\38\125\126\127\127\68\127\115\127\121\127\127\127\109\33\127\114\127\108\127\127\127\109\127\127\113\127\107\127\127\127\109\127\127\112\127\106\127\127\127\109\127\127\111\127\105\127\127\127\109\127\127\110\127\104\127\127\127\109\127\127\109\127\103\127\127\127\127\127\127\115\127\109\127\126\127\109\76\127\115\127\109\127\127\127\109\42\127\115\127\102\127\127\127\109\42\127\114\127\101\127\127\127\109\42\127\113\127\100\127\127\127\123\89\127\115\127\38\125\126\127\109\71\127\111\127\98\127\127\127\95\86\127\111\127\111\127\97\127\109\127\127\110\127\96\127\127\127\127\127\127\109\127\116\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\99\127\127\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\123\127\118\127\109\127\127\111\127\99\127\127\127\79\127\127\111\127\92\127\91\127\109\127\127\111\127\99\127\127\127\109\127\127\110\127\94\127\127\127\95\127\127\110\127\110\127\93\127\109\127\127\109\127\109\127\127\127\95\127\127\108\127\112\127\100\127\127\127\127\109\127\109\127\108\127\127\127\127\110\127\110\127\109\127\111\127\127\111\127\95\127\110\127\109\127\127\111\127\98\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\116\127\127\127\109\127\127\109\127\99\127\127\127\127\127\127\111\127\109\127\125\127\109\127\127\111\127\90\127\127\127\109\127\127\111\127\90\127\127\127\109\127\127\110\127\88\127\127\127\95\127\127\110\127\110\127\97\127\109\127\127\109\127\100\127\127\127\109\127\127\108\127\102\127\127\127\109\127\127\107\127\100\127\127\127\109\127\127\106\127\102\127\127\127\127\127\127\110\127\106\127\125\127\111\127\127\111\127\89\127\110\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\87\127\102\127\109\127\127\111\127\90\127\127\127\79\127\127\111\127\86\127\102\127\109\127\127\111\127\90\127\127\127\127\127\127\110\127\121\127\127\127\111\127\127\111\127\115\127\110\127\123\80\127\115\127\79\125\126\127\121\125\127\120\127\92\125\126\127\125\127\123\50\127\127\127\92\125\126\127\123\50\127\127\127\84\124\126\127\109\71\127\122\127\114\127\127\127\127\108\127\122\127\126\127\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\74\127\122\127\222\125\126\127\121\127\123\50\127\127\127\222\125\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\224\125\126\127\127\68\127\116\127\121\127\127\127\109\33\127\115\127\108\127\127\127\109\127\127\114\127\107\127\127\127\109\127\127\113\127\106\127\127\127\109\127\127\112\127\105\127\127\127\109\127\127\111\127\104\127\127\127\109\127\127\110\127\103\127\127\127\127\127\127\116\127\110\127\126\127\109\76\127\116\127\109\127\127\127\109\42\127\116\127\102\127\127\127\109\42\127\115\127\101\127\127\127\109\42\127\114\127\100\127\127\127\123\89\127\116\127\224\125\126\127\109\71\127\112\127\98\127\127\127\95\21\127\112\127\112\127\97\127\109\127\127\111\127\96\127\127\127\127\127\127\110\127\117\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\99\127\127\127\109\127\127\112\127\99\127\127\127\109\127\127\111\127\94\127\127\127\95\127\127\111\127\111\127\93\127\109\127\127\110\127\109\127\127\127\95\127\127\109\127\113\127\100\127\127\127\127\110\127\110\127\109\127\127\127\127\111\127\111\127\110\127\111\127\127\112\127\95\127\111\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\123\127\118\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\92\127\91\127\109\127\127\112\127\98\127\127\127\95\127\127\112\127\112\127\97\127\109\127\127\111\127\116\127\127\127\109\127\127\110\127\99\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\90\127\127\127\109\127\127\112\127\90\127\127\127\109\127\127\111\127\88\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\100\127\127\127\109\127\127\109\127\102\127\127\127\109\127\127\108\127\100\127\127\127\109\127\127\107\127\102\127\127\127\127\127\127\111\127\107\127\125\127\111\127\127\112\127\89\127\111\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\87\127\102\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\86\127\102\127\109\127\127\112\127\90\127\127\127\127\127\127\111\127\121\127\127\127\111\127\127\112\127\115\127\111\127\123\80\127\116\127\9\125\126\127\121\125\127\121\127\22\125\126\127\125\127\123\50\127\127\127\22\125\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\74\127\122\127\155\125\126\127\121\127\123\50\127\127\127\155\125\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\157\125\126\127\127\68\127\116\127\121\127\127\127\109\33\127\115\127\108\127\127\127\109\127\127\114\127\107\127\127\127\109\127\127\113\127\106\127\127\127\109\127\127\112\127\105\127\127\127\109\127\127\111\127\104\127\127\127\109\127\127\110\127\103\127\127\127\127\127\127\116\127\110\127\126\127\109\76\127\116\127\109\127\127\127\109\42\127\116\127\102\127\127\127\109\42\127\115\127\101\127\127\127\109\42\127\114\127\100\127\127\127\123\89\127\116\127\157\125\126\127\109\71\127\112\127\98\127\127\127\95\21\127\112\127\112\127\97\127\109\127\127\111\127\96\127\127\127\127\127\127\110\127\117\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\99\127\127\127\109\127\127\112\127\99\127\127\127\109\127\127\111\127\94\127\127\127\95\127\127\111\127\111\127\93\127\109\127\127\110\127\109\127\127\127\95\127\127\109\127\113\127\100\127\127\127\127\110\127\110\127\109\127\127\127\127\111\127\111\127\110\127\111\127\127\112\127\95\127\111\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\123\127\118\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\92\127\91\127\109\127\127\112\127\98\127\127\127\95\127\127\112\127\112\127\97\127\109\127\127\111\127\116\127\127\127\109\127\127\110\127\99\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\90\127\127\127\109\127\127\112\127\90\127\127\127\109\127\127\111\127\88\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\100\127\127\127\109\127\127\109\127\102\127\127\127\109\127\127\108\127\100\127\127\127\109\127\127\107\127\102\127\127\127\127\127\127\111\127\107\127\125\127\111\127\127\112\127\89\127\111\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\87\127\102\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\86\127\102\127\109\127\127\112\127\90\127\127\127\127\127\127\111\127\125\127\127\127\111\127\127\112\127\115\127\111\127\123\80\127\116\127\198\125\126\127\121\125\127\121\127\211\125\126\127\125\127\123\50\127\127\127\211\125\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\123\127\127\127\121\41\127\122\127\84\124\126\127\121\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\123\127\127\18\127\121\127\124\127\127\127\121\41\127\122\127\84\124\126\127\121\127\123\50\127\127\127\84\124\126\127\95\103\127\122\127\123\127\124\127\95\93\127\122\127\122\127\112\127\127\127\127\122\127\125\127\125\127\109\127\127\121\127\111\127\127\127\127\127\127\120\127\122\127\127\127\127\127\127\121\127\125\127\119\127\123\127\127\127\127\86\124\126\127\127\68\127\116\127\121\127\127\127\109\33\127\115\127\108\127\127\127\109\127\127\114\127\107\127\127\127\109\127\127\113\127\106\127\127\127\109\127\127\112\127\105\127\127\127\109\127\127\111\127\104\127\127\127\109\127\127\110\127\103\127\127\127\127\127\127\116\127\110\127\126\127\109\76\127\116\127\109\127\127\127\109\42\127\116\127\102\127\127\127\109\42\127\115\127\101\127\127\127\109\42\127\114\127\100\127\127\127\123\89\127\116\127\86\124\126\127\109\71\127\112\127\98\127\127\127\95\21\127\112\127\112\127\97\127\109\127\127\111\127\96\127\127\127\127\127\127\110\127\117\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\99\127\127\127\109\127\127\112\127\99\127\127\127\109\127\127\111\127\94\127\127\127\95\127\127\111\127\111\127\93\127\109\127\127\110\127\109\127\127\127\95\127\127\109\127\113\127\100\127\127\127\127\110\127\110\127\109\127\127\127\127\111\127\111\127\110\127\111\127\127\112\127\95\127\111\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\123\127\118\127\109\127\127\112\127\99\127\127\127\79\127\127\112\127\92\127\91\127\109\127\127\112\127\98\127\127\127\95\127\127\112\127\112\127\97\127\109\127\127\111\127\116\127\127\127\109\127\127\110\127\99\127\127\127\127\127\127\112\127\110\127\125\127\109\127\127\112\127\90\127\127\127\109\127\127\112\127\90\127\127\127\109\127\127\111\127\88\127\127\127\95\127\127\111\127\111\127\97\127\109\127\127\110\127\100\127\127\127\109\127\127\109\127\102\127\127\127\109\127\127\108\127\100\127\127\127\109\127\127\107\127\102\127\127\127\127\127\127\111\127\107\127\125\127\111\127\127\112\127\89\127\111\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\87\127\102\127\109\127\127\112\127\90\127\127\127\79\127\127\112\127\86\127\102\127\109\127\127\112\127\90\127\127\127\127\127\127\111\127\122\127\127\127\111\127\127\112\127\115\127\111\127\123\80\127\116\127\127\124\126\127\121\125\127\121\127\140\125\126\127\125\127\123\50\127\127\127\140\125\126\127\121\125\127\127\127\121\127\126\127\125\127\123\50\127\127\127\121\127\126\127\127\39\127\127\127\126\127\127\127\9\127\127\127\109\32\127\127\127\126\127\127\127\95\127\127\127\127\127\127\125\127\109\127\127\125\127\124\127\127\127\127\127\127\127\127\125\127\125\127\109\127\127\126\127\126\127\127\127\95\127\127\126\127\126\127\124\127\95\127\127\126\127\126\127\123\127\127\127\127\125\127\124\127\127\127\109\127\127\123\127\122\127\127\127\95\127\127\123\127\123\127\121\127\109\42\127\122\127\120\127\127\127\109\77\127\121\127\119\127\127\127\109\127\127\120\127\119\127\127\127\127\127\127\123\127\120\127\125\127\109\127\127\122\127\122\127\127\127\95\127\127\122\127\122\127\121\127\109\127\127\121\127\119\127\127\127\109\127\127\120\127\120\127\127\127\109\127\127\119\127\120\127\127\127\127\127\127\122\127\119\127\125\127\109\127\127\121\127\122\127\127\127\95\103\127\121\127\121\127\121\127\109\42\127\120\127\119\127\127\127\109\42\127\119\127\120\127\127\127\109\42\127\118\127\119\127\127\127\127\117\127\121\127\118\127\125\127\121\47\127\120\127\127\127\126\127\123\127\127\81\127\127\127\127\127\127\127\127\81\127\127\127\126\127\127\127\127\81\127\127\127\125\127\127\127\127\81\127\127\127\124\127\127\127\109\76\127\120\127\118\127\127\127\109\71\127\120\127\118\127\127\127\127\108\127\120\127\126\127\126\127\121\47\127\120\127\126\127\126\127\120\127\127\81\127\127\127\127\127\127\127\127\81\127\127\127\126\127\127\127\127\81\127\127\127\122\127\127\127\127\81\127\127\127\124\127\127\127\127\81\127\127\127\125\127\127\127\127\81\127\127\127\121\127\127\127\127\81\127\127\127\123\127\127\127\109\76\127\120\127\117\127\127\127\109\71\127\120\127\117\127\127\127\127\108\127\120\127\126\127\126\127\109\71\127\120\127\116\127\127\127\109\42\127\119\127\115\127\127\127\127\61\127\120\127\125\127\125\127\121\58\127\120\127\10\127\126\127\127\127\123\50\127\127\127\10\127\126\127\109\71\127\120\127\117\127\127\127\127\109\127\120\127\126\127\126\127\109\127\127\120\127\114\127\127\127\95\127\127\119\127\127\127\113\127\127\127\127\119\127\118\127\127\127\127\127\127\120\127\127\127\118\127\123\127\127\127\127\13\127\126\127\95\103\127\115\127\116\127\112\127\95\103\127\114\127\126\127\112\127\121\41\127\115\127\13\127\126\127\114\127\123\50\127\127\127\13\127\126\127\95\103\127\115\127\116\127\111\127\121\58\127\115\127\13\127\126\127\127\127\123\50\127\127\127\13\127\126\127\95\103\127\115\127\116\127\111\127\95\62\127\115\127\115\127\109\127\109\127\127\113\127\108\127\127\127\127\127\127\115\127\113\127\125\127\109\127\127\115\127\110\127\127\127\95\127\127\115\127\116\127\106\127\95\127\127\115\127\115\127\109\127\109\127\127\113\127\108\127\127\127\127\127\127\115\127\113\127\125\127\109\127\127\115\127\107\127\127\127\109\127\127\115\127\110\127\127\127\121\127\127\115\127\47\127\126\127\126\127\123\50\127\127\127\47\127\126\127\109\71\127\115\127\107\127\127\127\121\58\127\115\127\38\127\126\127\127\127\123\50\127\127\127\38\127\126\127\95\103\127\115\127\116\127\112\127\121\41\127\115\127\38\127\126\127\125\127\123\50\127\127\127\38\127\126\127\109\71\127\115\127\118\127\127\127\127\60\127\115\127\126\127\126\127\109\127\127\115\127\116\127\127\127\127\127\127\115\127\126\127\126\127\109\127\127\115\127\117\127\127\127\127\127\127\115\127\126\127\126\127\95\103\127\115\127\116\127\111\127\95\62\127\115\127\115\127\109\127\109\127\127\113\127\104\127\127\127\127\127\127\115\127\113\127\125\127\109\127\127\115\127\105\127\127\127\95\127\127\115\127\116\127\106\127\95\127\127\115\127\115\127\109\127\109\127\127\113\127\104\127\127\127\127\127\127\115\127\113\127\125\127\109\127\127\115\127\103\127\127\127\109\127\127\115\127\105\127\127\127\121\127\127\115\127\22\127\126\127\126\127\123\50\127\127\127\22\127\126\127\109\71\127\115\127\103\127\127\127\121\58\127\115\127\13\127\126\127\127\127\123\50\127\127\127\13\127\126\127\95\103\127\115\127\116\127\112\127\121\41\127\115\127\13\127\126\127\124\127\123\50\127\127\127\13\127\126\127\109\71\127\115\127\118\127\127\127\127\60\127\115\127\126\127\126\127\109\127\127\115\127\116\127\127\127\127\127\127\115\127\126\127\126\127\109\127\127\115\127\117\127\127\127\127\127\127\115\127\126\127\126\127\121\125\127\120\127\70\127\126\127\125\127\123\50\127\127\127\70\127\126\127\123\50\127\127\127\82\127\126\127\127\39\127\127\127\126\127\127\127';local ThroitCheats_IllllllIlllIl=(bit or bit32);local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl and ThroitCheats_IllllllIlllIl.bxor or function(ThroitCheats_IllllllIlllIl,ThroitCheats_IlIlIIlllllIIl)local ThroitCheats_IIllllIllII,ThroitCheats_lIllIIllIl,ThroitCheats_lIIlllIIIIllllIlll=1,0,10 while ThroitCheats_IllllllIlllIl>0 and ThroitCheats_IlIlIIlllllIIl>0 do local ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl%2,ThroitCheats_IlIlIIlllllIIl%2 if ThroitCheats_lIlIIlllllIlIlIlIlIII~=ThroitCheats_lIIlllIIIIllllIlll then ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl+ThroitCheats_IIllllIllII end ThroitCheats_IllllllIlllIl,ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IIllllIllII=(ThroitCheats_IllllllIlllIl-ThroitCheats_lIlIIlllllIlIlIlIlIII)/2,(ThroitCheats_IlIlIIlllllIIl-ThroitCheats_lIIlllIIIIllllIlll)/2,ThroitCheats_IIllllIllII*2 end if ThroitCheats_IllllllIlllIl<ThroitCheats_IlIlIIlllllIIl then ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl end while ThroitCheats_IllllllIlllIl>0 do local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl%2 if ThroitCheats_IlIlIIlllllIIl>0 then ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl+ThroitCheats_IIllllIllII end ThroitCheats_IllllllIlllIl,ThroitCheats_IIllllIllII=(ThroitCheats_IllllllIlllIl-ThroitCheats_IlIlIIlllllIIl)/2,ThroitCheats_IIllllIllII*2 end return ThroitCheats_lIllIIllIl end local function ThroitCheats_IIllllIllII(ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl,ThroitCheats_IlIlIIlllllIIl)if ThroitCheats_IlIlIIlllllIIl then local ThroitCheats_IllllllIlllIl=(ThroitCheats_IIllllIllII/2^(ThroitCheats_IllllllIlllIl-1))%2^((ThroitCheats_IlIlIIlllllIIl-1)-(ThroitCheats_IllllllIlllIl-1)+1);return ThroitCheats_IllllllIlllIl-ThroitCheats_IllllllIlllIl%1;else local ThroitCheats_IllllllIlllIl=2^(ThroitCheats_IllllllIlllIl-1);return(ThroitCheats_IIllllIllII%(ThroitCheats_IllllllIlllIl+ThroitCheats_IllllllIlllIl)>=ThroitCheats_IllllllIlllIl)and 1 or 0;end;end;local ThroitCheats_IllllllIlllIl=1;local function ThroitCheats_IlIlIIlllllIIl()local ThroitCheats_IlIlIIlllllIIl,ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_lIIlllIIIIllllIlll,ThroitCheats_IIllllIllII=ThroitCheats_lIlIIlllllIlIlIlIlIII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IllllllIlllIl,ThroitCheats_IllllllIlllIl+3);ThroitCheats_IlIlIIlllllIIl=ThroitCheats_lIllIIllIl(ThroitCheats_IlIlIIlllllIIl,127)ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_lIllIIllIl(ThroitCheats_lIlIIlllllIlIlIlIlIII,127)ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_lIllIIllIl(ThroitCheats_lIIlllIIIIllllIlll,127)ThroitCheats_IIllllIllII=ThroitCheats_lIllIIllIl(ThroitCheats_IIllllIllII,127)ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl+4;return(ThroitCheats_IIllllIllII*16777216)+(ThroitCheats_lIIlllIIIIllllIlll*65536)+(ThroitCheats_lIlIIlllllIlIlIlIlIII*256)+ThroitCheats_IlIlIIlllllIIl;end;local function ThroitCheats_llIIIIlllIl()local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_lIllIIllIl(ThroitCheats_lIlIIlllllIlIlIlIlIII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IllllllIlllIl,ThroitCheats_IllllllIlllIl),127);ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl+1;return ThroitCheats_IlIlIIlllllIIl;end;local function ThroitCheats_lIIlllIIIIllllIlll()local ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IIllllIllII=ThroitCheats_lIlIIlllllIlIlIlIlIII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IllllllIlllIl,ThroitCheats_IllllllIlllIl+2);ThroitCheats_IlIlIIlllllIIl=ThroitCheats_lIllIIllIl(ThroitCheats_IlIlIIlllllIIl,127)ThroitCheats_IIllllIllII=ThroitCheats_lIllIIllIl(ThroitCheats_IIllllIllII,127)ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl+2;return(ThroitCheats_IIllllIllII*256)+ThroitCheats_IlIlIIlllllIIl;end;local function ThroitCheats_lIIlIIlIIIllIIllll()local ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl();local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl();local ThroitCheats_lIIlllIIIIllllIlll=1;local ThroitCheats_lIllIIllIl=(ThroitCheats_IIllllIllII(ThroitCheats_IlIlIIlllllIIl,1,20)*(2^32))+ThroitCheats_IllllllIlllIl;local ThroitCheats_IllllllIlllIl=ThroitCheats_IIllllIllII(ThroitCheats_IlIlIIlllllIIl,21,31);local ThroitCheats_IlIlIIlllllIIl=((-1)^ThroitCheats_IIllllIllII(ThroitCheats_IlIlIIlllllIIl,32));if(ThroitCheats_IllllllIlllIl==0)then if(ThroitCheats_lIllIIllIl==0)then return ThroitCheats_IlIlIIlllllIIl*0;else ThroitCheats_IllllllIlllIl=1;ThroitCheats_lIIlllIIIIllllIlll=0;end;elseif(ThroitCheats_IllllllIlllIl==2047)then return(ThroitCheats_lIllIIllIl==0)and(ThroitCheats_IlIlIIlllllIIl*(1/0))or(ThroitCheats_IlIlIIlllllIIl*(0/0));end;return ThroitCheats_llIllIIlIIIllI(ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IllllllIlllIl-1023)*(ThroitCheats_lIIlllIIIIllllIlll+(ThroitCheats_lIllIIllIl/(2^52)));end;local ThroitCheats_llIllIIlIIIllI=ThroitCheats_IlIlIIlllllIIl;local function ThroitCheats_lIIllIllII(ThroitCheats_IlIlIIlllllIIl)local ThroitCheats_IIllllIllII;if(not ThroitCheats_IlIlIIlllllIIl)then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_llIllIIlIIIllI();if(ThroitCheats_IlIlIIlllllIIl==0)then return'';end;end;ThroitCheats_IIllllIllII=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IllllllIlllIl,ThroitCheats_IllllllIlllIl+ThroitCheats_IlIlIIlllllIIl-1);ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl+ThroitCheats_IlIlIIlllllIIl;local ThroitCheats_IlIlIIlllllIIl={}for ThroitCheats_IllllllIlllIl=1,#ThroitCheats_IIllllIllII do ThroitCheats_IlIlIIlllllIIl[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIlIlllIlIIlIII(ThroitCheats_lIllIIllIl(ThroitCheats_lIlIIlllllIlIlIlIlIII(ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl,ThroitCheats_IllllllIlllIl)),127))end return ThroitCheats_IlIIlIIIIlllIlllllIIll(ThroitCheats_IlIlIIlllllIIl);end;local ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl;local function ThroitCheats_IIIIIlllIIIIl(...)return{...},ThroitCheats_llIIIIIIIIl('#',...)end local function ThroitCheats_llIllIIlIIIllI()local ThroitCheats_IIlIIIIlllIllIlIIlIl={};local ThroitCheats_lIlIIlllllIlIlIlIlIII={};local ThroitCheats_IlIlllllIIIllIIIlllI={};local ThroitCheats_llIlllll={[#{{628;235;322;667};{435;873;610;379};}]=ThroitCheats_lIlIIlllllIlIlIlIlIII,[#{"1 + 1 = 111";{889;154;106;341};"1 + 1 = 111";}]=nil,[#{"1 + 1 = 111";{372;800;607;596};"1 + 1 = 111";"1 + 1 = 111";}]=ThroitCheats_IlIlllllIIIllIIIlllI,[#{{773;34;182;967};}]=ThroitCheats_IIlIIIIlllIllIlIIlIl,};local ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl()local ThroitCheats_lIllIIllIl={}for ThroitCheats_IIllllIllII=1,ThroitCheats_IllllllIlllIl do local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_llIIIIlllIl();local ThroitCheats_IllllllIlllIl;if(ThroitCheats_IlIlIIlllllIIl==1)then ThroitCheats_IllllllIlllIl=(ThroitCheats_llIIIIlllIl()~=0);elseif(ThroitCheats_IlIlIIlllllIIl==2)then ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlIIlIIIllIIllll();elseif(ThroitCheats_IlIlIIlllllIIl==3)then ThroitCheats_IllllllIlllIl=ThroitCheats_lIIllIllII();end;ThroitCheats_lIllIIllIl[ThroitCheats_IIllllIllII]=ThroitCheats_IllllllIlllIl;end;ThroitCheats_llIlllll[3]=ThroitCheats_llIIIIlllIl();for ThroitCheats_IllllllIlllIl=1,ThroitCheats_IlIlIIlllllIIl()do ThroitCheats_IlIlllllIIIllIIIlllI[ThroitCheats_IllllllIlllIl]=ThroitCheats_IlIlIIlllllIIl();end;for ThroitCheats_IllllllIlllIl=1,ThroitCheats_IlIlIIlllllIIl()do ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_IllllllIlllIl-1]=ThroitCheats_llIllIIlIIIllI();end;for ThroitCheats_llIlllll=1,ThroitCheats_IlIlIIlllllIIl()do local ThroitCheats_IllllllIlllIl=ThroitCheats_llIIIIlllIl();if(ThroitCheats_IIllllIllII(ThroitCheats_IllllllIlllIl,1,1)==0)then local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII(ThroitCheats_IllllllIlllIl,2,3);local ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IIllllIllII(ThroitCheats_IllllllIlllIl,4,6);local ThroitCheats_IllllllIlllIl={ThroitCheats_lIIlllIIIIllllIlll(),ThroitCheats_lIIlllIIIIllllIlll(),nil,nil};if(ThroitCheats_lIlIIlllllIlIlIlIlIII==0)then ThroitCheats_IllllllIlllIl[#("elj")]=ThroitCheats_lIIlllIIIIllllIlll();ThroitCheats_IllllllIlllIl[#("SpUG")]=ThroitCheats_lIIlllIIIIllllIlll();elseif(ThroitCheats_lIlIIlllllIlIlIlIlIII==1)then ThroitCheats_IllllllIlllIl[#("ruH")]=ThroitCheats_IlIlIIlllllIIl();elseif(ThroitCheats_lIlIIlllllIlIlIlIlIII==2)then ThroitCheats_IllllllIlllIl[#("Q7Q")]=ThroitCheats_IlIlIIlllllIIl()-(2^16)elseif(ThroitCheats_lIlIIlllllIlIlIlIlIII==3)then ThroitCheats_IllllllIlllIl[#("4q7")]=ThroitCheats_IlIlIIlllllIIl()-(2^16)ThroitCheats_IllllllIlllIl[#("lgBL")]=ThroitCheats_lIIlllIIIIllllIlll();end;if(ThroitCheats_IIllllIllII(ThroitCheats_IlIlllllIIIllIIIlllI,1,1)==1)then ThroitCheats_IllllllIlllIl[#("Wn")]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl[#("M9")]]end if(ThroitCheats_IIllllIllII(ThroitCheats_IlIlllllIIIllIIIlllI,2,2)==1)then ThroitCheats_IllllllIlllIl[#("1fX")]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl[#("pUP")]]end if(ThroitCheats_IIllllIllII(ThroitCheats_IlIlllllIIIllIIIlllI,3,3)==1)then ThroitCheats_IllllllIlllIl[#("TsXA")]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{252;628;92;807};"1 + 1 = 111";{934;619;566;509};}]]end ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_llIlllll]=ThroitCheats_IllllllIlllIl;end end;return ThroitCheats_llIlllll;end;local ThroitCheats_lIIlIIlIIIllIIllll=pcall local function ThroitCheats_lIIllIllII(ThroitCheats_IlIIIIlllIIllIIIII,ThroitCheats_llIIIIlllIl,ThroitCheats_lIIlllIIIIllllIlll)ThroitCheats_IlIIIIlllIIllIIIII=(ThroitCheats_IlIIIIlllIIllIIIII==true and ThroitCheats_llIllIIlIIIllI())or ThroitCheats_IlIIIIlllIIllIIIII;return(function(...)local ThroitCheats_IlIlIIlllllIIl=1;local ThroitCheats_IIlIIIIlllIllIlIIlIl=-1;local ThroitCheats_llIlIlllIlIIlIII={...};local ThroitCheats_llIllIIlIIIllI=ThroitCheats_llIIIIIIIIl('#',...)-1;local ThroitCheats_lIllIIllIl=ThroitCheats_IlIIIIlllIIllIIIII[#{{499;611;371;576};}];local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IlIIIIlllIIllIIIII[#{{519;64;604;666};"1 + 1 = 111";"1 + 1 = 111";}];local ThroitCheats_IlIIlIIIIlllIlllllIIll=ThroitCheats_IlIIIIlllIIllIIIII[#{"1 + 1 = 111";{618;246;543;220};}];local function ThroitCheats_lIIIIlIIlllIllIlllIlIl()local ThroitCheats_IlIIIIlllIIllIIIII=ThroitCheats_IIIIIlllIIIIl local ThroitCheats_IIIIIlllIIIIl={};local ThroitCheats_llIIIIIIIIl={};local ThroitCheats_IIllllIllII={};for ThroitCheats_IllllllIlllIl=0,ThroitCheats_llIllIIlIIIllI do if(ThroitCheats_IllllllIlllIl>=ThroitCheats_lIlIIlllllIlIlIlIlIII)then ThroitCheats_IIIIIlllIIIIl[ThroitCheats_IllllllIlllIl-ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIlIlllIlIIlIII[ThroitCheats_IllllllIlllIl+1];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIlIlllIlIIlIII[ThroitCheats_IllllllIlllIl+1];end;end;local ThroitCheats_IllllllIlllIl=ThroitCheats_llIllIIlIIIllI-ThroitCheats_lIlIIlllllIlIlIlIlIII+1 local ThroitCheats_IllllllIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;while true do ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{{292;359;949;907};}];if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{{130;755;892;548};{670;824;343;977};"1 + 1 = 111";{352;848;469;32};"1 + 1 = 111";"1 + 1 = 111";{737;685;846;807};"1 + 1 = 111";"1 + 1 = 111";{927;700;721;878};{789;113;829;576};"1 + 1 = 111";{321;685;810;890};"1 + 1 = 111";"1 + 1 = 111";{687;815;310;734};{577;763;798;810};"1 + 1 = 111";{610;492;221;115};"1 + 1 = 111";"1 + 1 = 111";{172;235;492;827};"1 + 1 = 111";{297;989;493;450};{199;782;58;528};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{123;549;342;336};"1 + 1 = 111";{311;27;183;488};{816;843;654;347};"1 + 1 = 111";{997;732;93;792};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{916;687;53;435};"1 + 1 = 111";"1 + 1 = 111";{568;587;566;610};{340;350;352;484};"1 + 1 = 111";"1 + 1 = 111";{62;284;922;681};"1 + 1 = 111";"1 + 1 = 111";{17;524;363;485};{14;987;409;65};"1 + 1 = 111";{348;141;249;159};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{770;114;789;939};{870;976;900;276};{932;491;819;102};{860;11;914;9};}then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("9IrEbp5UUa1nSRKKyD42WVLSVpDK")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("lvMWdF8Lutd2F")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("d7gmKY")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{"1 + 1 = 111";"1 + 1 = 111";}then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("E7")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("TU")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("zvb")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("RX")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1UG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("xB")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("mibY")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{{321;534;86;744};"1 + 1 = 111";{483;393;653;759};}];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("i")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("mF")];local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("2X4a")];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_lIllIIllIl+2 local ThroitCheats_lIllIIllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl](ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1],ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll])};for ThroitCheats_IllllllIlllIl=1,ThroitCheats_lIlIIlllllIlIlIlIlIII do ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll+ThroitCheats_IllllllIlllIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl];end;local ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl[1]if ThroitCheats_lIllIIllIl then ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll]=ThroitCheats_lIllIIllIl ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Pe0")];else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;end;else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{{785;881;85;792};{99;132;98;810};}];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Uya")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#{{693;397;937;67};{106;561;967;302};{762;91;254;126};{378;989;240;187};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("dh")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ip")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("mbT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{970;870;265;917};{627;195;303;902};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ony")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("MO")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("rIrd")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("rJF")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("7KTV")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("uaJ")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("Z6")];local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("fDzb")];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_lIllIIllIl+2 local ThroitCheats_lIllIIllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl](ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1],ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll])};for ThroitCheats_IllllllIlllIl=1,ThroitCheats_lIlIIlllllIlIlIlIlIII do ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll+ThroitCheats_IllllllIlllIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl];end;local ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl[1]if ThroitCheats_lIllIIllIl then ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll]=ThroitCheats_lIllIIllIl ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Gmn")];else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;end;else ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("ssq")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Oy")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("pBPlM")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dl")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("COi")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{275;523;137;963};"1 + 1 = 111";{378;417;706;811};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ge")]]=ThroitCheats_IllllllIlllIl[#("yfl")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oX5")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("fS")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("UnU")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("NhK")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("39")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jJ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("vfU")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("f5")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("4Iv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PT")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("14Q")]][ThroitCheats_IllllllIlllIl[#("JYIF")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{978;682;864;937};{953;528;320;826};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("gea")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MI")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3oG")]]+ThroitCheats_IllllllIlllIl[#("Jo6V")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4J")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cLk")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zlBG")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WT")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ONK")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SIge")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8H")]][ThroitCheats_IllllllIlllIl[#("C0s")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eBhD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{890;29;11;932};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("SNK")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("H4")]][ThroitCheats_IllllllIlllIl[#("3LL")]]=ThroitCheats_IllllllIlllIl[#("UU9Y")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{548;989;554;850};{484;528;858;201};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("UT6")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("iP")]][ThroitCheats_IllllllIlllIl[#("hEW")]]=ThroitCheats_IllllllIlllIl[#("0O0l")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("BJ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("mlE")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Iz")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("LcL")]][ThroitCheats_IllllllIlllIl[#("nDoT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qU")]]=ThroitCheats_IllllllIlllIl[#("4q3")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Xm")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("7cb")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("9k")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{725;295;590;549};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("EOP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2h")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1l")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("OPY")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{255;185;252;562};"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("P0v")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ji")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("14f")]][ThroitCheats_IllllllIlllIl[#("dMGD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bf")]]=ThroitCheats_IllllllIlllIl[#("x4L")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ED")]]=ThroitCheats_IllllllIlllIl[#("bZC")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gE")]]=ThroitCheats_IllllllIlllIl[#("Rt3")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Oo")]]=ThroitCheats_IllllllIlllIl[#("S5T")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("hR")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("Vrl")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eX")]][ThroitCheats_IllllllIlllIl[#("GkV")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{23;28;761;735};{827;442;133;937};{486;709;981;693};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("AH")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("nsf")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1Y")]][ThroitCheats_IllllllIlllIl[#{{688;104;682;991};{113;404;87;589};"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("W5er")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ar")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{56;888;490;118};{644;894;838;983};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vL")]][ThroitCheats_IllllllIlllIl[#("3cD")]]=ThroitCheats_IllllllIlllIl[#("iQfi")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("mcL")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("No")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("WgL")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ls")]][ThroitCheats_IllllllIlllIl[#("gSz")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zohv")]];else local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("p2")]ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("THU")]))end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("di19r4HUO")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{{10;349;363;524};{110;15;5;932};{714;709;44;951};{130;431;384;88};{417;907;916;731};{739;277;845;88};{784;232;601;946};}then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("in")]][ThroitCheats_IllllllIlllIl[#("jOC")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Uuo9")]];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("qabLIqHE")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_llIlllll;local ThroitCheats_llIllIIlIIIllI,ThroitCheats_lIIllIllII;local ThroitCheats_llIIIIIIIIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5T")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("TyR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oV")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("30U")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("OT")];ThroitCheats_llIIIIIIIIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qcU")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIIIIIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIIIIIl[ThroitCheats_IllllllIlllIl[#("osxs")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("gk")]ThroitCheats_llIllIIlIIIllI,ThroitCheats_lIIllIllII=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]))ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_lIIllIllII+ThroitCheats_lIlIIlllllIlIlIlIlIII-1 ThroitCheats_llIlllll=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIlIIIIlllIllIlIIlIl do ThroitCheats_llIlllll=ThroitCheats_llIlllll+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIllIIlIIIllI[ThroitCheats_llIlllll];end;ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Xd")]ThroitCheats_llIllIIlIIIllI={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IIlIIIIlllIllIlIIlIl))};ThroitCheats_llIlllll=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("C4OB")]do ThroitCheats_llIlllll=ThroitCheats_llIlllll+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIllIIlIIIllI[ThroitCheats_llIlllll];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("ZGv")];else local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("AV")]local ThroitCheats_lIIlllIIIIllllIlll={ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl+1])};local ThroitCheats_lIllIIllIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IllllllIlllIl[#("S1FG")]do ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_lIllIIllIl];end end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("ARQIyleAB55")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("uBZeS2Ju11")then local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("5y")]ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl]=ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("KBk")]))else local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fF")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Rv7")]][ThroitCheats_IllllllIlllIl[#("5JIC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hD")]]=ThroitCheats_IllllllIlllIl[#("u1s")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Yk")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("aDI")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("bS")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("KU6")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("vNB")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("RE")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8h")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("xOD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xN")]][ThroitCheats_IllllllIlllIl[#{{628;270;583;866};{471;103;973;939};{621;632;417;85};}]]=ThroitCheats_IllllllIlllIl[#("HygH")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NH")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("kqM")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{669;906;776;129};}]][ThroitCheats_IllllllIlllIl[#("Eub")]]=ThroitCheats_IllllllIlllIl[#("YFkT")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("I0")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("AEN")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zn")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{680;952;429;712};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("d0")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FGh")]][ThroitCheats_IllllllIlllIl[#("JX3l")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bh")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mZ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9oU")]]+ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{174;614;975;482};"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8e")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{348;512;917;401};{603;606;944;834};"1 + 1 = 111";}]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nbOQ")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Rg")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gfp")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7TMS")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NB")]][ThroitCheats_IllllllIlllIl[#("0ZU")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lWWM")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cJ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("SIz")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lC")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("azy")]][ThroitCheats_IllllllIlllIl[#("1m0x")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zT")]]=ThroitCheats_IllllllIlllIl[#{{512;251;271;240};"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oq")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("JPO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Gm")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("jPT")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("L8F")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("UO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("t7")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("o95")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ij")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("em7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("V2x")]][ThroitCheats_IllllllIlllIl[#("7U5j")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("LR")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{137;245;666;245};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("P5")]]=ThroitCheats_IllllllIlllIl[#("1Qu")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("EW")]]=ThroitCheats_IllllllIlllIl[#("sYe")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("f2")]]=ThroitCheats_IllllllIlllIl[#("CMK")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("qN")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("fGO")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("O7")]][ThroitCheats_IllllllIlllIl[#("d1N")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("48tC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("pC")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{512;772;701;404};{250;674;313;132};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("76")]][ThroitCheats_IllllllIlllIl[#("Q3Q")]]=ThroitCheats_IllllllIlllIl[#("xX8k")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5s")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("rMF")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("OE")]][ThroitCheats_IllllllIlllIl[#("Thy")]]=ThroitCheats_IllllllIlllIl[#("FTAc")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7f")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Opo")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("GX")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("4Ea")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{566;855;422;89};"1 + 1 = 111";}]][ThroitCheats_IllllllIlllIl[#("NWK")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("e2C4")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("KT5L7DKKCYMg")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("3c")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0P")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("nO7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("pd")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("O4h")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("M4")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#{{919;450;593;157};{589;744;804;149};"1 + 1 = 111";"1 + 1 = 111";}]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("R0J")];else local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("o0")]local ThroitCheats_lIllIIllIl,ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1]))ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_IlIlIIlllllIIl+ThroitCheats_IllllllIlllIl-1 local ThroitCheats_IlIlIIlllllIIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl,ThroitCheats_IIlIIIIlllIllIlIIlIl do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{{678;175;675;676};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{603;74;661;928};{313;650;959;726};{142;441;675;75};{625;378;24;941};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{86;462;575;741};"1 + 1 = 111";{637;212;371;331};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("fYDLg70uEcStWgny")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("TKFGPP9bW6UlDP")then local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("LN")]ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl]=ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("iyk")]))elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("JW2Rb9EtGJCcmqA")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("pU")]]=ThroitCheats_IllllllIlllIl[#("gRC")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6Z")]]=ThroitCheats_IllllllIlllIl[#("iTf")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oh")]]=ThroitCheats_IllllllIlllIl[#("Mmg")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("LU")]]=ThroitCheats_IllllllIlllIl[#("5H2")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uR")]]=ThroitCheats_IllllllIlllIl[#("tBD")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mv")]]=ThroitCheats_IllllllIlllIl[#("Pmp")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("Bh")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("9Cn")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("RP")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("QZr")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("pSzQ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("ic")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mS")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("tkv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("J4")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uMh")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("rQ")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("DgFW")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("JiP")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("MaaA0dUBjDKubfiayH")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("9nHv8oq97nMWVvGil")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("T7")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Xi9")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("9AkH")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("iM")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9O")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("8Pf")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Fq")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5Hj")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Yc")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("yXLD")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("CN7")];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_llIIIIlllIl;local ThroitCheats_llIlllll,ThroitCheats_llIIIIIIIIl;local ThroitCheats_llIllIIlIIIllI;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Yj")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DJ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Frh")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{533;454;277;830};}];ThroitCheats_llIllIIlIIIllI=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4LQ")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIllIIlIIIllI;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIllIIlIIIllI[ThroitCheats_IllllllIlllIl[#("iXYy")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Sc")]ThroitCheats_llIlllll,ThroitCheats_llIIIIIIIIl=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]))ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_llIIIIIIIIl+ThroitCheats_lIlIIlllllIlIlIlIlIII-1 ThroitCheats_llIIIIlllIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIlIIIIlllIllIlIIlIl do ThroitCheats_llIIIIlllIl=ThroitCheats_llIIIIlllIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIlllll[ThroitCheats_llIIIIlllIl];end;ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Hc")]ThroitCheats_llIlllll={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IIlIIIIlllIllIlIIlIl))};ThroitCheats_llIIIIlllIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("fsbd")]do ThroitCheats_llIIIIlllIl=ThroitCheats_llIIIIlllIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIlllll[ThroitCheats_llIIIIlllIl];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("k6J")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("ouGcCHIAjrBBCPQFAmf")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Pd")]]();else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("t7e")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("3S4p")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("ms")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("TS")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("IYb")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{88;485;901;869};"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DdZ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("yz")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("Pzs0")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{{454;822;224;109};"1 + 1 = 111";"1 + 1 = 111";}];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("bkJdXmHRZ8G76Hilp7V9YJf9")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("GW6gp6tcIBeVCoo91LkWDF")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("HEpCBg0DeKFqBLKJcm4zg")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("VU")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bCE")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("zoOD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("OY")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Vu")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("OB9")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zB")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("a2H")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("iC")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("PR4C")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Co9")];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DZ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{19;348;38;267};"1 + 1 = 111";"1 + 1 = 111";}]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8AYj")]]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#{"1 + 1 = 111";{341;196;277;951};{823;554;528;657};"1 + 1 = 111";{487;482;540;777};{940;496;77;604};{865;964;40;648};{125;983;961;671};"1 + 1 = 111";{538;527;926;379};{181;215;500;742};{371;920;302;787};"1 + 1 = 111";"1 + 1 = 111";{839;230;991;739};"1 + 1 = 111";{2;589;957;71};{231;166;820;977};{653;540;853;458};{711;305;637;562};{834;402;553;696};"1 + 1 = 111";{848;828;704;79};}then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lp")]][ThroitCheats_IllllllIlllIl[#("CNv")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{690;329;598;916};{266;119;386;886};{33;719;69;830};}]];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fM")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Lgn")]][ThroitCheats_IllllllIlllIl[#("keBN")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("YzrbiKJfXDdCU4g4FjxApJk6JI")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("8Rieo1USKO6XNG5e6KIU7ZXD0")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("aT")]]=ThroitCheats_IllllllIlllIl[#("Cgd")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dD")]]=ThroitCheats_IllllllIlllIl[#("a3T")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bt")]]=ThroitCheats_IllllllIlllIl[#("D0d")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("TW")]]=ThroitCheats_IllllllIlllIl[#("8XG")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eb")]]=ThroitCheats_IllllllIlllIl[#("qZz")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3X")]]=ThroitCheats_IllllllIlllIl[#("eX4")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("oX")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("mNu")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("5L")]local ThroitCheats_lIIlllIIIIllllIlll={ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IIlIIIIlllIllIlIIlIl))};local ThroitCheats_lIllIIllIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IllllllIlllIl[#("rG5N")]do ThroitCheats_lIllIIllIl=ThroitCheats_lIllIIllIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_lIllIIllIl];end end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("HSpnuDKpLzPzYK9mHpJvT3tFoxa")then ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("gZg")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zC")]];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Jm")]]=ThroitCheats_IllllllIlllIl[#("nIZ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hP")]]=ThroitCheats_IllllllIlllIl[#("Znm")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5N")]]=ThroitCheats_IllllllIlllIl[#("FqJ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{743;479;332;477};}]]=ThroitCheats_IllllllIlllIl[#("uG9")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ay")]]=ThroitCheats_IllllllIlllIl[#("hRx")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6z")]]=ThroitCheats_IllllllIlllIl[#("Rax")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("tz")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("lRg")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("vi3QnAucDvsEmy5HAIV7UUsI4EfNyU98CV3CG9lyp7U")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("6eiv8XfRLcdM0uVTuROSvubBEEaAvySXahL")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("vUPKPsyzSrLknCdIscYMcR1EWPunuqL")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("T6yLcecd6NTl20m4tjF7s9XO2kYa8")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("8r")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("JvM")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("9FVW")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("B1")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7e")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("UGP")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MO")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7L0")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("3ivz")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{909;71;72;22};{214;934;293;774};}];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("eCQ2BreCGn9VPA8QL6CB3lVOAUjUS1")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("DL")];local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+2];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]+ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]=ThroitCheats_lIIlllIIIIllllIlll;if(ThroitCheats_lIlIIlllllIlIlIlIlIII>0)then if(ThroitCheats_lIIlllIIIIllllIlll<=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("oPb")];ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end elseif(ThroitCheats_lIIlllIIIIllllIlll>=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("OPq")];ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("ji")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jN")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Du1")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("po")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("llS")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("W9")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("yyKv")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("gZa")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("cfXJrFaz502Nq8ItxQmK1IIp2QcCRitTO")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("7Q21QkLHHKbIEP2BWeGrzEIHQMCISXGi")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Jf")]]=ThroitCheats_IllllllIlllIl[#("O6G")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{8;832;233;957};"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("0JS")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SQ")]]=ThroitCheats_IllllllIlllIl[#("1sj")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s7")]]=ThroitCheats_IllllllIlllIl[#("rJA")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7P")]]=ThroitCheats_IllllllIlllIl[#("QAT")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{752;959;767;279};{164;849;107;171};}]]=ThroitCheats_IllllllIlllIl[#("fmj")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("9D")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("PCo")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Kj")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3S7")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("D4Vl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("BZ")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uk")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("0Ij")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Al")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jm0")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{{816;369;290;568};{221;416;671;160};}]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("VyCM")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{{247;137;49;499};{538;567;249;374};"1 + 1 = 111";}];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("sa2CG9c8ub7oulxKpvpnxJEhukeScYUe3J")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("8u")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ka5")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("tXaW")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("mV")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s1")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("WlC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zm")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gge")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("dz")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("jWrO")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Wgj")];else local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("FW")];local ThroitCheats_lIllIIllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("u5N")]];ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl+1]=ThroitCheats_lIllIIllIl;ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl[#("EPbr")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("Pa8peEseDKsuAf7CBp4MUHUgu5t6Gq2uWaSKrgl")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("dFbIcZONextY86Biq24ijxIlS7JAxykuekIoG")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("eFrR1j7dxZJKtzlcKR6Z0eqnpRl9UXzmMeXA")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("y9")]]();else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WJ")]][ThroitCheats_IllllllIlllIl[#("vxa")]]=ThroitCheats_IllllllIlllIl[#("uILR")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("CGznOLU0XdVibL1sQvaodBj78tJBx7pMWlhlIM")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("qx")];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+2];if(ThroitCheats_lIlIIlllllIlIlIlIlIII>0)then if(ThroitCheats_lIIlllIIIIllllIlll>ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("zgy")];else ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end elseif(ThroitCheats_lIIlllIIIIllllIlll<ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("KP5")];else ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end else local ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_IlIIlIIIIlllIlllllIIll[ThroitCheats_IllllllIlllIl[#("Pao")]];local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_lIlIIlllllIlIlIlIlIII={};ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IIlIIIIll({},{__index=function(ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IllllllIlllIl)local ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_IllllllIlllIl];return ThroitCheats_IllllllIlllIl[1][ThroitCheats_IllllllIlllIl[2]];end,__newindex=function(ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl,ThroitCheats_IlIlIIlllllIIl)local ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_IllllllIlllIl]ThroitCheats_IllllllIlllIl[1][ThroitCheats_IllllllIlllIl[2]]=ThroitCheats_IlIlIIlllllIIl;end;});for ThroitCheats_lIIlllIIIIllllIlll=1,ThroitCheats_IllllllIlllIl[#("XFfE")]do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;local ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if ThroitCheats_IllllllIlllIl[#("s")]==46 then ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_lIIlllIIIIllllIlll-1]={ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl[#("GMa")]};else ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_lIIlllIIIIllllIlll-1]={ThroitCheats_llIIIIlllIl,ThroitCheats_IllllllIlllIl[#("qrR")]};end;ThroitCheats_llIIIIIIIIl[#ThroitCheats_llIIIIIIIIl+1]=ThroitCheats_lIlIIlllllIlIlIlIlIII;end;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("l3")]]=ThroitCheats_lIIllIllII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IlIlllllIIIllIIIlllI,ThroitCheats_lIIlllIIIIllllIlll);end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("EGxDOA0TmH46SXkXavCpuctEZYjxZDPUejHTQ8GHh")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("v3DbIYLygZgv1Cl3O0qD4U2j2IqChc04hUQBbYpu")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ca")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ESH")]][ThroitCheats_IllllllIlllIl[#("yUUk")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("D2")]]=ThroitCheats_IllllllIlllIl[#{{260;222;777;973};"1 + 1 = 111";{339;424;582;925};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("aW")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{65;72;480;103};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("3q")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("aln")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("X8g")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eL")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Qr")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("kTW")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("d4")]][ThroitCheats_IllllllIlllIl[#("1G2")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{320;631;79;954};"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("KI")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("542")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]][ThroitCheats_IllllllIlllIl[#{{744;573;576;755};"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("ghJR")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("i6")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("KuB")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zg")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("54n")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ax")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mBO")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{325;937;364;508};{158;18;841;328};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vK")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("yu4")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oE")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("kpI")]]+ThroitCheats_IllllllIlllIl[#("Y2Db")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YF")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6Vk")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mXVV")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NS")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Iaf")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ZRHJ")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hL")]][ThroitCheats_IllllllIlllIl[#("GUh")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zcgL")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{246;786;439;261};"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("5He")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("v2")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("H8G")]][ThroitCheats_IllllllIlllIl[#("BGVV")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("KZ")]]=ThroitCheats_IllllllIlllIl[#("GGJ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("I2")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("1Iv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("sE")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("9K3")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("SGU")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ct")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("j4K")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("pZ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("YaT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("AV")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s4A")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{677;75;22;430};{875;733;148;948};{214;929;137;239};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{303;897;306;545};}]]=ThroitCheats_IllllllIlllIl[#("qCV")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zb")]]=ThroitCheats_IllllllIlllIl[#("Uqn")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tQ")]]=ThroitCheats_IllllllIlllIl[#("lUP")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9d")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("SW")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("0Rb")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0Q")]][ThroitCheats_IllllllIlllIl[#("Xps")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("RJEX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jF")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("zKD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]][ThroitCheats_IllllllIlllIl[#("Wgi")]]=ThroitCheats_IllllllIlllIl[#("GrSd")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{891;734;947;310};{762;49;106;787};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("iFt")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("yD")]][ThroitCheats_IllllllIlllIl[#("ZRQ")]]=ThroitCheats_IllllllIlllIl[#("YqxI")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("J6")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("stN")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ap")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("pJq")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mT")]][ThroitCheats_IllllllIlllIl[#("YXM")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zLay")]];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("F9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2ad")]][ThroitCheats_IllllllIlllIl[#("J9uE")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mu")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{809;971;179;93};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("TT")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YSO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("6A")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{299;351;851;791};{873;268;17;556};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("lPg")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Yp")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bW")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("aLg")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Af")]][ThroitCheats_IllllllIlllIl[#("M3v")]]=ThroitCheats_IllllllIlllIl[#("rgS7")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("e6")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("tkR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PB")]][ThroitCheats_IllllllIlllIl[#("FIe")]]=ThroitCheats_IllllllIlllIl[#("n3dG")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ys")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Csy")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6O")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("3HN")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("VO")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("QIY")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{593;293;805;642};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nv")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Rgg")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("D9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("QCK")]]+ThroitCheats_IllllllIlllIl[#("gtdV")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("UB")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4Jz")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jjnc")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{421;885;279;579};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("W80")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("L8Gf")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0z")]][ThroitCheats_IllllllIlllIl[#("aOK")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Rn9I")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gW")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{61;335;512;575};{631;700;44;285};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FB")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qBp")]][ThroitCheats_IllllllIlllIl[#("zKVi")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("7GY")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Dv")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{965;489;856;518};{839;751;949;463};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("9a")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("dJs")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{178;682;538;517};{958;190;155;860};"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mc")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("UX")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("3h3")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("V6")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Q9K")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{110;121;782;457};{752;331;270;178};{893;466;877;491};}]][ThroitCheats_IllllllIlllIl[#("4m0F")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jF")]]=ThroitCheats_IllllllIlllIl[#("zn1")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("BH")]]=ThroitCheats_IllllllIlllIl[#("lgt")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eZ")]]=ThroitCheats_IllllllIlllIl[#("Vum")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("sp")]]=ThroitCheats_IllllllIlllIl[#("0OK")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("CO")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("vHg")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ca")]][ThroitCheats_IllllllIlllIl[#("HZ9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("k10J")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("HU")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("IvX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("q7")]][ThroitCheats_IllllllIlllIl[#("6Wf")]]=ThroitCheats_IllllllIlllIl[#("o6Jj")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ef")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("1kX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cv")]][ThroitCheats_IllllllIlllIl[#("Rd1")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{41;343;352;833};"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Hg")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("DYh")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IA")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("54e")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{407;505;944;249};}]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{945;89;348;277};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("py80")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("Bv0OSreHXuQpPQMatjaIjqe9lohVV20K6RDzcFjpl4")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("G5")]local ThroitCheats_lIIlllIIIIllllIlll={ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIllIIllIl+1,ThroitCheats_IIlIIIIlllIllIlIIlIl))};local ThroitCheats_IlIlIIlllllIIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl,ThroitCheats_IllllllIlllIl[#("cnlc")]do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IlIlIIlllllIIl];end else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("43")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("OhB")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("HJ4j")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("zr")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MS")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("oSR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("C1")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("suD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("f3")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("6sSL")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("o2h")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("SkOCeeARPpWMkr0DEktW4Fft8mm8Y9Vxp6vYIWcRukltjeshlc")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("e1iAneuE11C3PFAxn5c5RhNBUsWj34fXWtQFgGiUmrlZ3r")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("ZUSeljh86oRQ4skL6VPguZ5pSWrSA6XICX6Al03NPvTp")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7v")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0TV")]][ThroitCheats_IllllllIlllIl[#("Uh6L")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("sb")]]=ThroitCheats_IllllllIlllIl[#("Ppv")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cV")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SAo")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("g4")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("rVJ")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("gNQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("XY")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zb")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("UoM")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nv")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("vaI")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{735;429;913;718};"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vit")]][ThroitCheats_IllllllIlllIl[#("VP0E")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("CA")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{734;696;284;714};"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2f")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vyW")]]+ThroitCheats_IllllllIlllIl[#("G4CZ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("GC")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WS1")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Hoak")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Dq")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DdJ")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7QYj")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xm")]][ThroitCheats_IllllllIlllIl[#("WO1")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PbAT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("R1")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("mz6")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ns")]][ThroitCheats_IllllllIlllIl[#("hW6")]]=ThroitCheats_IllllllIlllIl[#("ZkeZ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6Z")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Snx")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8N")]][ThroitCheats_IllllllIlllIl[#("fl1")]]=ThroitCheats_IllllllIlllIl[#("hBxy")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("W1")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("I2D")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Fb")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1r7")]][ThroitCheats_IllllllIlllIl[#("yxSd")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("N1")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{945;376;518;866};"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0k")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("B9v")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("4K")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("rS0")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("CKJ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Qt")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rC")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("ChQ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4H")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("urS")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4t")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mQ9")]][ThroitCheats_IllllllIlllIl[#("NheW")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("AF")]]=ThroitCheats_IllllllIlllIl[#("liU")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("U3")]]=ThroitCheats_IllllllIlllIl[#("B4o")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zU")]]=ThroitCheats_IllllllIlllIl[#("qOn")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("97")]]=ThroitCheats_IllllllIlllIl[#("2Pr")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("9T")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("vEB")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s1")]][ThroitCheats_IllllllIlllIl[#("t3r")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SrIl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DS")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("LzR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4p")]][ThroitCheats_IllllllIlllIl[#{{79;692;254;26};"1 + 1 = 111";{982;69;514;719};}]]=ThroitCheats_IllllllIlllIl[#("etWO")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vR")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("aCG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("b1")]][ThroitCheats_IllllllIlllIl[#("857")]]=ThroitCheats_IllllllIlllIl[#("Togv")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cL")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("vos")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("un")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("48Q")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("af")]][ThroitCheats_IllllllIlllIl[#("9u5")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("u0Mp")]];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("0nBcRodolkaYCxz1zIaCiohvUAg1bC9fPZ2J0PTRTtqM6")then if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nF")]]~=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("g2ML")]])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("obJ")];end;else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2Q")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0at")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("TDEWpXTYrLgfrqilnTl4iNF0aUZtSY7FziRNxomlx1IqCVxC")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("IgHBbDf8OVF8zgDOLQjKFY8H9IrfnzoxxVjRBeyQLPTERn7")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("rr")];local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+2];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]+ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]=ThroitCheats_lIIlllIIIIllllIlll;if(ThroitCheats_lIlIIlllllIlIlIlIlIII>0)then if(ThroitCheats_lIIlllIIIIllllIlll<=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end elseif(ThroitCheats_lIIlllIIIIllllIlll>=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{472;284;292;805};}];ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("CM")]]={};end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("eN1fn2cTiaBEkaUpGiLN6WmGsD90fF0VLHaLIjiFTBJBO4GK4")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("XC")]]=ThroitCheats_IllllllIlllIl[#("jiz")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NF")]]=ThroitCheats_IllllllIlllIl[#("H3M")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("gz")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{696;988;19;579};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rx")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Tbf")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("p7")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rxH")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{637;603;639;903};{645;260;180;450};"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IO")]]=ThroitCheats_IllllllIlllIl[#("2ms")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9s")]]=ThroitCheats_IllllllIlllIl[#("L5u")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ao")]]=ThroitCheats_IllllllIlllIl[#("aoo")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("4c")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("qqG")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ie")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("5Fm")]];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("CJ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zES")]][ThroitCheats_IllllllIlllIl[#("I6O1")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Po")]]=ThroitCheats_IllllllIlllIl[#("lSs")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hS")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eDV")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("g3")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("5TH")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("0CZ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("e5")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5N")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("IAe")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8U")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("oxv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lD")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("GoZ")]][ThroitCheats_IllllllIlllIl[#("HN2s")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5y")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("klK")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xT")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("F6V")]]+ThroitCheats_IllllllIlllIl[#("XPSM")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Q7")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Njh")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ipv4")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("XZ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("EdH")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WFYH")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("OK")]][ThroitCheats_IllllllIlllIl[#("TJa")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0Q6k")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oA")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("PLX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Y3")]][ThroitCheats_IllllllIlllIl[#("Axg")]]=ThroitCheats_IllllllIlllIl[#("gKGt")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dv")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("v0P")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("g8")]][ThroitCheats_IllllllIlllIl[#("O8b")]]=ThroitCheats_IllllllIlllIl[#("WLp5")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0j")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("jiC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Vp")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Q67")]][ThroitCheats_IllllllIlllIl[#("S8sV")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6T")]]=ThroitCheats_IllllllIlllIl[#("sH2")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5U")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("0YT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("oA")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("nuh")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("yL9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("yr")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tr")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("06H")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{175;242;524;711};{440;154;687;908};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Er3")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ry")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cXy")]][ThroitCheats_IllllllIlllIl[#("BjaV")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("41")]]=ThroitCheats_IllllllIlllIl[#("hhY")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{817;142;464;439};"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("OzQ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("e0")]]=ThroitCheats_IllllllIlllIl[#("F58")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ab")]]=ThroitCheats_IllllllIlllIl[#("gSM")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("RS")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("1Cv")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1t")]][ThroitCheats_IllllllIlllIl[#("jsd")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tM0S")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7K")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ak4")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DQ")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("dhge")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{241;688;666;16};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{405;597;488;730};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vZ")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{680;393;171;646};}]]=ThroitCheats_IllllllIlllIl[#("1RRx")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9e")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("4fO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ib")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("78Q")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Za")]][ThroitCheats_IllllllIlllIl[#("PLO")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("njzz")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("7INtYsAuWU3mOOjP2N9iSv9g4GmW2z7z6LHsiqTSlmxzMGX4q8b2KV")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("LIHAsfNCyXEqcg1HM4r7F9LEySrG4yeZkZ6UM1BNIV9LipUYABz8")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("YqM7cbKXhIaSPfnkh5VDPzUa9vh8EgD8gGxItWJZ1ZBm83DkHNs")then local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("oj")]ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1])else ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("B0C")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ix")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("NGOzHM7Q3LsbfcMiTP0uv5MZ8Hbg27B1X6uK28bSY36pHAh6quC1W")then if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("HN")]]==ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{302;252;90;191};"1 + 1 = 111";"1 + 1 = 111";}]])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("ees")];end;else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("lj")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FQq")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("Yldf")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("OT")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fC")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("W6i")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8S")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2HW")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("dS")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("QQkr")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("HyO")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("kR4YB9K1X5jCniRbpUOiGD9vsIAfZIGKe0WNQdHbi7fagfm8opeRnOCS")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("IG2JEbpAKxyxdulnN9Ix8pmvC0KDYxByd5hIPCO5ZLGSZLk43EKO3uT")then if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{250;506;46;548};}]]==ThroitCheats_IllllllIlllIl[#("FTXW")])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{533;923;163;371};}];end;else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ri")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ehu")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("sHhNCWLn69sinOIkvNIyTFG0QPKuWWFTlZohuaEd9sW0sbRo5AsqXuKYb")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8c")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lT")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{623;671;16;737};"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3t")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YP")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Pbb")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gj")]]();else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9v")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fCE")]]+ThroitCheats_IllllllIlllIl[#("OFkv")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("7WmpBjEK7yABZviFyBSQIO8vAvEn60oAgdcS0U1MvSesYEK7hr7ifuTtX00fQpNgiauWsBOOJfuZJQH5WGgO3gtV")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("T4a3W6fe8jYiYOROsKaa3Uht5sjj9mcQKCKHOVWjpULGSW82z9LGtVA9WQ8DW5fWgiJvekaIX")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("VijLLiurV9MHxZcLU7XsytPZAKmMYo9cSE9qZkfZhFkfjJVUsEAcVECBEula6TEGa")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("Y3ZVVJ28l3iKP0YCstY6rnbJXF8e2zaOfKV25IT0kXsJr4PvlEAjRdqK1p7pK")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("fW2FEef5HVL7VF5Dq3ZN3z917ctkbPKDqyRHQXALqp7OITrWPz9eB73QWbH")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fD")]]={};elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("V441kiRyXyWDDoxNCusnUIFMQGcsEbUPp80vufDAc48qNGLlLqnBStRnAskP")then local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#("Q0")]local ThroitCheats_lIIlllIIIIllllIlll={ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl](ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])};local ThroitCheats_IlIlIIlllllIIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl,ThroitCheats_IllllllIlllIl[#("bq6x")]do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IlIlIIlllllIIl];end else local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("ak")]ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1])end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{"1 + 1 = 111";{716;902;229;590};{809;927;318;528};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{779;343;613;334};"1 + 1 = 111";"1 + 1 = 111";{919;597;74;793};{153;465;372;861};"1 + 1 = 111";{826;986;71;746};"1 + 1 = 111";"1 + 1 = 111";{461;304;666;169};"1 + 1 = 111";{98;403;694;449};{610;494;545;159};{33;925;947;44};"1 + 1 = 111";{863;66;985;344};"1 + 1 = 111";{704;302;181;324};{814;114;387;94};"1 + 1 = 111";"1 + 1 = 111";{707;722;624;307};{201;824;258;77};{133;179;19;405};{971;326;893;109};"1 + 1 = 111";"1 + 1 = 111";{307;886;337;858};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{268;1;595;705};{210;48;457;698};"1 + 1 = 111";{993;434;936;36};{724;926;429;978};"1 + 1 = 111";{234;243;764;737};"1 + 1 = 111";{341;597;495;942};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{50;368;822;989};{2;280;40;90};"1 + 1 = 111";{501;448;734;495};"1 + 1 = 111";{348;732;273;805};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{961;339;5;285};}then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#{"1 + 1 = 111";"1 + 1 = 111";{107;656;823;647};"1 + 1 = 111";"1 + 1 = 111";{609;739;76;790};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{67;210;980;387};{73;391;248;651};{890;843;317;554};"1 + 1 = 111";"1 + 1 = 111";{848;617;714;889};{564;185;42;550};"1 + 1 = 111";{724;284;508;854};"1 + 1 = 111";{964;402;545;266};{685;705;197;56};{270;410;15;817};{271;100;926;893};{584;153;942;425};{109;110;909;820};{134;880;520;152};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{759;65;981;48};{305;840;459;777};{420;907;581;855};"1 + 1 = 111";{899;602;204;642};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{280;829;574;482};"1 + 1 = 111";"1 + 1 = 111";{548;466;460;879};"1 + 1 = 111";{448;502;803;15};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{456;404;483;101};"1 + 1 = 111";{292;52;383;244};"1 + 1 = 111";{101;611;425;284};{430;239;869;585};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{568;730;685;398};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}then for ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("JV")],ThroitCheats_IllllllIlllIl[#("ZGi")]do ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=nil;end;else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("r0")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{323;320;78;499};{356;352;679;356};{155;10;34;201};}]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("h05cOHHm2kyQi2Uf2A6nPtGemjl2FVbKjrTscj42FAjtAhmOX5NkG4PXt00EvORh")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3m")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Yld")]][ThroitCheats_IllllllIlllIl[#("rVLS")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("iD")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xl")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s19")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("3j")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("voA")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("tIt")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{903;31;525;850};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uy")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ftv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NM")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{194;838;575;271};"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gs")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9TL")]][ThroitCheats_IllllllIlllIl[#("slJ2")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9k")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("olm")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9t")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FJy")]]+ThroitCheats_IllllllIlllIl[#("1ebT")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6G")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2fj")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("kGAT")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Qm")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Cg3")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FvMo")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("J1")]][ThroitCheats_IllllllIlllIl[#("g5S")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dZeG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vS")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("xcO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("CX")]][ThroitCheats_IllllllIlllIl[#("09j")]]=ThroitCheats_IllllllIlllIl[#("HpQ1")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qQ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("ka6")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2o")]][ThroitCheats_IllllllIlllIl[#("pmi")]]=ThroitCheats_IllllllIlllIl[#{{451;169;828;963};{160;903;784;389};"1 + 1 = 111";{445;192;146;959};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SP")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("b3S")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YX")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("kc8")]][ThroitCheats_IllllllIlllIl[#("sk5c")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5i")]]=ThroitCheats_IllllllIlllIl[#("jhM")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ay")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("GNc")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("J7")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{{164;990;702;329};"1 + 1 = 111";"1 + 1 = 111";}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("HRQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MV")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("AKg")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Wq")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("jL8")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8TJ")]][ThroitCheats_IllllllIlllIl[#("KEBC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("FT")]]=ThroitCheats_IllllllIlllIl[#("m6g")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xg")]]=ThroitCheats_IllllllIlllIl[#("eov")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("xxr")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("L1")]]=ThroitCheats_IllllllIlllIl[#("82H")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("cO")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("W7M")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("L5")]][ThroitCheats_IllllllIlllIl[#("nmv")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("F0mD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("z2")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("6gp")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cd")]][ThroitCheats_IllllllIlllIl[#("ivY")]]=ThroitCheats_IllllllIlllIl[#("5ixt")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("d01")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Z6")]][ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{94;327;309;380};{489;216;139;464};}]]=ThroitCheats_IllllllIlllIl[#("Dgcd")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uz")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("v7i")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zA")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{790;816;708;819};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Xd")]][ThroitCheats_IllllllIlllIl[#("ddE")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MzjQ")]];else local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Wy")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{730;188;278;913};"1 + 1 = 111";{54;868;402;106};}]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("gdEA")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("XM")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("vJ")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("9WK")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("J9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("bDS")]][ThroitCheats_IllllllIlllIl[#("tBK6")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("QC")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0t7")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("JzM5")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("C5")]]=ThroitCheats_IllllllIlllIl[#("dsq")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Mv")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("n7G")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{{527;488;812;797};{846;169;308;471};{22;863;646;397};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Dp")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qO")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("00D")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if not ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tX")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Sjs")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("YG1jCdSGdTpkmPe6HfKi1doM59ltAH0ScjMMvFu14PClAMhlWIYJh8sVronC1zfH2Hicc")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("LbUSnlLdmt2aI2SqKd11tgr2aFJ5s2Eeis6XZzUgjnb4K01nZM7elliFU1SSNPUuZX2")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("55ClsURgexsjOvgR5z26kCc7RcEEERfW8Mr3jVWBFcAyJJerJcAB46dE2FFqqmMyrG")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cN")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gp")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("yhF")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("pf")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xa")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("fVq")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cV")]]();else local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("vT")]ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1])end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("bdmIjMCCibPzi7m5CqO1bJYbPqGkrAcfcxcnxFqYDF5DnfvsdrkgNOjDok32gqkS8JvV")then for ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("Tv")],ThroitCheats_IllllllIlllIl[#("uXk")]do ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=nil;end;else if ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Cj")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("rT6")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("8I7a0zHNvYJ4mg9p6DzmJ9lLzRmumFOULxfUnfWpNZ3xt74jkCbg7Iv9xvLjmmA0jYtZbpc")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("QiKUfYrCXcjVDIXcbgx1FMdAzcnFNei5AkAY7M4IejxjdPyLbqY42kvdfkucKWYS3ovri8")then local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}];local ThroitCheats_lIllIIllIl=ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl];for ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("paU")]do ThroitCheats_llIlllll(ThroitCheats_lIllIIllIl,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else if not ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tf")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#{"1 + 1 = 111";"1 + 1 = 111";{464;497;790;954};{962;279;324;503};"1 + 1 = 111";"1 + 1 = 111";{774;246;574;481};"1 + 1 = 111";{74;523;938;831};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{356;139;260;525};"1 + 1 = 111";{69;550;385;690};"1 + 1 = 111";{559;532;446;328};{147;992;477;239};"1 + 1 = 111";{333;817;655;292};{990;301;258;561};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{944;956;212;258};"1 + 1 = 111";{977;279;327;171};"1 + 1 = 111";{347;641;6;458};"1 + 1 = 111";"1 + 1 = 111";{943;616;384;972};{439;237;996;591};"1 + 1 = 111";{860;624;997;410};{465;587;518;476};"1 + 1 = 111";{588;493;670;738};"1 + 1 = 111";"1 + 1 = 111";{521;276;215;146};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{765;918;39;228};"1 + 1 = 111";{834;649;547;153};"1 + 1 = 111";{968;539;665;397};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{621;192;778;790};"1 + 1 = 111";{736;164;916;828};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{889;513;488;658};"1 + 1 = 111";{919;603;681;671};{336;839;785;404};}then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("3F")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("EG")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("ZPr")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rJ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9b8")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("pl")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("Qdmi")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("bz1")];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hp")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("YDr")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("IG9QEa93kLNnMPX3sym2blKplYX2qNkmpQoUsA00GfBc5m7FNrHhW9Vv5TFQnhNIAA75AcK2Hxv5VIu9")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("ro9fcBp53ZJ5jNyD2MGobfLRPLANZLyzGZ52NDy8RaHna7xT8D25YVZlOrACbNfrBkzuRFZAnIHa")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("yQRnQPxTCLVaTouc66e5oW0IcbDNDRqnYNpMTnv8TJ8KOt7qFxrLDftLZjlOlUpUtHmg9TtSLf")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("HA")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("R5U")]];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("PYq3SemifAPVSsPWJcRW8tnpgh1qVcKax3PXJpDK9LjuPWEXt6VP4tnvKbWLm5xc0PzZO1nsKgW")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("d4")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{285;558;211;95};"1 + 1 = 111";}]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("XSiO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("pL")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("UL")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("3kC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("DP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Aqs")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("d6")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("mi2Z")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("9U9")];else local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{{352;144;966;711};"1 + 1 = 111";}];local ThroitCheats_lIllIIllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("EfL")]];ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl+1]=ThroitCheats_lIllIIllIl;ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IllllllIlllIl[#("ktVE")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("j3KuOe6Zr4fcQtmIE1yeogF9xOjDSCfYH0lRBC7h8IV5JvitPQZSSSicyL795Eg0YrF0iGhc4pgRvJ")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("bFZYcMyfZRjt0E7mEB4hq0sljJXXDLCQYj6EfQdnBmQi8lrI6dMpCCjkmOOEZKNopDFQHEgXyRQek")then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("ZDV")];else if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xJ")]]==ThroitCheats_IllllllIlllIl[#("BxX3")])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("1aF")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("m7ro1A8lox9WrCbKy1KB3FRLbD6Z2UVf9bBRmKSnpdohQUmPVYsYFTrRpQmzDjtEL4XpbuxXivlZqK4")then local ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_IlIIlIIIIlllIlllllIIll[ThroitCheats_IllllllIlllIl[#("Sru")]];local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_lIlIIlllllIlIlIlIlIII={};ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IIlIIIIll({},{__index=function(ThroitCheats_IlIlIIlllllIIl,ThroitCheats_IllllllIlllIl)local ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_IllllllIlllIl];return ThroitCheats_IllllllIlllIl[1][ThroitCheats_IllllllIlllIl[2]];end,__newindex=function(ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl,ThroitCheats_IlIlIIlllllIIl)local ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_IllllllIlllIl]ThroitCheats_IllllllIlllIl[1][ThroitCheats_IllllllIlllIl[2]]=ThroitCheats_IlIlIIlllllIIl;end;});for ThroitCheats_lIIlllIIIIllllIlll=1,ThroitCheats_IllllllIlllIl[#("EIAF")]do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;local ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if ThroitCheats_IllllllIlllIl[#("E")]==46 then ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_lIIlllIIIIllllIlll-1]={ThroitCheats_IIllllIllII,ThroitCheats_IllllllIlllIl[#("Tdh")]};else ThroitCheats_lIlIIlllllIlIlIlIlIII[ThroitCheats_lIIlllIIIIllllIlll-1]={ThroitCheats_llIIIIlllIl,ThroitCheats_IllllllIlllIl[#("ijq")]};end;ThroitCheats_llIIIIIIIIl[#ThroitCheats_llIIIIIIIIl+1]=ThroitCheats_lIlIIlllllIlIlIlIlIII;end;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ce")]]=ThroitCheats_lIIllIllII(ThroitCheats_IIlIIIIlllIllIlIIlIl,ThroitCheats_IlIlllllIIIllIIIlllI,ThroitCheats_lIIlllIIIIllllIlll);else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Kpr")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("prdeB6KpUTCHytUfUUGV77OBBFQiICBPV5ilfocOuHFr20AZMfeGdjtsNNN6qCSrsWVCkIaFS2BACvILe0HC")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("5MML0IDMgy2Zm9ge8OdfKYlS40rec1B5p4yki0u9H3LEILpxCGglDxXgB4R9qzJo67JrM65iteIQmRjtL4")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("HVoC3hqUoiuSitxILb7VGK72yYh4TVyzxWcESFQkulR98vzx0jIsOjg6Xvee9vaEU6vxr2ZfuWAt284cz")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WD")]]=ThroitCheats_IllllllIlllIl[#("f86")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("st")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{182;293;938;320};{731;18;123;814};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Q4")]]=ThroitCheats_IllllllIlllIl[#("uBp")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2q")]]=ThroitCheats_IllllllIlllIl[#("iNp")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9O")]]=ThroitCheats_IllllllIlllIl[#("QPa")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6T")]]=ThroitCheats_IllllllIlllIl[#("67j")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("3Y")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("Ndr")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("rl")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YWT")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("eEgT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Zu")]]=ThroitCheats_IllllllIlllIl[#("l9X")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("0j")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("eBs")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("tTa")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oa")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("VE")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Y7X")]][ThroitCheats_IllllllIlllIl[#("JlaH")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("rC")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3yh")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("z5ZJ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("JX")]]=ThroitCheats_IllllllIlllIl[#("pjZ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("al")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("YaA")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("LOX")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ZX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("KB")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("RQ7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if not ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tj")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("0xY")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("eKmfVnQfQvBLk9lnob9ce7tD71TWeZCbQorBqPliRllDOUMBiPT3cxQgpTi3E3b14z55SV6KZ0u2V1YnpsO")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qE")]]=ThroitCheats_IllllllIlllIl[#("vkY")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4D")]]=ThroitCheats_IllllllIlllIl[#("71h")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("iZ")]]=ThroitCheats_IllllllIlllIl[#("pWB")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dO")]]=ThroitCheats_IllllllIlllIl[#("PYt")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uo")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{896;849;249;60};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("XP")]]=ThroitCheats_IllllllIlllIl[#{{311;993;110;759};{873;121;733;470};"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("Ot")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("6DL")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_lIllIIllIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}];local ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl]local ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+2];if(ThroitCheats_lIlIIlllllIlIlIlIlIII>0)then if(ThroitCheats_lIIlllIIIIllllIlll>ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("9PO")];else ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end elseif(ThroitCheats_lIIlllIIIIllllIlll<ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+1])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("K3J")];else ThroitCheats_IIllllIllII[ThroitCheats_lIllIIllIl+3]=ThroitCheats_lIIlllIIIIllllIlll;end end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("fJ8sJkkIHsPXkuIoYQSxTjdmbXuz44OkpMVvAMxHKycHlISBsKzKKqQ6FWqWZWNMOEIIJmYmslWugHaEe4guGe")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("86Z1OuLRYVB2Raj1gVmqzFu08WXR5QsfK3JMUvk1SE7KPOtE5c9KtXkEL922I3WiCvsXBIgUKuJ5HVkuCtW2Q")then if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{47;537;279;304};}]]~=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lJVq")]])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}];end;else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6p")]]=ThroitCheats_IllllllIlllIl[#("2Uk")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("WWSfaVDstYRZhtuGcx5o98op70YIAnh4DTKHevHvrqbUoRN096qz6BTXHDhk753fRXvyUYBRZK7T7Fapm7ID7S7")then local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("c5")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nx3")]][ThroitCheats_IllllllIlllIl[#("pNiC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("JF")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("x57")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("tptT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0x")]]=ThroitCheats_IllllllIlllIl[#("qUn")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("rB")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("5iq")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("qaQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("b7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("zE")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("h30")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PX")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("pnR")];end;else do return end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#{{807;194;393;925};{517;230;838;837};{804;64;139;250};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{645;302;690;274};{530;710;806;155};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{681;529;543;915};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{443;628;790;444};{705;480;771;106};{471;544;81;481};"1 + 1 = 111";{767;419;702;183};{279;859;8;187};{530;656;521;903};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{744;741;265;133};{390;99;955;593};"1 + 1 = 111";"1 + 1 = 111";{584;945;109;862};{356;396;648;6};{309;52;233;53};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{433;685;958;316};"1 + 1 = 111";"1 + 1 = 111";{793;298;960;835};{442;714;581;288};{201;90;147;305};"1 + 1 = 111";{432;615;417;526};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{538;743;392;397};{502;440;343;467};{982;38;302;489};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{207;380;130;688};{786;773;734;542};{164;637;185;267};{57;423;988;578};"1 + 1 = 111";{642;213;911;91};{217;428;169;585};"1 + 1 = 111";"1 + 1 = 111";{302;222;343;347};{707;872;967;684};"1 + 1 = 111";"1 + 1 = 111";{154;845;868;471};"1 + 1 = 111";{774;815;864;712};"1 + 1 = 111";{108;271;146;49};{356;484;157;725};{860;81;472;168};"1 + 1 = 111";{284;276;844;753};"1 + 1 = 111";{193;493;154;519};{215;699;985;258};"1 + 1 = 111";{188;542;131;357};"1 + 1 = 111";{529;41;925;900};{529;264;133;726};{421;869;267;952};"1 + 1 = 111";{486;695;248;546};{802;864;509;194};"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";{361;319;805;615};{601;484;213;622};{414;674;740;620};}then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("8rtbASvhupyzr7FfozsFhFa7dApqOo7g5zckAYYbb3HAUOEO2fiIIKLEqx7aDeEgrrE25tQAKrEn8KmA5LyIgAIuYJ4d1YJ")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("AAiDkMTJzS7qfxFQjHe1Q5a2TidxANJVSHYJCTpt1ZiyCqpCdn3tURqEzqTbIvjWjmIIJ6oBrV90WNAD3MtlUpbbqtj")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("anVFQxopSR2h9Db8RARW0qi6c8b3kHroXcAd9EkAyjUlTmlrnct1MxuTfZDSuuelAOt7c89morzQG7m0WUPhmANBS")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("HP")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("oi")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ejm")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rt")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SBD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Cl")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("prN5")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("KSV")];elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("8kbDecfIVf2oopdhMt7OmiMM5LP799a3ovaYkWnvL8lh8IFAeeYsDdEZIAIExiJWe893po6ZgMdo6FNxfp24lRBl1k")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("aa")]]=ThroitCheats_IllllllIlllIl[#{{137;913;925;307};"1 + 1 = 111";"1 + 1 = 111";}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("AW")]]=ThroitCheats_IllllllIlllIl[#("Pgk")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("k7")]]=ThroitCheats_IllllllIlllIl[#("uRP")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("sx")]]=ThroitCheats_IllllllIlllIl[#("eKQ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eg")]]=ThroitCheats_IllllllIlllIl[#("GhN")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Dl")]]=ThroitCheats_IllllllIlllIl[#("nzR")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("9q")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("I8V")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("7G")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("QS4")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("Sbit")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("au")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WI")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("oM3")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{390;242;909;36};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Nag")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("ya")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("8tns")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("dFn")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("VoT8DzAc9JLjZi8l09o3cWkyhpOKyIXbf8lLxOKZHDOYEgcWmFLlNrn8dv1nVZOCVKe17yZmAzvJix3bm2y27LzYUmHbW")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("eSYlc4blZYQyWn5O0RC0a2BWFkkqhU1XAdtOV6t89bdKlJZk2fvZJ6vmqbR2UVde728T3r34yE09Y1L6u9yczcoDRhxT")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Z8")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ftl")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("YE")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("En")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Vic")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6k")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eM0")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{{50;157;590;523};{19;478;936;824};}]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("5Xj1")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Vjr")];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7C")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vQH")]]+ThroitCheats_IllllllIlllIl[#("CvP1")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("Coo79NsKgrLlCCfgxyABVHUybQ5OGbW4kP6oMbZosvoSW07LjxuT7rE4E15tROeeFRaWF0EuJkiArcLlSuFjQc62kbUVgG")then local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gd")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("XfN")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("CA")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("QbR")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("s2q3")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("yz")]]=ThroitCheats_IllllllIlllIl[#("aEf")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("oY")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("l5M")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PQ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("WMT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("yN")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PBF")]][ThroitCheats_IllllllIlllIl[#("gr4X")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Xk")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WM3")]][ThroitCheats_IllllllIlllIl[#("jACj")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];for ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("ND")],ThroitCheats_IllllllIlllIl[#("SAX")]do ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=nil;end;ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8e")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("8K9")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("t4")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("RTC")]][ThroitCheats_IllllllIlllIl[#("5AZv")]];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5H")]]=ThroitCheats_IllllllIlllIl[#("CHC")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tr")]]=ThroitCheats_IllllllIlllIl[#("Ggf")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Cx")]]=ThroitCheats_IllllllIlllIl[#("He4")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qA")]]=ThroitCheats_IllllllIlllIl[#("798")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("KaQ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Vq")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{201;889;371;387};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("5F")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("QTV")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("OqjmfZkfs2akWjeMCpULxj5yCUhLEgTodOEihZGvIolqQ2kTgzrFv4jEuVUuRJLliVhhP5FNUzci8OSKJzFfYo3iFaYxekO9O9i")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("Ucdl4PU62bGQdkVseGx429NPhhIKVdE8GXZHvskjE6qDFhs4zv4hNncVzyeWhklYHIkquo6VunB6Skk9ZNlAjvurVdh8ozcsU")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("566cKjziWzXfdome6E8WPkm3Gqg8H6lhlpondXdbaaK5EPa3VjCIt8XVUdHsdBL0nQ3Xa9bjA7VOLqz0pnmxFNXnCDD9qV8J")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4k")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6nG")]][ThroitCheats_IllllllIlllIl[#("WcYG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("iE")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{202;415;642;825};{82;938;7;170};}]][ThroitCheats_IllllllIlllIl[#("ChWC")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("95g")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("nE")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qe")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Gc6")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ps")]]();ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jv")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("GeA")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("j6")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("MNY")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PG")]]==ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xxqh")]])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("cyM")];end;else local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("Rl")]local ThroitCheats_lIllIIllIl,ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1]))ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_IlIlIIlllllIIl+ThroitCheats_IllllllIlllIl-1 local ThroitCheats_IlIlIIlllllIIl=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl,ThroitCheats_IIlIIIIlllIllIlIIlIl do ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("TSYVn3WirixmjjEPQcZnovL2QuHGb3O8mo1JKfcuBomEAbst9uKSiukyg6f2vpgzEza4r5eLaFX9ihCOcmHRs6Z1eEDO9j8liY")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1n")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("T13")]][ThroitCheats_IllllllIlllIl[#("gcuy")]];else local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Qz")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("uE4")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("nNAZ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Hb")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gk")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("I0I")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("vo")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("30x")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("n9")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{645;691;387;443};"1 + 1 = 111";}]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("3bI")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("bbybdp9SOIkp8EC0iTzfIJi0YDAL1HM1thBNPkDBsoks3nEkItZCTSCC2HnL0z0h6s50cYk8p8Wtz07K8pdIRjiLQ9Ui72L4ydvKs")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("hTi1lV6idbJOMKvsAXktkdecayx25uFxruhtz07yPI6SJspbJeNIA8DePf0YydmSHmxrCb3KZWPMgvERivt1S67s1cOt9j9Mvnlv")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("LV")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jL")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{800;507;168;632};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gV")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("tW9")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("5p")]ThroitCheats_llIIIIlllIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("bHsF")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIIIIlllIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("zZb")];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("GC")]][ThroitCheats_IllllllIlllIl[#("y2z")]]=ThroitCheats_IllllllIlllIl[#("qdVk")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("8JHkcTNt17tLiPcUuaLodAAyKLQWcq3jhVjWWQPnu9aetS0E71anKh2IjjLCc0qKejEyGp7Pvy4eAud1UlZlqPKa2LNNemkFSA9joD")then local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_lIIlllIIIIllllIlll;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xv")]]=ThroitCheats_IllllllIlllIl[#("btu")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IL")]]=ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{616;200;165;582};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fi")]]=ThroitCheats_IllllllIlllIl[#("GCf")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("3c")]]=ThroitCheats_IllllllIlllIl[#("qjX")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("KY")]]=ThroitCheats_IllllllIlllIl[#{{235;981;435;357};"1 + 1 = 111";{913;615;113;442};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xB")]]=ThroitCheats_IllllllIlllIl[#("XrD")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll=ThroitCheats_IllllllIlllIl[#("Af")];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IIllllIllII[ThroitCheats_lIIlllIIIIllllIlll];for ThroitCheats_IllllllIlllIl=ThroitCheats_lIIlllIIIIllllIlll+1,ThroitCheats_IllllllIlllIl[#("EM5")]do ThroitCheats_llIlllll(ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else local ThroitCheats_IllllllIlllIl=ThroitCheats_IllllllIlllIl[#("qS")]ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl](ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl+1])end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("R3u2mnYiZfUR0afsAKDG4MtKimAv9u3Mrnhr5XxWeDYIuFtENhKKV6eeKUT9YCjElhAN2YyMnRCCYWpN35T2Ut1ujcSley8MstvmfRLZT8veFN")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("XFgg2SrU2qeD0glI0SZiEBcHlu4iW7W0HW4R7qf4aKE6bnVTIAGvQEXxCJ4IYj84Fo6dlFKJN5i36gG8JlLvCAkd9IpzxIg0MJCXqRHc06")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("Vu3Auc68MJMDed3eNpkmfYsryPTR2OIFFRASfi4xAJEq9gxTyM4WPUO6cMbPspf8ah7xOk8FuYWGubrqraspUWZVdDQEgpdkDGp2iaen")then do return end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("zC17hLbuVxs60normtkFFyeUMcYVzir5fMut8X52Pjv3UnNrbL5R3TibxhueXq5Mey1n35sAysZvcl9yAGUXmLbxEt71C0fynTYxxzzgr")then local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("1J")]ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("ZVK")]))else local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("0M")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]][ThroitCheats_IllllllIlllIl[#("8GCD")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("SL")]]=ThroitCheats_IllllllIlllIl[#("QG6")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("G9")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fAf")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("MQ")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("Rnc")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("ca7")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Pp")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("60t")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("VG")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("1WI")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("1J")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("RvZ")]][ThroitCheats_IllllllIlllIl[#("Xitv")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("if")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("2du")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2f")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";"1 + 1 = 111";}]]+ThroitCheats_IllllllIlllIl[#("2eCy")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("PQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("KpE")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jM9C")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{674;892;235;952};"1 + 1 = 111";}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mL1")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hhK4")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Gl")]][ThroitCheats_IllllllIlllIl[#("JPQ")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ZdWR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Be")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("YSe")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ZV")]][ThroitCheats_IllllllIlllIl[#("52T")]]=ThroitCheats_IllllllIlllIl[#("crj4")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("hV")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("8A9")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WM")]][ThroitCheats_IllllllIlllIl[#("Ku9")]]=ThroitCheats_IllllllIlllIl[#("Sk6G")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cg")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("3bT")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{575;816;228;18};{960;70;777;454};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("POr")]][ThroitCheats_IllllllIlllIl[#("xbOO")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{788;368;329;441};"1 + 1 = 111";}]]=ThroitCheats_IllllllIlllIl[#("x6I")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xO")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("4r7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("p7")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{{930;920;994;545};{749;535;721;172};{734;741;276;552};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("8Uf")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("gi")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("EAu")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("qUX")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ib")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Lnx")]][ThroitCheats_IllllllIlllIl[#("7f5x")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("da")]]=ThroitCheats_IllllllIlllIl[#("60j")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Xf")]]=ThroitCheats_IllllllIlllIl[#("Byo")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("jM")]]=ThroitCheats_IllllllIlllIl[#("uC9")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("8x")]]=ThroitCheats_IllllllIlllIl[#("D8d")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("EI")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("y0P")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6d")]][ThroitCheats_IllllllIlllIl[#("5gv")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Oet8")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4J")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("shB")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("UV")]][ThroitCheats_IllllllIlllIl[#("iQQ")]]=ThroitCheats_IllllllIlllIl[#("06Il")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("qQ")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("5Af")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("z5")]][ThroitCheats_IllllllIlllIl[#("0WT")]]=ThroitCheats_IllllllIlllIl[#("UxMY")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("MH")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ghs")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("o3")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{127;227;984;410};}]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("kK")]][ThroitCheats_IllllllIlllIl[#("RnE")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("L5Hy")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("tL3W8kh6PqHhzEvEUK7C7HnChsyMbahOGRrBERuXTFlY1ftta2PZi0JWxCOPXF5Oi3MSm5acojTCvzKb8dLivsFPiFdccPanKHQ8EMhf2NK9")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("gB81MRU3Xs0y6KS289JjF2YTLIx5GpTSFIbdfkA8puWn0KHbAn4NaZMnMoqetYyIKh2zIOXYJL3kgL3abuGsvfRQ5XC03vOC7oOSSiEVBgd")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Af")]]=ThroitCheats_IllllllIlllIl[#("JnM")];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Bz")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("F41")]][ThroitCheats_IllllllIlllIl[#("8PEl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("cN")]]=ThroitCheats_IllllllIlllIl[#("7MZ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Bk")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WsU")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("ao")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{{146;300;213;429};"1 + 1 = 111";{744;815;453;317};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("heN")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("at")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("lG")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("YtZ")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("aV")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Bh5")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Wv")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("m5i")]][ThroitCheats_IllllllIlllIl[#("gE5o")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("ro")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ypt")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("dW")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4AN")]]+ThroitCheats_IllllllIlllIl[#("UizC")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("2E")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rOo")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("87kI")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Ds")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4OA")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("VNVc")]]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("4o")]][ThroitCheats_IllllllIlllIl[#("F2N")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9z0i")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{527;293;312;466};{109;490;370;772};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("KXb")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("HM")]][ThroitCheats_IllllllIlllIl[#("en2")]]=ThroitCheats_IllllllIlllIl[#{{837;341;445;280};"1 + 1 = 111";"1 + 1 = 111";{325;966;890;261};}];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Fo")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("R4B")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s9")]][ThroitCheats_IllllllIlllIl[#("jco")]]=ThroitCheats_IllllllIlllIl[#("8Khj")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("4WR")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("OP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("BUH")]][ThroitCheats_IllllllIlllIl[#("xat0")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{989;615;172;628};}]]=ThroitCheats_IllllllIlllIl[#("eSS")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5y")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("SDA")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Wi")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("rOh")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{507;96;660;674};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9H")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{{517;166;439;21};"1 + 1 = 111";}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("HXl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xi")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("my7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("5o")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("AWI")]][ThroitCheats_IllllllIlllIl[#("L7k4")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IX")]]=ThroitCheats_IllllllIlllIl[#("l5d")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fV")]]=ThroitCheats_IllllllIlllIl[#("q1g")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("BU")]]=ThroitCheats_IllllllIlllIl[#("Ffg")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{688;112;63;864};}]]=ThroitCheats_IllllllIlllIl[#("EgJ")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("sG")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#("4nz")]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("N7")]][ThroitCheats_IllllllIlllIl[#("39k")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("NV9o")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xV")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ij7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("HG")]][ThroitCheats_IllllllIlllIl[#("U0x")]]=ThroitCheats_IllllllIlllIl[#("v3BP")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Jz")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("4Rj")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WV")]][ThroitCheats_IllllllIlllIl[#("LrU")]]=ThroitCheats_IllllllIlllIl[#("RNXj")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IT")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("bHl")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("s0")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("Q73")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("A0")]][ThroitCheats_IllllllIlllIl[#{{685;61;212;544};"1 + 1 = 111";{540;247;447;126};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("mLDj")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("6Chbvpc8selEAmDUm64n6Cn17ks31U2pcrUEPAFNtQj2cjrFQTJEl0DEoqek7jhIl6CiD9eWCq4qsuZX3YnhkzdmYpozvtQjILQgSjbROXc56")then ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Lu")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("yWY")]][ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("y0br")]]];else ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Q0")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("VAr")]];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("l4Cqri69xX2ptnUPAhKUSRPSfTWHEyxipLdu7fcHnJn2nCZY68x4ulFFoTkIxAG9BT9SkASufcGjDWEO38KFaCYdgIfo4EkYdoBFDhOHqcYrPvcDoH")then if ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("zZa9955MMtDAL2Sfou9kWtdo7OGyVGN9yZV8cpCJHFbmXNmz7pXhpv2eVWbuzI0fREcWgUc83BOqr1BuBhBGSFUb7Rmqngj9P6FsLBrmmZnZSLW4")then if ThroitCheats_lIlIIlllllIlIlIlIlIII==#("R4rguxlUaYAHWVWqPMvvhU9Zns3r4tx4s5Hm22uJtJKM2QBdCJc8BJn74D2cE4ZRCGo0oKyWrXbJky6I1ZZvqyDTSJrzarezT2kvBLZ1kqRNHOX")then if(ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("xK")]]==ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Vs5t")]])then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("4AL")];end;else if not ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("WT")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Skt")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII==#("GtlOeDBedFhPr9V9SMZrnLgp98l9QZldWV3QgAupBfs5EkJkFR54ZFt5m5PgrByntd3Hgf2rrJ0hslWZzaF84roqC8DlVn8aSfMArceAYNMqOmMbj")then local ThroitCheats_IlIlllllIIIllIIIlllI;local ThroitCheats_IIlIIIIlllIllIlIIlIl;local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("mI")];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("7m4")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("bn5M")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("qa")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rG")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("DbU")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("fP")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("YT7")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("WK")]ThroitCheats_IIlIIIIlllIllIlIIlIl={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1])};ThroitCheats_IlIlllllIIIllIIIlllI=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("qJsr")]do ThroitCheats_IlIlllllIIIllIIIlllI=ThroitCheats_IlIlllllIIIllIIIlllI+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_IIlIIIIlllIllIlIIlIl[ThroitCheats_IlIlllllIIIllIIIlllI];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("q12")];else local ThroitCheats_lIlIIlllllIlIlIlIlIII;local ThroitCheats_llIlllll;local ThroitCheats_llIllIIlIIIllI,ThroitCheats_lIIllIllII;local ThroitCheats_llIIIIIIIIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{425;250;46;488};}]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("1lI")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Hn")]]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("37M")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("7W")];ThroitCheats_llIIIIIIIIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("9OD")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIIIIIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIIIIIl[ThroitCheats_IllllllIlllIl[#("ejDt")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("e1")]ThroitCheats_llIllIIlIIIllI,ThroitCheats_lIIllIllII=ThroitCheats_IlIIIIlllIIllIIIII(ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]))ThroitCheats_IIlIIIIlllIllIlIIlIl=ThroitCheats_lIIllIllII+ThroitCheats_lIlIIlllllIlIlIlIlIII-1 ThroitCheats_llIlllll=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IIlIIIIlllIllIlIIlIl do ThroitCheats_llIlllll=ThroitCheats_llIlllll+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIllIIlIIIllI[ThroitCheats_llIlllll];end;ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("9l")]ThroitCheats_llIllIIlIIIllI={ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IIlIIIIlllIllIlIIlIl))};ThroitCheats_llIlllll=0;for ThroitCheats_IllllllIlllIl=ThroitCheats_lIlIIlllllIlIlIlIlIII,ThroitCheats_IllllllIlllIl[#("TnjG")]do ThroitCheats_llIlllll=ThroitCheats_llIlllll+1;ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl]=ThroitCheats_llIllIIlIIIllI[ThroitCheats_llIlllll];end ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("5GT")];end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII<=#("Sq5zsbZMeiMRGdK0zmJvIv6fkrP7MpvBb6GSetWKLP86XhgJQYXADYrvu0obx2aZWkQKI2VfB8V2y9rdkgqXD68nOkyoeVnTPijNBGbYdR8Fdz8uIl0q")then if ThroitCheats_lIlIIlllllIlIlIlIlIII>#("mx0mC5xFHbPUbnoZPMOfCUV7EkpmcQ347hCWtA8KOtHQtUbkTG3JmliDM3TrQkC0hVX4WDGoNdBhmeOTjeDHWtRV99kARR4D2QJI6gzp9O6iUapHp9i")then if ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("69")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("Ngi")];end;else local ThroitCheats_llIIIIlllIl;local ThroitCheats_lIlIIlllllIlIlIlIlIII;ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#{{583;409;110;705};"1 + 1 = 111";}];ThroitCheats_llIIIIlllIl=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("IvS")]];ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII+1]=ThroitCheats_llIIIIlllIl;ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_llIIIIlllIl[ThroitCheats_IllllllIlllIl[#("aFa9")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("6c")]]=ThroitCheats_IllllllIlllIl[#("cCx")];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIlIIlllllIlIlIlIlIII=ThroitCheats_IllllllIlllIl[#("Qi")]ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII]=ThroitCheats_IIllllIllII[ThroitCheats_lIlIIlllllIlIlIlIlIII](ThroitCheats_IlIlllllIIIllIIIlllI(ThroitCheats_IIllllIllII,ThroitCheats_lIlIIlllllIlIlIlIlIII+1,ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";{891;979;954;495};{496;444;525;480};}]))ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#{"1 + 1 = 111";"1 + 1 = 111";{228;970;633;356};}]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("rG")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("A3")]]=ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("Ml3")]];ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;ThroitCheats_IllllllIlllIl=ThroitCheats_lIllIIllIl[ThroitCheats_IlIlIIlllllIIl];if ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("Nk")]]then ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;else ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("LTM")];end;end;elseif ThroitCheats_lIlIIlllllIlIlIlIlIII>#("R5dYdc5WsgH6j8pHGfXcQnHiyJb8UNjSJsV6MUE4lM73ha9VUTbjlf5Ez5BFb6cP6Zy0nt4VL30dpObxJpnbMaGDxqIRt93oKr7rNiIBYpJsp2oU4d6VT")then local ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IllllllIlllIl[#("eo")];local ThroitCheats_lIllIIllIl=ThroitCheats_IIllllIllII[ThroitCheats_IlIlIIlllllIIl];for ThroitCheats_IllllllIlllIl=ThroitCheats_IlIlIIlllllIIl+1,ThroitCheats_IllllllIlllIl[#("JhB")]do ThroitCheats_llIlllll(ThroitCheats_lIllIIllIl,ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl])end;else ThroitCheats_lIIlllIIIIllllIlll[ThroitCheats_IllllllIlllIl[#("9B7")]]=ThroitCheats_IIllllIllII[ThroitCheats_IllllllIlllIl[#("eo")]];end;ThroitCheats_IlIlIIlllllIIl=ThroitCheats_IlIlIIlllllIIl+1;end;end;A,B=ThroitCheats_IIIIIlllIIIIl(ThroitCheats_lIIlIIlIIIllIIllll(ThroitCheats_lIIIIlIIlllIllIlllIlIl))if not A[1]then local ThroitCheats_IllllllIlllIl=ThroitCheats_IlIIIIlllIIllIIIII[4][ThroitCheats_IlIlIIlllllIIl]or'?';error('ERROR IN IRONBREW SCRIPT [LINE '..ThroitCheats_IllllllIlllIl..']:'..A[2]);wait(9e9);else return ThroitCheats_IlIlllllIIIllIIIlllI(A,2,B);end;end);end;return ThroitCheats_lIIllIllII(true,{},ThroitCheats_lIIIIlIIlllIllIlllIlIl())();end)(string.byte,table.insert,setmetatable);
|
-- Copyright (C) Mashape, Inc.
local BasePlugin = require "kong.plugins.base_plugin"
local access = require "kong.plugins.rate-limiting.access"
local RateLimitingHandler = BasePlugin:extend()
function RateLimitingHandler:new()
RateLimitingHandler.super.new(self, "rate-limiting")
end
function RateLimitingHandler:access(conf)
RateLimitingHandler.super.access(self)
access.execute(conf)
end
RateLimitingHandler.PRIORITY = 900
return RateLimitingHandler
|
--Banner and song info that shows before the gameplay starts.
--SongStartingMessageCommand is sent from progressbar.lua
local bannerWidth = 256
local bannerHeight = 80
local borderWidth = 5
local t = Def.ActorFrame{
InitCommand = function(self)
self:xy(SCREEN_CENTER_X,SCREEN_CENTER_Y)
self:diffusealpha(0)
end;
CurrentSongChangedMessageCommand = function(self)
self:easeOut(1)
self:diffusealpha(0.8)
self:xy(SCREEN_CENTER_X,SCREEN_CENTER_Y-30)
end;
SongStartingMessageCommand = function(self)
self:stoptweening()
self:bouncyOut(0.7)
self:zoomy(0.5):zoomx(0.5)
self:diffusealpha(0)
end
}
t[#t+1] = Def.Quad{
InitCommand = function(self)
self:y(15)
self:zoomto(bannerWidth+borderWidth*2+8,bannerHeight+borderWidth*2+38)
self:diffuse(color("#000000"))
self:diffusealpha(0)
end;
CurrentSongChangedMessageCommand = function(self)
self:diffuse(getDifficultyColor(GAMESTATE:GetHardestStepsDifficulty()))
end;
};
t[#t+1] = Def.Quad{
InitCommand = function(self)
self:y(15)
self:zoomto(bannerWidth+borderWidth*2,bannerHeight+borderWidth*2+30)
self:diffuse(getMainColor("frame"))
self:diffusealpha(0.8)
end;
}
t[#t+1] = Def.Banner{
CurrentSongChangedMessageCommand = function(self)
local song = GAMESTATE:GetCurrentSong()
if song then
self:LoadFromSong(song)
end
self:scaletoclipped(bannerWidth,bannerHeight)
end;
}
t[#t+1] = LoadFont("Common Normal") .. {
InitCommand = function(self)
self:y(50)
self:zoom(0.6)
self:diffusealpha(1)
self:maxwidth(bannerWidth/0.6)
end;
CurrentSongChangedMessageCommand = function(self)
self:settext(GAMESTATE:GetCurrentSong():GetDisplayMainTitle())
end;
}
t[#t+1] = LoadFont("Common Normal") .. {
InitCommand = function(self)
self:y(65)
self:zoom(0.4)
self:diffusealpha(1)
self:maxwidth(bannerWidth/0.4)
end;
CurrentSongChangedMessageCommand = function(self)
self:settext(GAMESTATE:GetCurrentSong():GetDisplayArtist())
end;
}
return t |
if SERVER then
AddCSLuaFile()
end
ENT.Type = "anim"
ENT.Base = "base_anim"
ENT.WorldModel = Model("models/weapons/w_knife_t.mdl")
ENT.ViewModel = Model("models/weapons/v_knife_t.mdl")
-- ENT.Model = Model("models/dav0r/hoverball.mdl")
ENT.Material = Material("models/props_combine/portalball001_sheet.vmt")
function ENT:Initialize()
self:SetModel( self.WorldModel )
if SERVER then
self:SetMaterial( self.Material )
self:SetCustomCollisionCheck(true)
-- self:PhysicsInit(SOLID_BBOX)
self:PhysicsInitBox( Vector(-16,-16,-16), Vector(16,16,16) )
self:SetCollisionGroup(COLLISION_GROUP_WEAPON)
self:SetMoveType(MOVETYPE_VPHYSICS)
self:SetTrigger(true)
self:DrawShadow(false)
self:SetNotSolid(false)
self:SetNoDraw(false)
self:SetGravity(1.0)
self.Phys = self:GetPhysicsObject()
/*if IsValid(self.Phys) then
self.Phys:EnableGravity( false )
self.Phys:Sleep()
end*/
end
end
if SERVER then
function ENT:KeyValue( key, value )
self:StoreOutput( key, value )
end
function ENT:Think()
local ply = self:GetOwner()
if IsValid(ply) then
-- Drop if player is dead or teams have changed
if !ply:Alive() or ply:Team() != self.TeamOnPickup then
ply:DropPickupEntity()
end
else
if IsValid(self:GetParent()) then
self:SetParent(NULL)
end
end
end
function ENT:Use(ent)
if !IsValid(self:GetOwner()) or ent != self:GetOwner() then return false end
return true
end
function ENT:StartTouch( ent )
-- Check pickup delay
if self.NextPickup and self.NextPickup > CurTime() then return end
-- Make sure we don't already have an owner and that the entity is a player
if IsValid(self:GetOwner()) or !IsValid(ent) or !ent:IsPlayer() then return end
-- Check if the player can pickup an entity
if !ent:CanPickupEntity() then return end
-- Reset properties
-- self:SetNoDraw(true)
-- Disable gravity and collisions
if IsValid(self.Phys) then
self.Phys:EnableCollisions( false )
self.Phys:EnableGravity( false )
end
self:TriggerOutput( "OnPlayerPickup", ent )
/*-- Set offset
local boneId = ent:LookupBone("ValveBiped.Bip01_Pelvis")
local bonePos, boneAng = ent:GetBonePosition(boneId)
self:SetPos( ent:GetPos() + Vector(0,0,32) )
self:SetAngles( ent:GetAngles() )
self:FollowBone( ent, boneId )
self:SetLocalPos( Vector( 0, 0, 0 ) )
self:SetLocalAngles( Angle( 0, 0, 0 ) )*/
/*self:SetPos( ent:GetPos() + Vector( 0, 0, 36 ) ) -- half of player hull height
self:SetAngles( ent:GetAngles() )
self:FollowBone( ent, 0 )*/
-- self:FollowEntity( ent, true )
self:Equip( ent )
ent:SetPickupEntity(self)
end
function ENT:Equip( ply )
self:SetAbsVelocity( vector_origin )
-- self:SetTrigger( false )
self:FollowEntity( ply )
self:SetOwner( ply )
self:RemoveEffects( EF_ITEM_BLINK )
local boneId = ply:LookupBone("ValveBiped.Bip01_Pelvis")
local bonePos, boneAng = ply:GetBonePosition(boneId)
local offset = boneAng:Right():GetNormal() * 32
self:SetPos( bonePos - offset )
self:SetAngles( boneAng )
self:FollowBone( ply, 1 )
end
function ENT:OnDrop()
self.LastOwner = self:GetOwner()
self.NextPickup = CurTime() + 0.8
-- Reset properties
self:StopFollowingEntity()
self:SetMoveType( MOVETYPE_VPHYSICS )
-- self:SetNoDraw( false )
-- Set position
local vThrowPos = self.LastOwner:GetShootPos() - Vector(0,0,12)
self:SetPos( vThrowPos )
self:SetAngles( self.LastOwner:GetAngles() )
-- Wake physics
/*if IsValid(self.Phys) then
self.Phys:EnableCollisions( true )
self.Phys:EnableGravity( true )
self.Phys:Wake()
-- Apply Velocity
local EyeAng = self.LastOwner:EyeAngles()
EyeAng = Angle( EyeAng.p, EyeAng.y, 0 )
self.Phys:SetVelocity( EyeAng:Forward() * 400 )
end*/
end
function ENT:OnRemove()
if IsValid(self:GetOwner()) then
self:GetOwner():DropPickupEntity()
end
end
end |
me = game.Players.yfc
limbs = {"Right Arm", "Left Arm", "Right Leg", "Left Leg", "Head", "Torso"}
sc = Instance.new("ScreenGui")
sc.Parent = me.PlayerGui
sc.Name = "Break"
txt = Instance.new("TextButton")
txt.Parent = sc
txt.Position = UDim2.new(0,10,0,200)
txt.Text = "Fire Rage"
txt.Size = UDim2.new(0,100,0,40)
txt.TextColor = BrickColor.new("Lime green")
txt.BorderColor = BrickColor.new("Lime green")
txt.BackgroundColor = BrickColor.new("Really black")
function click()
txt:Remove()
if me.Character.Humanoid.Health == 0 then
me.Character.Torso:Remove()
end
me.Character.Humanoid.WalkSpeed = 35
local meh = me.Character:GetChildren()
for i=1, #meh do
for _,v in pairs(limbs) do
if meh[i].Name:lower() == v:lower() then
local fi2 = Instance.new("Fire")
fi2.Parent = meh[i]
fi2.Heat = 10
fi2.Color = Color3.new(1,0,1)
fi2.SecondaryColor = Color3.new(0.6,0.1,0)
if meh[i].Name == "Torso" then
function onTouched(part)
local h = part
if h~=nil then
if (h.Name ~= "Base") and (h.Name ~= "Baseplate") then
hint = Instance.new("Hint")
hint.Parent = Workspace
hint.Text = (""..h.Name)
end
end
end
meh[i].Touched:connect(onTouched)
end
end
end
end
end
txt.MouseButton1Down:connect(click) |
local g_Root = getRootElement()
local DM_VEHICLES = {
[425] = true, -- Hunter
[520] = true, -- Hydra
[464] = true, -- RC Baron
}
-- Pickups CLASS
Pickups = {}
addEvent("race_onPlayerPickup", true)
function Pickups:onMapStart()
local pickups = getRoomMapElements(self.game.room, "racepickup")
self.map = {}
for i, pickup in ipairs(pickups) do
if(pickup.id and pickup.type) then
pickup.vehicle = tonumber(pickup.vehicle)
self.map[pickup.id] = pickup
end
end
end
function Pickups:onMapStop()
self.map = {}
end
function Pickups:onPlayerPickup(player, id)
if(not player.alive) then return end
local pickup = self.map[id]
if(not pickup) then return end
local veh = player:getVehicle()
if(not veh) then return end
playSoundFrontEnd(player.el,46)
if(pickup.type == "nitro") then
removeVehicleUpgrade(veh, 1010)
addVehicleUpgrade(veh, 1010)
elseif(pickup.type == "repair") then
fixVehicle(veh)
elseif(pickup.type == "vehiclechange" and pickup.vehicle) then
setElementModel(veh, pickup.vehicle)
if(self.game.isDM and DM_VEHICLES[pickup.vehicle]) then
self.game:onPlayerFinish(player)
end
end
end
function Pickups:destroy()
self.map = {}
self.game = false
end
function Pickups.create(game)
local self = setmetatable({}, Pickups.__mt)
self.game = game
return self
end
Pickups.__mt = {__index = Pickups}
addEventHandler("race_onPlayerPickup", g_Root, function(id)
local player = Player.elMap[source]
local game = player and player.game
if(not game) then return end
game.pickups:onPlayerPickup(player, id)
end)
|
--- === plugins.core.audioswift.prefs ===
---
--- AudioSwift Preferences Panel
local require = require
--local log = require "hs.logger".new "audioSwift"
local image = require "hs.image"
local i18n = require "cp.i18n"
local imageFromPath = image.imageFromPath
local execute = _G.hs.execute
local mod = {}
local plugin = {
id = "core.audioswift.prefs",
group = "core",
dependencies = {
["core.controlsurfaces.manager"] = "manager",
}
}
function plugin.init(deps, env)
--------------------------------------------------------------------------------
-- Inter-plugin Connectivity:
--------------------------------------------------------------------------------
mod._manager = deps.manager
--------------------------------------------------------------------------------
-- Setup Preferences Panel:
--------------------------------------------------------------------------------
mod._panel = deps.manager.addPanel({
priority = 9000,
id = "audioswift",
label = i18n("audioSwift"),
image = imageFromPath(env:pathToAbsolute("/images/AudioSwift.icns")),
tooltip = i18n("audioSwift"),
height = 270,
})
:addHeading(1, i18n("audioSwift"))
:addContent(2, [[<p style="padding-left:20px;">]] .. i18n("audioSwiftDescriptionOne") .. [[<br />
<br />
]] .. i18n("audioSwiftDescriptionTwo") .. [[<br />
<br />
]] .. i18n("audioSwiftDescriptionThree") .. [[</p>]], false)
:addButton(3,
{
label = i18n("downloadAudioSwift"),
width = 240,
onclick = function() execute([[open https://audioswiftapp.com]]) end,
}
)
return mod
end
return plugin |
object_tangible_component_armor_armor_segment_enhancement_battle = object_tangible_component_armor_shared_armor_segment_enhancement_battle:new {
}
ObjectTemplates:addTemplate(object_tangible_component_armor_armor_segment_enhancement_battle, "object/tangible/component/armor/armor_segment_enhancement_battle.iff")
|
data:extend({
{
type = "technology",
name = "tech-fullspeed-fe-productivity-module-1",
icon_size = 128,
icons = {{icon = "__built-in-beacons-fe-plus__/graphics/technology/tech1.png"}},
effects = {
{ type = "unlock-recipe", recipe = "beaconed-fe-assembling-machine-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-furnace-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-mining-drill-1" },
{ type = "unlock-recipe", recipe = "fullspeed-productivity-module-4" },
{ type = "unlock-recipe", recipe = "beaconed-fe-lab-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-pumpjack-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-oil-refinery-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-chemical-plant-1" },
{ type = "unlock-recipe", recipe = "beaconed-fe-centrifuge-1" }
},
unit =
{
count = 800,
ingredients = {
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"production-science-pack", 1},
{"utility-science-pack", 1}
},
time = 30
},
prerequisites = {"effect-transmission-mk3", "speed-module-4", "mechanical-engineer-2"}
},
{
type = "technology",
name = "tech-fullspeed-fe-productivity-module-2",
icon_size = 128,
icons = {{icon = "__built-in-beacons-fe-plus__/graphics/technology/tech2.png"}},
effects = {
{ type = "unlock-recipe", recipe = "beaconed-fe-assembling-machine-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-furnace-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-mining-drill-2" },
{ type = "unlock-recipe", recipe = "fullspeed-productivity-module-5" },
{ type = "unlock-recipe", recipe = "beaconed-fe-lab-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-pumpjack-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-oil-refinery-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-chemical-plant-2" },
{ type = "unlock-recipe", recipe = "beaconed-fe-centrifuge-2" }
},
unit =
{
count = 1000,
ingredients = {
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"production-science-pack", 1},
{"utility-science-pack", 1}
},
time = 30
},
prerequisites = {"effect-transmission-mk3", "speed-module-5", "tech-fullspeed-fe-productivity-module-1"}
},
{
type = "technology",
name = "tech-fullspeed-fe-productivity-module-3",
icon_size = 128,
icons = {{icon = "__built-in-beacons-fe-plus__/graphics/technology/tech3.png"}},
effects = {
{ type = "unlock-recipe", recipe = "beaconed-fe-assembling-machine-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-assembling-machine-4" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-furnace-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-electric-mining-drill-3" },
{ type = "unlock-recipe", recipe = "fullspeed-productivity-module-6" },
{ type = "unlock-recipe", recipe = "beaconed-fe-lab-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-pumpjack-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-oil-refinery-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-chemical-plant-3" },
{ type = "unlock-recipe", recipe = "beaconed-fe-centrifuge-3" }
},
unit =
{
count = 1200,
ingredients = {
{"automation-science-pack", 1},
{"logistic-science-pack", 1},
{"chemical-science-pack", 1},
{"production-science-pack", 1},
{"utility-science-pack", 1}
},
time = 30
},
prerequisites = {"effect-transmission-mk3", "speed-module-6", "tech-fullspeed-fe-productivity-module-2"}
}
}) |
local net = net
local snet = slib.Components.Network
local LocalPlayer = LocalPlayer
--
net.Receive('cl_network_rpc_success', function(len, ply)
local id = net.ReadString()
local request = snet.FindRequestById(id)
if not request then return end
request.receiver_complete_count = request.receiver_complete_count + 1
if request.func_success then
request.func_success(LocalPlayer(), request)
end
if request.receiver_complete_count >= request.receiver_count then
if request.func_complete then
request.func_complete()
end
snet.RemoveRequestById(id)
end
end)
net.Receive('cl_network_rpc_error', function(len, ply)
local id = net.ReadString()
local request = snet.FindRequestById(id)
if not request then return end
if request.func_error then
request.func_error(LocalPlayer(), request)
end
end) |
-- state table for built-in keyboard layout handling
local keyboard
local bindings
local cfg
local anchor
local actions
local input_underlay
local run_script_set
local wm
local shader_rescan
local tool_hooks = {}
local spawn_popup
-- used for hooking non-keybound inputs
local input_grab
local input_grab_ref
local function run_action(action, ...)
if type(action) == "string" then
actions(action, ...)
return true
-- handle argument expansion or table of tables to have a macro- action
elseif type(action) == "table" then
if action.group then
for _, v in ipairs(action.group) do
run_action(v)
end
else
run_action(action[1], unpack(action, 2))
end
return true
end
end
-- this ignores the normal pipeworld grab input chain
function pipeworld_popup_capture(anchor, cancel)
-- custom cursor for the current selection add a mouse grab surface
local grab = null_surface(VRESW, VRESH)
link_image(grab, anchor)
image_mask_clear(grab, MASK_POSITION)
local mh = {}
mh.name = "popup_grab"
-- remember the old input grab
local ogrb = input_grab
local oref = input_grab_ref
local restore =
function()
if valid_vid(grab) then
mouse_droplistener(mh)
delete_image(grab)
input_grab = ogrb
input_grab_ref = oref
end
end
-- click on the grab surface will trigger
mh.click = function()
cancel()
restore()
end
mh.rclick = mh.click
mh.own = function(ctx, vid)
return vid == grab
end
mouse_addlistener(mh)
order_image(grab, 65529)
show_image(grab)
-- closure to call on completion
return restore
end
function pipeworld_grab_input(ref, new_grab)
-- tries to modify grab someone else has
if input_grab_ref and input_grab_ref ~= ref then
return input_grab_ref, input_grab
end
-- mark that we are switching grab
if input_grab and new_grab ~= input_grab then
input_grab()
end
if not new_grab then
input_grab_ref = nil
input_grab = nil
else
input_grab_ref = ref
input_grab = new_grab
end
end
local recovery_row
function pipeworld_adopt(vid, kind, title, parent, last)
if kind == "unknown" then
return false
end
-- Adopt is complex as always since we want to retain row order and cell
-- position in the hierarcy, as well as reconstruct rows that has an internal
-- type, e.g. expressions. The proper tactic for that is to have a function
-- that can sweep the rows and store them as temp_row_num_type and let the
-- different cell types expose a factory string for reconstructing them.
--
-- For the time being, just take the allowed primary types and assign them
-- to a recovery row and wrap the adopt objects through a factory
if not recovery_row then
-- register our meta factory
end
end
local function setup_mouse_support()
-- add a cursor image to one of the overlay planes, fallback to a single
-- colored box if the cursor image gets broken in some way
local cursor = load_image("cursor/default.png")
if not valid_vid(cursor) then
cursor = fill_surface(8, 8, 0, 255, 0)
image_tracetag(cursor, "cursor")
end
mouse_setup(cursor, 65535, 1, true, false)
input_underlay = null_surface(VRESW, VRESH)
show_image(input_underlay)
image_tracetag(input_underlay, "input_underlay")
local ms = mouse_state()
if cfg.mouse_autohide > 0 then
ms.autohide = true
ms.hide_base = cfg.mouse_autohide
end
local rclick_consume
mouse_addlistener({
name = "underlay",
own = function(ctx, vid)
return vid == input_underlay
end,
motion = function(ctx, vid, dx, dy, x, y)
end,
drop = function(ctx)
wm.pan_block = false
wm.pan_deadline = CLOCK + 50
end,
dblclick = function(ctx)
run_action(bindings["bg_mouse_dblclick"])
end,
rclick = function(ctx)
if rclick_consume then
rclick_consume = false
return
end
run_action(bindings["bg_mouse_rclick"])
end,
drag = function(ctx, vid, dx, dy)
-- block the anchor from being dragged around when there is nothing visible
-- as that would displayce the 'click to spawn' anchor
if #wm.rows == 0 then
return
end
-- disable autopanning so it is possible to "look around" without repanning
wm.pan_block = true
local mstate = mouse_state()
local zoom = mstate.btns[MOUSE_RBUTTON]
if zoom then
rclick_consume = true
local sum = dx + dy
if sum > 0 then
run_action("/scale/row/increment", 0.01)
elseif sum < 0 then
run_action("/scale/row/decrement", 0.01)
end
wm:invalidate(true, true)
-- nudge-anchor is a tool hookable state as it might affect other on-screen items
else
wm:nudge_anchor(dx, dy)
end
end,
button =
function(ctx, vid, index, active, x, y)
if not active then
return
end
wm:drop_popup()
if index == MOUSE_WHEELPY then
run_action(bindings["bg_mouse_wheel_up"])
elseif index == MOUSE_WHEELNY then
run_action(bindings["bg_mouse_wheel_down"])
end
end,
})
end
local function nudge_anchor(wm, dx, dy)
for _, v in ipairs(tool_hooks) do
v(wm, "pan", dx, dy)
end
end
function pipeworld(args)
system_load("builtin/string.lua")()
system_load("builtin/table.lua")()
keyboard, bindings = system_load("bindings.lua")()
mouse = system_load("builtin/mouse.lua")()
suppl = system_load("suppl.lua")() -- string/table helpers
cfg = system_load("config.lua")() -- visual/wm preferences
system_load("timer.lua")() -- hooks for adding _clock_pulse timers
system_load("fsrv.lua")() -- default dispatch handler used by cells
spawn_popup = system_load("ui/popup.lua")()
-- only partially continue long enough for a somewhat clean exit
if not keyboard.version or keyboard.version < 1 then
warning("old builtin/keyboard.lua - need newer upstream arcan")
pipeworld_tick = nil
shutdown("arcan version too old", EXIT_FAILURE)
end
setup_mouse_support()
-- expose possible handlers for wm invalidation
cfg.on_wm_dirty = {}
cfg.input_grab = pipeworld_grab_input
cfg.popup_grab = pipeworld_popup_capture
cfg.keyboard = keyboard
-- wallpaper / flair tools need this information
anchor = null_surface(1, 1)
cfg.world_anchor = anchor
pipeworld_shader_setup, shader_rescan = system_load("shaders/shader.lua")()
-- separate anchor and background so we can have a wallpaper that doesn't pan
-- or use different inputs to control its panning
show_image(anchor)
order_image(anchor, 2)
image_tracetag(anchor, "grid_anchor")
image_mask_set(anchor, MASK_UNPICKABLE)
-- tie the anchor to a new window manager, load it and populate with
-- cell types, registering them as part of the wm
wm = system_load("cellmgmt.lua")()(anchor, cfg)
wm.run_action =
function(...)
run_action(wm, ...)
end
wm.action_bindings =
function(wm, path)
run_action(bindings[path])
end
-- always run with a color, config can allow something more refined
image_color(WORLDID, unpack(cfg.colors.background))
cfg.wallpaper = system_load("wallpaper.lua")()(cfg)
show_image(cfg.wallpaper)
-- and a set of preset paths into the wm that the keybindings attach to
cfg.actions = system_load("commands.lua")()(wm)
actions = cfg.actions
-- extensions that don't fit well with the cell api model
for i,v in ipairs(glob_resource("tools/*.lua")) do
local name = string.sub(v, 1, -5)
if not table.find_i(cfg.blocked_tools, name) then
local fact = system_load("tools/" .. v, false)
if not fact then
warning("parsing error loading " .. v)
else
local ok, msg = pcall(fact(), wm, cfg)
if not ok then
warning("error loading tool " .. v .. ":" .. msg)
elseif type(msg) == "function" then
table.insert(tool_hooks, msg)
end
end
end
end
-- we hook this to let tools react when auto-panning modifies the anchor
local old_nudge = wm.nudge_anchor
wm.nudge_anchor =
function(wm, dx, dy, ...)
nudge_anchor(wm, dx, dy)
old_nudge(wm, dx, dy, ...)
end
if #args > 0 then
run_script_set(args, "scripts/")
else
run_script_set({"autorun.lua"}, "scripts/")
end
-- now activate tools as we have the wm
for _, v in ipairs(tool_hooks) do
v(wm, "create")
end
wm:nudge_anchor(10, 10)
end
function pipeworld_get_symtable()
return keyboard
end
local function process_keybind(iotbl)
local sym = keyboard[iotbl.keysym]
if not sym then
return false
end
-- first check if any of our designated modifier meta keys are being held
-- this is the spot to also add other possible tactics like 'chords' and
-- resolve those to m1/m2 or some other prefix and then 'drop on consume'
local m1 = false
local m2 = false
for _,v in ipairs(decode_modifiers(iotbl.modifiers)) do
if v == bindings["meta_1"] then
m1 = true
elseif v == bindings["meta_2"] then
m2 = true
end
end
if not m1 and not m2 then
return false
end
local modstr
if m1 and m2 then
modstr = "m1_m2_"
elseif m2 then
modstr = "m2_"
else
modstr = "m1_"
end
-- might want to trigger on both rising and falling edge
if iotbl.active then
modstr = modstr .. sym
else
modstr = modstr .. "release_" .. sym
end
if not bindings[modstr] then
return false
end
-- regardless of the action, consume the keypress
run_action(bindings[modstr])
return true
end
local label_hooks = {
analog = {},
digital = {},
}
function pipeworld_input_hook_label(label, datatype, handler)
label_hooks[datatype][label] = handler
end
local device_hooks = {}
local devhandlers = {}
function pipeworld_input_hook_device(devlbl, handler, soft)
if soft and devhandlers[devlbl] then
return
end
devhandlers[devlbl] = handler
end
function pipeworld_input(iotbl)
if mouse_iotbl_input(iotbl) then
return
end
-- device added / removed?
if iotbl.kind == "status" then
if iotbl.action == "added" then
local lh = devhandlers[iotbl.extlabel]
if lh then
devhandlers[iotbl.devid] = lh
end
end
return
end
-- check label hooks
if iotbl.label then
local hook
if iotbl.analog then
hook = label_hooks.analog[iotbl.label]
elseif iotbl.digital then
hook = label_hooks.digital[iotbl.label]
end
if hook then
hook(wm, cfg, iotbl)
return
end
end
-- check registered devices
local dh = devhandlers[iotbl.devid]
if not dh and iotbl.analog then
dh = devhandlers["analog"]
end
if dh then
if dh(wm, cfg, iotbl) then
return
end
end
-- only keyboard input from now on, still allow a 'default analog'
if not iotbl.translated then
return
end
-- translate / resolve and forward to active cell, also handles meta-held
local sym, lutsym, consumed = keyboard:patch(iotbl)
if consumed then
return
end
if process_keybind(iotbl) then
return
end
if input_grab then
input_grab(iotbl, sym, lutsym)
end
end
function pipeworld_clock_pulse()
mouse_tick(1)
-- enact repeat-rate
local tbl = keyboard:tick()
if tbl then
for _, v in ipairs(tbl) do
pipeworld_input(v)
end
end
run_action("/tick")
end
function pipeworld_postframe_pulse()
end
-- a number of sources should be linked to the outgoing display size
function pipeworld_display_state(status)
if valid_vid(cfg.wallpaper) then
if cfg.wallpaper_update then
cfg.wallpaper_update(cfg.wallpaper, cfg, VRESW, VRESH)
end
end
resize_video_canvas(VRESW, VRESH)
resize_image(input_underlay, VRESW, VRESH)
-- also specify that the world density has changed
rendertarget_reconfigure(WORLDID, VPPCM, HPPCM)
wm:resize(VRESW, VRESH)
-- some shaders need to reload defaults as well
mouse_querytarget(WORLDID)
shader_rescan(
function(name, key, value, shtbl)
local shdr = cfg.shader_overrides[name]
if shdr and shdr[key] then
return shdr[key]
end
return value
end)
-- and some tools might need to rebuild
for _, v in ipairs(tool_hooks) do
v(wm, "resize", VRESW, VRESH)
end
end
function pipeworld_popup_spawn(menu, nograb, spawn_anchor, anchor_p, opts)
if not menu or #menu == 0 then
return
end
local popup_config =
{
animation_in = 15,
animation_out = 10,
interp = cfg.animation_tween,
text_valid = cfg.popup_text_valid,
text_invalid = cfg.popup_text_invalid,
border_attach =
function(tbl, anchor)
local mx, my = mouse_xy()
order_image(anchor, 65530)
if valid_vid(spawn_anchor) then
link_image(anchor, spawn_anchor, anchor_p)
else
move_image(anchor, mx, my)
end
-- all colors are set in the shader
if valid_vid(tbl.outline) then
delete_image(tbl.outline)
end
local surf = color_surface(8, 8, 0, 0, 0)
link_image(surf, anchor)
link_image(surf, anchor, ANCHOR_UL, ANCHOR_SCALE_WH)
image_inherit_order(surf, true)
resize_image(surf, 6, 6)
move_image(surf, -3, -3)
show_image(surf)
tbl.outline = surf
if tbl.options.inv_y then
move_image(anchor, 0, -tbl.max_h + tbl.options.inv_y)
end
pipeworld_shader_setup(surf, "ui", "popup", "active")
image_mask_set(surf, MASK_UNPICKABLE)
end
}
opts = opts and opts or {}
table.ensure_defaults(opts, popup_config)
local pop = spawn_popup(menu, opts)
-- we want to use this code for some other things as well, mainly
-- autocompletion hints and then it makes sense to not have a universal grab
if nograb then
return pop
end
local grab_closure =
pipeworld_popup_capture(
pop.anchor,
function()
pop:cancel()
end
)
-- set a handler that both triggers the closure and dispatches the command
pop.options.on_finish =
function(ctx, item)
grab_closure()
if not item then
return
end
if item.handler then
item.handler()
elseif item.command then
run_action(item.command)
end
end
-- input grab is saved, so just replace it with this one that forwards to
-- our popup handler so that navigation works with keyboard as well
input_grab =
function(iotbl, sym, lutsym)
if not iotbl or not iotbl.active then
return
end
if sym == "UP" then
pop:step_up()
elseif sym == "DOWN" then
pop:step_down()
elseif sym == "ESCAPE" then
pop:cancel()
elseif sym == "RIGHT" or sym == "ENTER" or sym == "RETURN" or sym == "SPACE" then
pop:trigger()
end
end
return pop
end
run_script_set =
function(set, prefix)
local okset = {}
for _, v in ipairs(set) do
if not resource(prefix .. v) then
warning(string.format("missing script (%s%s)", prefix, v))
else
table.insert(okset, v)
end
end
for _, v in ipairs(okset) do
local script = system_load(prefix .. v, true)
if script then
local okstate, msg = pcall(script)
if not okstate then
warning(string.format(
"failed to load/parse (%s) : %s", okstate, msg))
elseif type(msg) ~= "table" then
warning(string.format(
"(%s) : returned wrong type (table of commands expected)", okstate, msg))
else
for _, line in ipairs(msg) do
run_action(line)
end
end
end
end
end
|
local tau = 2*math.pi
return tau |
--状态显示条
stateBar={}
function stateBar:new(x,y,w,h,string,maxData,nowData,r,g,b,a)
local newStateBar={
X=x,Y=y,W=w,H=h,S=string,ima=love.graphics.newImage("rawResource/stateBar.BMP"),
R=r,G=g,B=b,A=a,--Color
max=maxData,
now=nowData,
}
setmetatable(newStateBar,self)
self.__index=self
return newStateBar
end
function stateBar:outCamreaUpdate(d)
self.now=self.now+d-- body
end
--绘制状态条
function stateBar:draw()
love.graphics.draw(self.ima,self.X,self.Y)
local r,g,b,a=love.graphics.getColor()
love.graphics.setColor(self.R,self.G,self.B,self.A)
love.graphics.rectangle("fill",self.X+13,self.Y+11,(self.W-20)*self.now/self.max-5,self.H-20-3)
love.graphics.setColor(255,255,255,255)
love.graphics.print(self.S..':',self.X-30,self.Y)
love.graphics.print(self.now..'/'..self.max,self.X-60,self.Y+15)
love.graphics.setColor(r,g,b,a)
end
--状态条注册
function stateBar:inCameraRegist(x,y)
if self.id==nil then
table.insert(uiManager.inCamera.stateBar,self)
self.id=#uiManager.inCamera.stateBar
else
uiManager.inCamera.stateBar[self.id]=self
end
end
function stateBar:inCameraUnRegist()
uiManager.inCamera.stateBar[self.id]=nil
end
function stateBar:outCameraRegist(x,y)
if self.id==nil then
table.insert(uiManager.outCamera.stateBar,self)
self.id=#uiManager.outCamera.stateBar
else
uiManager.outCamera.stateBar[self.id]=self
end
end
function stateBar:outCameraUnRegist()
uiManager.outCamera.stateBar[self.id]=nil
end
|
-----------------------------------------
-- Spell: Flurry
-----------------------------------------
require("scripts/globals/magic")
require("scripts/globals/msg")
require("scripts/globals/status")
-----------------------------------------
function onMagicCastingCheck(caster, target, spell)
return 0
end
function onSpellCast(caster, target, spell)
local duration = calculateDuration(180, spell:getSkillType(), spell:getSpellGroup(), caster, target)
duration = calculateDurationForLvl(duration, 48, target:getMainLvl())
if target:addStatusEffect(tpz.effect.FLURRY, 15, 0, duration) then
spell:setMsg(tpz.msg.basic.MAGIC_ENFEEB_IS)
else
spell:setMsg(tpz.msg.basic.MAGIC_NO_EFFECT)
end
return tpz.effect.FLURRY
end
|
require("cfg.bootstrap") -- plugins configs
require("cfg.globals") -- global configs
require("cfg.editor") -- edit configs
vim.g["python3_host_prog"]="/opt/pyenv/shims/python3"
vim.g["neomake_python_enabled_makers"]="pyright"
|
local null_ls = require("null-ls")
-- register any number of sources simultaneously
local sources = {
null_ls.builtins.formatting.prettier, null_ls.builtins.formatting.autopep8,
null_ls.builtins.formatting.black, null_ls.builtins.formatting.clang_format,
null_ls.builtins.formatting.cmake_format,
null_ls.builtins.formatting.codespell, null_ls.builtins.formatting.eslint,
null_ls.builtins.formatting.fish_indent,
null_ls.builtins.formatting.fixjson,
null_ls.builtins.formatting.google_java_format
.with({extra_args = {"--aosp"}}), null_ls.builtins.formatting.isort,
null_ls.builtins.formatting.json_tool,
null_ls.builtins.formatting.lua_format,
null_ls.builtins.formatting.latexindent,
null_ls.builtins.formatting.markdownlint,
null_ls.builtins.formatting.nginx_beautifier,
null_ls.builtins.formatting.nixfmt, null_ls.builtins.formatting.qmlformat,
null_ls.builtins.formatting.rustfmt, null_ls.builtins.formatting.rustywind,
null_ls.builtins.formatting.shellharden, null_ls.builtins.formatting.shfmt,
null_ls.builtins.formatting.sqlformat,
null_ls.builtins.formatting.stylelint, null_ls.builtins.formatting.taplo,
null_ls.builtins.formatting.trim_whitespace,
null_ls.builtins.formatting.uncrustify,
null_ls.builtins.diagnostics.standardjs,
null_ls.builtins.diagnostics.chktex, null_ls.builtins.diagnostics.stylelint,
null_ls.builtins.diagnostics.qmllint,
null_ls.builtins.diagnostics.shellcheck, null_ls.builtins.diagnostics.vint,
null_ls.builtins.diagnostics.write_good,
null_ls.builtins.diagnostics.yamllint,
null_ls.builtins.diagnostics.pylint.with({
method = null_ls.methods.DIAGNOSTICS_ON_SAVE
}), null_ls.builtins.code_actions.gitsigns,
null_ls.builtins.code_actions.refactoring,
null_ls.builtins.code_actions.shellcheck,
null_ls.builtins.code_actions.statix, null_ls.builtins.hover.dictionary,
null_ls.builtins.completion.spell, null_ls.builtins.completion.vsnip,
null_ls.builtins.completion.luasnip
}
local format_on_save = function(client)
if client.resolved_capabilities.document_formatting then
vim.cmd("autocmd BufWritePre <buffer> lua vim.lsp.buf.formatting_sync()")
end
end
local null_ls = require("null-ls")
local helpers = require("null-ls.helpers")
local markdownlint = {
method = null_ls.methods.DIAGNOSTICS,
filetypes = {"markdown"},
-- null_ls.generator creates an async source
-- that spawns the command with the given arguments and options
generator = null_ls.generator({
command = "markdownlint",
args = {"--stdin"},
to_stdin = true,
from_stderr = true,
-- choose an output format (raw, json, or line)
format = "line",
check_exit_code = function(code, stderr)
local success = code <= 1
if not success then
-- can be noisy for things that run often (e.g. diagnostics), but can
-- be useful for things that run on demand (e.g. formatting)
print(stderr)
end
return success
end,
-- use helpers to parse the output from string matchers,
-- or parse it manually with a function
on_output = helpers.diagnostics.from_patterns({
{
pattern = [[:(%d+):(%d+) [%w-/]+ (.*)]],
groups = {"row", "col", "message"}
}, {pattern = [[:(%d+) [%w-/]+ (.*)]], groups = {"row", "message"}}
})
})
}
null_ls.register(markdownlint)
-- Test
-- :echo executable("eslint") or, similar
null_ls.setup({sources = sources, on_attach = format_on_save})
|
--[[
By: AtroCty
Date: 12.05.2017
Updated: 12.05.2017
]]
modifier_imba_range_indicator = modifier_imba_range_indicator or class({})
function modifier_imba_range_indicator:IsDebuff() return false end
function modifier_imba_range_indicator:IsHidden() return true end
function modifier_imba_range_indicator:IsPurgable() return false end
function modifier_imba_range_indicator:IsPurgeException() return false end
function modifier_imba_range_indicator:IsStunDebuff() return false end
function modifier_imba_range_indicator:RemoveOnDeath() return self.bRemoveOnDeath end
-------------------------------------------
function modifier_imba_range_indicator:GetAttributes()
return MODIFIER_ATTRIBUTE_MULTIPLE
end
function modifier_imba_range_indicator:OnCreated( params )
if not IsServer() then return end
self.range_pfx = ParticleManager:CreateParticleForPlayer("particles/range_indicator.vpcf", PATTACH_ABSORIGIN_FOLLOW, self:GetParent(), self:GetCaster():GetPlayerOwner())
ParticleManager:SetParticleControl(self.range_pfx, 1, Vector(params.iRed,params.iGreen,params.iBlue))
self.hAbility = self:GetAbility()
self.iRange = params.iRange
self.bRemoveOnDeath = params.bRemoveOnDeath or true
self.sAttribute = params.sAttribute
self.bShowOnCooldown = params.bShowOnCooldown
self.bShowAlways = params.bShowAlways
self.bWithCastRangeIncrease = params.bWithCastRangeIncrease
self:StartIntervalThink(0.2)
end
function modifier_imba_range_indicator:OnIntervalThink()
if not IsServer() then return end
if not self or not self:GetAbility() or self:GetAbility():IsNull() then
self:StartIntervalThink(-1)
self:Destroy()
return
end
local caster = self:GetCaster()
if (caster:IsAlive() or (self.bShowAlways == 1)) and self.hAbility then
if (self.hAbility:IsCooldownReady() or (self.bShowOnCooldown == 1)) and (not caster.norange) then
self.iRange = self.hAbility:GetSpecialValueFor(self.sAttribute)
if self.bWithCastRangeIncrease then self.iRange = self.iRange + caster:GetCastRangeIncrease() end
ParticleManager:SetParticleControl(self.range_pfx, 3, Vector(self.iRange, 0, 0))
else
ParticleManager:SetParticleControl(self.range_pfx, 3, Vector(0, 0, 0))
end
elseif (caster:IsAlive() or (self.bShowAlways == 1)) and self.iRange and (not caster.norange) and (not self.hAbility) then
ParticleManager:SetParticleControl(self.range_pfx, 3, Vector(self.iRange, 0, 0))
end
end
function modifier_imba_range_indicator:OnDestroy()
if not IsServer() then return end
if self.range_pfx then
ParticleManager:DestroyParticle(self.range_pfx, true)
ParticleManager:ReleaseParticleIndex(self.range_pfx)
end
end
|
function lovr.load()
sbsTexture = lovr.graphics.newTexture('sbs_left_right.png', { mipmaps = false })
sbsShader = lovr.graphics.newShader([[
vec4 position(mat4 projection, mat4 transform, vec4 vertex) {
return projection * transform * vertex;
}
]], [[
uniform sampler2D tex;
vec4 color(vec4 graphicsColor, sampler2D image, vec2 uv) {
vec2 newUV = clamp(uv, 0., 1.) * vec2(.5, 1.) + vec2(lovrViewID) * vec2(.5, 0.);
// Use this instead for top-bottom stereo
// vec2 newUV = clamp(uv, 0., 1.) * vec2(1., .5) + vec2(lovrViewID) * vec2(0., .5);
return texture(tex, newUV);
}
]], {
flags = {
highp = true
}
})
lovr.graphics.setBackgroundColor(.05, .05, .05)
end
function lovr.draw()
lovr.graphics.setShader(sbsShader)
sbsShader:send('tex', sbsTexture)
lovr.graphics.plane('fill', 0, 1, -2, 2.5, 2, 0, 0, 0, 0)
end
|
ITEM.name = "Can of Water"
ITEM.model = Model("models/props_junk/popcan01a.mdl")
ITEM.description = "A blue aluminium can full of chilled water."
ITEM.category = "Consumables"
ITEM.width = 1
ITEM.height = 1
ITEM.noBusiness = false
ITEM.price = 15
ITEM.functions.Drink = {
OnRun = function(itemTable)
local client = itemTable.player
client:RestoreStamina(20)
client:SetHealth(math.Clamp(client:Health() + 5, 0, client:GetMaxHealth()))
client:EmitSound("npc/barnacle/barnacle_gulp1.wav", 75, 90, 0.35)
end
}
|
-- local dbg = require("debugger")
-- dbg.auto_where = 2
local T = require "tools"()
return function()
local function indent(line, suffix)
local suffix = suffix or ""
return string.match(line, "^%s*") .. suffix
end
local function make_return_object(opts)
return {
lines = opts.lines or {},
offset = opts.offset or 1,
col = opts.col or 999
}
end
local function complete_from_patterns(ctxt, all_patterns, alternative)
for _, current_patterns in ipairs(all_patterns) do
local fn_completer = T.access_by_match(ctxt.line, current_patterns)
if fn_completer then return fn_completer(ctxt) end
end
if alternative then return alternative(ctxt) end
end
local function complete_with_custom(line, custom, indnt)
local indnt = indnt or 2
local lines = {
line,
indent(line, string.rep(" ", indnt)),
indent(line, custom)
}
return make_return_object{ lines=lines }
end
local function complete_with_do(ctxt, indnt)
local indnt = indnt or 2
local line = string.gsub(ctxt.line, "%s+do%s*$", "")
line = string.gsub(line, "%s+$", "")
local lines = {
line .. " do",
indent(line, string.rep(" ", indnt)),
indent(line, "end")
}
return make_return_object{lines=lines}
end
local function complete_with_end(line, options)
local options = options or {}
local suffix = options.suffix or ""
return complete_with_custom(line, "end" .. suffix, options.indnt)
end
local function nop(line)
return make_return_object{lines={line}, offset=0}
end
return {
complete_from_patterns = complete_from_patterns,
complete_with_custom = complete_with_custom,
complete_with_do = complete_with_do,
complete_with_end = complete_with_end,
indent = indent,
match_any_of = require("tools")().match_any_of,
make_return_object = make_return_object,
nop = nop
}
end
|
local _, Addon = ...
local AceGUI = Addon.Libs.AceGUI
local Clamp = _G.Clamp
local GameTooltip = _G.GameTooltip
local Widgets = Addon.UI.Widgets
--[[
Adds a basic AceGUI Button to a parent widget and returns it.
options = {
parent = widget,
text = string,
fullWidth = boolean,
width = number,
height = number,
onClick = function,
onEnter = function,
onLeave = function
}
]]
function Widgets:Button(options)
local button = AceGUI:Create("Button")
button:SetText(options.text)
button:SetFullWidth(options.fullWidth)
if options.width then button:SetWidth(options.width) end
if options.height then button:SetHeight(options.height) end
button:SetCallback("OnClick", options.onClick)
button:SetCallback("OnEnter", options.onEnter)
button:SetCallback("OnLeave", options.onLeave)
options.parent:AddChild(button)
return button
end
--[[
Adds a basic AceGUI CheckBox to a parent widget and returns it.
options = {
parent = widget,
label = string,
tooltip = string,
get = function() -> boolean,
set = function(value)
}
]]
function Widgets:CheckBox(options)
local checkBox = AceGUI:Create("CheckBox")
checkBox:SetValue(options.get())
checkBox:SetLabel(options.label)
checkBox:SetCallback("OnValueChanged", function(_, _, value)
options.set(value)
end)
if options.tooltip then
checkBox:SetCallback("OnEnter", function(this)
GameTooltip:SetOwner(this.checkbg, "ANCHOR_TOP")
GameTooltip:SetText(options.label, 1.0, 0.82, 0)
GameTooltip:AddLine(options.tooltip, 1, 1, 1, true)
GameTooltip:Show()
end)
checkBox:SetCallback("OnLeave", function()
GameTooltip:Hide()
end)
end
options.parent:AddChild(checkBox)
return checkBox
end
--[[
Adds a SimpleGroup with a CheckBox and Slider to a parent widget and returns
it.
options = {
parent = widget,
checkBox = {
label = string,
tooltip = string,
get = function() -> boolean,
set = function(value)
},
slider = {
label = string,
tooltip = string,
value = number,
min = number,
max = number,
step = number,
onValueChanged = function(this, event, value) -> nil
}
}
]]
function Widgets:CheckBoxSlider(options)
local group = self:SimpleGroup({
parent = options.parent,
fullWidth = true
})
local slider
self:CheckBox({
parent = group,
label = options.checkBox.label,
tooltip = options.checkBox.tooltip,
get = options.checkBox.get,
set = function(value)
options.checkBox.set(value)
slider:SetDisabled(not value)
end
})
slider = self:Slider({
parent = group,
label = options.slider.label,
tooltip = options.slider.tooltip,
value = options.slider.value,
min = options.slider.min,
max = options.slider.max,
step = options.slider.step,
onValueChanged = options.slider.onValueChanged
})
slider:SetDisabled(not options.checkBox.get())
return group
end
--[[
Adds a SimpleGroup with a CheckBox and min-max value Sliders to a parent
widget and returns it.
options = {
parent = widget,
checkBox = {
label = string,
tooltip = string,
get = function() -> boolean,
set = function(value)
},
minSlider = {
label = string,
tooltip = string,
value = number,
min = number,
max = number,
step = number,
onValueChanged = function(this, event, value) -> nil
},
maxSlider = {
label = string,
tooltip = string,
value = number,
min = number,
max = number,
step = number,
onValueChanged = function(this, event, value) -> nil
}
}
]]
function Widgets:CheckBoxSliderRange(options)
local group = self:SimpleGroup({
parent = options.parent,
fullWidth = true,
})
-- Private data table.
local _t = {}
-- Updates and constrains both sliders.
local _onValueChanged = (function()
local function constrain(slider, min, max)
local value = Clamp(slider:GetValue(), min, max)
slider:SetSliderValues(min, max, slider.step)
slider:SetValue(value)
return value
end
return function(this, event)
local min = constrain(_t.minSlider, options.minSlider.min, _t.maxSlider:GetValue())
local max = constrain(_t.maxSlider, _t.minSlider:GetValue(), options.maxSlider.max)
options.minSlider.onValueChanged(this, event, min)
options.maxSlider.onValueChanged(this, event, max)
end
end)()
-- Check box.
self:CheckBox({
parent = group,
label = options.checkBox.label,
tooltip = options.checkBox.tooltip,
get = options.checkBox.get,
set = function(value)
options.checkBox.set(value)
_t.minSlider:SetDisabled(not value)
_t.maxSlider:SetDisabled(not value)
end
})
-- Slider group.
local sliderGroup = self:SimpleGroup({
parent = group,
fullWidth = true,
})
-- Minimum value slider.
_t.minSlider = self:Slider({
parent = sliderGroup,
label = options.minSlider.label,
tooltip = options.minSlider.tooltip,
value = options.minSlider.value,
min = options.minSlider.min,
max = options.minSlider.max,
step = options.minSlider.step,
onValueChanged = _onValueChanged
})
_t.minSlider:SetDisabled(not options.checkBox.get())
-- Maximum value slider.
_t.maxSlider = self:Slider({
parent = sliderGroup,
label = options.maxSlider.label,
tooltip = options.maxSlider.tooltip,
value = options.maxSlider.value,
min = options.maxSlider.min,
max = options.maxSlider.max,
step = options.maxSlider.step,
onValueChanged = _onValueChanged
})
_t.maxSlider:SetDisabled(not options.checkBox.get())
return group
end
--[[
Adds a basic AceGUI Dropdown to a parent widget and returns it.
options = {
parent = widget,
label = string,
list = table,
value = string,
onValueChanged = function
}
]]
function Widgets:Dropdown(options)
local dropdown = AceGUI:Create("Dropdown")
dropdown:SetLabel(options.label)
dropdown:SetList(options.list)
dropdown:SetValue(options.value)
dropdown:SetCallback("OnValueChanged", options.onValueChanged)
if options.tooltip then
dropdown:SetCallback("OnEnter", function(this)
GameTooltip:SetOwner(this.label, "ANCHOR_TOPLEFT")
GameTooltip:SetText(options.label, 1.0, 0.82, 0)
GameTooltip:AddLine(options.tooltip, 1, 1, 1, true)
GameTooltip:Show()
end)
dropdown:SetCallback("OnLeave", function()
GameTooltip:Hide()
end)
end
options.parent:AddChild(dropdown)
return dropdown
end
--[[
Adds a basic AceGUI EditBox to a parent widget and returns it.
options = {
parent = widget,
label = string,
fullWidth = boolean,
disableButton = boolean,
onEnterPressed = function
}
]]
function Widgets:EditBox(options)
local editBox = AceGUI:Create("EditBox")
editBox:SetLabel(options.label)
editBox:SetFullWidth(options.fullWidth)
editBox:DisableButton(options.disableButton)
editBox:SetCallback("OnEnterPressed", options.onEnterPressed)
options.parent:AddChild(editBox)
return editBox
end
-- Adds an AceGUI Heading to a parent widget and returns it.
function Widgets:Heading(parent, text)
local heading = AceGUI:Create("Heading")
heading:SetText(text)
heading:SetFullWidth(true)
parent:AddChild(heading)
return heading
end
--[[
Adds a basic AceGUI Label to a parent widget and returns it.
options = {
parent = widget,
text = string,
fullWidth = boolean,
color = table
}
]]
function Widgets:Label(options)
local label = AceGUI:Create("Label")
label:SetText(options.text)
label:SetFullWidth(options.fullWidth)
if options.color then
label:SetColor(options.color.r, options.color.g, options.color.b)
end
options.parent:AddChild(label)
return label
end
--[[
Adds a basic AceGUI MultiLineEditBox to a parent widget and returns it.
options = {
parent = widget,
label = string,
text = string,
fullWidth = boolean,
numLines = number
}
]]
function Widgets:MultiLineEditBox(options)
local editBox = AceGUI:Create("MultiLineEditBox")
editBox:SetLabel(options.label)
editBox:SetText(options.text or "")
editBox:SetFullWidth(options.fullWidth)
editBox:SetNumLines(options.numLines or 10)
editBox:DisableButton(true)
options.parent:AddChild(editBox)
return editBox
end
--[[
Adds a Slider to a parent widget and returns it.
options = {
parent = widget,
label = string,
tooltip = string,
value = number,
min = number,
max = number,
step = number,
onValueChanged = function(this, event, value) -> nil
}
]]
function Widgets:Slider(options)
local slider = AceGUI:Create("Slider")
slider:SetSliderValues(
options.min,
options.max,
options.step
)
slider:SetLabel(options.label)
slider:SetValue(options.value)
slider:SetCallback("OnValueChanged", function(this, event, value)
options.onValueChanged(this, event, value)
this.editbox:ClearFocus()
end)
if options.tooltip then
slider:SetCallback("OnEnter", function(this)
GameTooltip:SetOwner(this.label, "ANCHOR_TOP")
GameTooltip:SetText(options.label, 1.0, 0.82, 0)
GameTooltip:AddLine(options.tooltip, 1, 1, 1, true)
GameTooltip:Show()
end)
slider:SetCallback("OnLeave", function()
GameTooltip:Hide()
end)
end
options.parent:AddChild(slider)
return slider
end
--[[
Adds an AceGUI InlineGroup to a parent widget and returns it.
options = {
parent = widget,
title = string,
fullWidth = boolean,
layout = "Flow", -- "Flow" | "Fill" | "List"
}
--]]
function Widgets:InlineGroup(options)
local inlineGroup = AceGUI:Create("InlineGroup")
inlineGroup:SetTitle(options.title)
inlineGroup:SetFullWidth(options.fullWidth)
inlineGroup:SetLayout(options.layout or "Flow")
options.parent:AddChild(inlineGroup)
return inlineGroup
end
--[[
Adds an AceGUI SimpleGroup to a parent widget and returns it.
options = {
parent = widget,
fullWidth = boolean,
fullHeight = boolean,
layout = "Flow", -- "Flow" | "Fill" | "List"
}
--]]
function Widgets:SimpleGroup(options)
local simpleGroup = AceGUI:Create("SimpleGroup")
simpleGroup:SetFullWidth(options.fullWidth)
simpleGroup:SetFullHeight(options.fullHeight)
simpleGroup:SetLayout(options.layout or "Flow")
options.parent:AddChild(simpleGroup)
return simpleGroup
end
--[[
Adds a Dejunk_ListFrame widget to a parent widget and returns it.
options = {
parent = widget,
title = string,
list = table
}
]]
function Widgets:ListFrame(options)
local parent = self:InlineGroup({
parent = options.parent,
-- title = options.title,
fullWidth = true
})
local listFrame = AceGUI:Create("Dejunk_ListFrame")
listFrame:SetFullWidth(true)
listFrame:SetList(options.list)
parent:AddChild(listFrame)
return listFrame
end
--[[
Adds a Dejunk_ItemFrame widget to a parent widget and returns it.
options = {
parent = widget,
title = string,
data = {
lists = table,
items = table,
handleItem = function
}
}
]]
function Widgets:ItemFrame(options)
local parent = self:InlineGroup({
parent = options.parent,
title = options.title,
fullWidth = true
})
local itemFrame = AceGUI:Create("Dejunk_ItemFrame")
itemFrame:SetFullWidth(true)
if options.data then
itemFrame:SetData(options.data)
end
parent:AddChild(itemFrame)
return itemFrame
end
|
local Vec = _Require_relative(..., 'lib.DeWallua.vector-light',1)
local Polygon = _Require_relative(..., 'ConvexPolygon')
---@class Rectangle : ConvexPolygon
Rect = Polygon:extend()
Rect.name = 'rect'
---Rect cotr
---@param x number x position (center)
---@param y number y position (center)
---@param dx number width
---@param dy number height
---@param angle number radian offset
function Rect:new(x, y, dx, dy, angle)
if not ( dx and dy ) then return false end
local x_offset, y_offset = x or 0, y or 0
self.dx, self.dy = dx, dy
self.angle = angle or 0
local hx, hy = dx/2, dy/2 -- halfsize
self.vertices = {
{x = x_offset - hx, y = y_offset - hy},
{x = x_offset + hx, y = y_offset - hy},
{x = x_offset + hx, y = y_offset + hy},
{x = x_offset - hx, y = y_offset + hy}
}
self.centroid = {x = x_offset, y = y_offset}
self.area = dx*dy
self.radius = Vec.len(hx, hy)
self:rotate(self.angle)
end
---Return ctor args
---@return number x
---@return number y
---@return number dx
---@return number dy
---@return number angle
function Rect:unpack()
return self.centroid.x, self.centroid.y, self.dx, self.dy, self.angle
end
return Rect |
--- === Calendar ===
---
--- A calendar inset into the desktop
---
--- Download: [https://github.com/Hammerspoon/Spoons/raw/master/Spoons/Calendar.spoon.zip](https://github.com/Hammerspoon/Spoons/raw/master/Spoons/Calendar.spoon.zip)
local obj={}
obj.__index = obj
-- Metadata
obj.name = "Calendar"
obj.version = "1.0"
obj.author = "ashfinal <ashfinal@gmail.com>"
obj.homepage = "https://github.com/Hammerspoon/Spoons"
obj.license = "MIT - https://opensource.org/licenses/MIT"
local function getScreen()
local mainScreen = hs.screen'Color LCD'
if mainScreen then
return mainScreen
end
return hs.screen.mainScreen()
end
local cscreen = getScreen()
local cres = cscreen:fullFrame()
obj.calh = math.min(cres.h / 3.2, 400)
obj.calw = obj.calh * 1.41
obj.fontSize = 22
obj.loaded = nil
local function updateCalCanvas()
local titlestr = os.date("%B %Y")
obj.canvas[2].text = titlestr
local current_year = os.date("%Y")
local current_month = os.date("%m")
local current_day = os.date("%d")
local firstday_of_nextmonth = os.time{year=current_year, month=current_month+1, day=1}
local maxday_of_currentmonth = os.date("*t", firstday_of_nextmonth-24*60*60).day
local weekday_of_firstday = os.date("*t", os.time{year=current_year, month=current_month, day=1}).wday
local needed_rownum = math.ceil((weekday_of_firstday+maxday_of_currentmonth-1)/7)
for i=1,needed_rownum do
for k=1,7 do
local caltable_idx = 7*(i-1)+k
local pushbacked_value = caltable_idx-weekday_of_firstday + 2
if pushbacked_value <= 0 or pushbacked_value > maxday_of_currentmonth then
obj.canvas[9+caltable_idx].text = ""
else
obj.canvas[9+caltable_idx].text = pushbacked_value
end
if pushbacked_value == math.tointeger(current_day) then
obj.canvas[58].frame.x = tostring((10+(obj.calw-20)/8*k)/obj.calw)
obj.canvas[58].frame.y = tostring((10+(obj.calh-20)/8*(i+1))/obj.calh)
end
end
end
-- update yearweek
local yearweek_of_firstday = hs.execute("date -v1d +'%W'")
for i=1,6 do
local yearweek_rowvalue = math.tointeger(yearweek_of_firstday)+i-1
obj.canvas[51+i].text = yearweek_rowvalue
if i > needed_rownum then
obj.canvas[51+i].text = ""
end
end
-- trim the canvas
obj.canvas:size({
w = obj.calw,
h = 20+(obj.calh-20)/8*(needed_rownum+2)
})
end
function obj:stop()
if obj.canvas then
obj.canvas:delete()
obj.canvas = nil
end
if obj.timer then
obj.timer:stop()
obj.timer = nil
end
end
function obj:toggle()
obj:stop()
obj:init()
end
function obj:caffeinateWatcher(type)
obj:toggle()
end
function obj:init()
local caltodaycolor = {red=1, blue=1, green=1, alpha=0.3}
local calcolor = {red=235/255, blue=235/255, green=235/255}
local calbgcolor = {red=0, blue=0, green=0, alpha=0.3}
local weeknumcolor = {red=246/255, blue=246/255, green=246/255, alpha=0.5}
local cscreen = getScreen()
local cres = cscreen:fullFrame()
obj.canvas = hs.canvas.new({
x = cres.x + cres.w-obj.calw-20,
y = cres.y + 20,
w = obj.calw,
h = obj.calh
}):show()
obj.canvas:behavior(hs.canvas.windowBehaviors.canJoinAllSpaces)
obj.canvas:level(hs.canvas.windowLevels.desktopIcon)
obj.canvas[1] = {
id = "cal_bg",
type = "rectangle",
action = "fill",
fillColor = calbgcolor,
roundedRectRadii = {xRadius = 10, yRadius = 10},
}
obj.canvas[2] = {
id = "cal_title",
type = "text",
text = "",
textFont = "Courier",
textSize = obj.fontSize,
textColor = calcolor,
textAlignment = "center",
frame = {
x = tostring(10/obj.calw),
y = tostring(10/obj.calw),
w = tostring(1-20/obj.calw),
h = tostring((obj.calh-20)/8/obj.calh)
}
}
local weeknames = {"Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"}
for i=1,#weeknames do
obj.canvas[2+i] = {
id = "cal_weekday",
type = "text",
text = weeknames[i],
textFont = "Courier",
textSize = obj.fontSize,
textColor = calcolor,
textAlignment = "center",
frame = {
x = tostring((10+(obj.calw-20)/8*i)/obj.calw),
y = tostring((10+(obj.calh-20)/8)/obj.calh),
w = tostring((obj.calw-20)/8/obj.calw),
h = tostring((obj.calh-20)/8/obj.calh)
}
}
end
-- Create 7x6 calendar table
for i=1,6 do
for k=1,7 do
obj.canvas[9+7*(i-1)+k] = {
type = "text",
text = "",
textFont = "Courier",
textSize = obj.fontSize,
textColor = calcolor,
textAlignment = "center",
frame = {
x = tostring((10+(obj.calw-20)/8*k)/obj.calw),
y = tostring((10+(obj.calh-20)/8*(i+1))/obj.calh),
w = tostring((obj.calw-20)/8/obj.calw),
h = tostring((obj.calh-20)/8/obj.calh)
}
}
end
end
-- Create yearweek column
for i=1,6 do
obj.canvas[51+i] = {
type = "text",
text = "",
textFont = "Courier",
textSize = obj.fontSize,
textColor = weeknumcolor,
textAlignment = "center",
frame = {
x = tostring(10/obj.calw),
y = tostring((10+(obj.calh-20)/8*(i+1))/obj.calh),
w = tostring((obj.calw-20)/8/obj.calw),
h = tostring((obj.calh-20)/8/obj.calh)
}
}
end
-- today cover rectangle
obj.canvas[58] = {
type = "rectangle",
action = "fill",
fillColor = caltodaycolor,
roundedRectRadii = {xRadius = 3, yRadius = 3},
frame = {
x = tostring((10+(obj.calw-20)/8)/obj.calw),
y = tostring((10+(obj.calh-20)/8*2)/obj.calh),
w = tostring((obj.calw-20)/8/obj.calw),
h = tostring((obj.calh-20)/8/obj.calh)
}
}
if obj.timer == nil then
obj.timer = hs.timer.doEvery(1800, function() updateCalCanvas() end)
obj.timer:setNextTrigger(0)
else
obj.timer:start()
end
if not obj.loaded then
obj.loaded = hs.screen.watcher.new(function() obj:toggle() end):start()
hs.caffeinate.watcher.new(function(type)
if type == hs.caffeinate.watcher.screensDidUnlock then
obj:caffeinateWatcher()
end
end):start()
end
end
return obj
|
local pkgRoot = "/vol/pkg"
local name = "gotoblas"
local fn = myFileName():gsub("%.lua$","")
local version = barefilename(fn)
local base = pathJoin(pkgRoot, pkgName)
whatis("Name: Gotoblas")
whatis("Version: " .. version)
whatis("Category: library, mathematics")
whatis("Description: Blas Level 1, 2, 3 routines")
whatis("URL: http://www.tacc.utexas.edu")
setenv("TACC_GOTOBLAS_DIR",base)
setenv("TACC_GOTOBLAS_LIB",base)
|
#!/usr/bin/env lua
----------------------------------------------------------------------
-- This script presents SPECTATOR mode. In SPECTATOR mode you play and
-- your agent can learn from it.
-- Configuration is loaded from "../../examples/config/<SCENARIO_NAME>.cfg" file.
--
-- To see the scenario description go to "../../scenarios/README.md"
----------------------------------------------------------------------
require("vizdoom")
game = vizdoom.DoomGame()
-- Choose scenario config file you wish to watch.
-- Don't load two configs cause the second will overrite the first one.
-- Multiple config files are ok but combining these ones doesn't make much sense.
--game:loadConfig("../../examples/config/basic.cfg")
--game:loadConfig("../../examples/config/deadly_corridor.cfg")
game:loadConfig("../../examples/config/deathmatch.cfg")
--game:loadConfig("../../examples/config/defend_the_center.cfg")
--game:loadConfig("../../examples/config/defend_the_line.cfg")
--game:loadConfig("../../examples/config/health_gathering.cfg")
--game:loadConfig("../../examples/config/my_way_home.cfg")
--game:loadConfig("../../examples/config/predict_position.cfg")
--game:loadConfig("../../examples/config/take_cover.cfg")
-- Enables freelook in engine
game:addGameArgs("+freelook 1")
game:setScreenResolution(vizdoom.ScreenResolution.RES_640X480)
-- Enables spectator mode, so you can play. Sounds strange but it is agent who is supposed to watch not you.
game:setWindowVisible(true)
game:setMode(vizdoom.Mode.SPECTATOR)
game:init()
episodes = 10
for i = 1, episodes do
print("Episode #" .. i)
game:newEpisode()
while not game:isEpisodeFinished() do
state = game:getState()
game:advanceAction()
action = game:getLastAction()
reward = game:getLastReward()
print("State # " .. state.number)
print("Reward: " .. reward)
actionStr = "Action:"
for k, a in pairs(action) do actionStr = actionStr .. " " .. a end
print(actionStr)
print("=====================")
end
print("Episode finished.")
print("total reward: " .. game:getTotalReward())
print("************************")
end
game:close()
|
local K, C, L, _ = unpack(select(2, ...))
if C["buffs"].enable ~= true then return end
local _G = _G
local ceil = math.ceil
local match = string.match
local CreateFrame = CreateFrame
local UIParent = UIParent
local hooksecurefunc = hooksecurefunc
local origSecondsToTimeAbbrev = _G.SecondsToTimeAbbrev
local function SecondsToTimeAbbrevHook(seconds)
if (seconds >= 86400) then
return '%dd', ceil(seconds / 86400)
end
if (seconds >= 3600) then
return '%dh', ceil(seconds / 3600)
end
if (seconds >= 60) then
return '%dm', ceil(seconds / 60)
end
return '%d', seconds
end
SecondsToTimeAbbrev = SecondsToTimeAbbrevHook
local BuffsAnchor = CreateFrame("Frame", "BuffsAnchor", UIParent)
if C["minimap"].collectbuttons == true then
BuffsAnchor:SetPoint('TOPRIGHT', Minimap, 'TOPLEFT', -26, 2)
else
BuffsAnchor:SetPoint('TOPRIGHT', Minimap, 'TOPLEFT', -10, 2)
end
BuffsAnchor:SetSize(C["buffs"].buffsize, C["buffs"].buffsize)
-- TemporaryEnchantFrame ...
TempEnchant1:ClearAllPoints()
TempEnchant1:SetPoint("CENTER", BuffsAnchor, "CENTER", 0, 0)
TempEnchant2:ClearAllPoints()
TempEnchant2:SetPoint('TOPRIGHT', TempEnchant1, 'TOPLEFT', -C["buffs"].paddingx, 0)
ConsolidatedBuffs:SetSize(20, 20)
ConsolidatedBuffs:ClearAllPoints()
ConsolidatedBuffs:SetPoint('BOTTOM', TempEnchant1, 'TOP', 1, 2)
ConsolidatedBuffsIcon:SetAlpha(0)
ConsolidatedBuffsCount:ClearAllPoints()
ConsolidatedBuffsCount:SetPoint('CENTER', ConsolidatedBuffsIcon)
ConsolidatedBuffsCount:SetFont(C["font"].basic_font, C["font"].basic_font_size, C["font"].basic_font_style)
ConsolidatedBuffsCount:SetShadowOffset(0, 0)
ConsolidatedBuffsContainer:SetScale(0.57)
ConsolidatedBuffsTooltip:SetScale(1.2)
local function BuffFrame_SetPoint(self)
local hasMainHandEnchant, _, _, hasOffHandEnchant = GetWeaponEnchantInfo()
if (self and self:IsShown()) then
self:ClearAllPoints()
if (UnitHasVehicleUI('player')) then
self:SetPoint('TOPRIGHT', TempEnchant1)
return
else
if (hasMainHandEnchant and hasOffHandEnchant) then
self:SetPoint('TOPRIGHT', TempEnchant2, 'TOPLEFT', -C["buffs"].paddingx, 0)
return
elseif (hasMainHandEnchant or hasOffHandEnchant) then
self:SetPoint('TOPRIGHT', TempEnchant1, 'TOPLEFT', -C["buffs"].paddingx, 0)
return
elseif (not hasMainHandEnchant and not hasOffHandEnchant) then
self:SetPoint('TOPRIGHT', TempEnchant1)
return
end
end
end
end
hooksecurefunc('BuffFrame_UpdatePositions', function()
if (CONSOLIDATED_BUFF_ROW_HEIGHT ~= 26) then
CONSOLIDATED_BUFF_ROW_HEIGHT = 26
end
end)
BuffFrame:SetScript('OnUpdate', function(self, elapsed)
self.BuffFrameUpdateTime = self.BuffFrameUpdateTime + elapsed
if (self.BuffFrameUpdateTime > TOOLTIP_UPDATE_TIME) then
self.BuffFrameUpdateTime = 0
if (BuffButton1) then
if (not BuffButton1:GetParent() == ConsolidatedBuffsContainer) then
BuffFrame_SetPoint(BuffButton1)
end
end
end
end)
hooksecurefunc('BuffFrame_UpdateAllBuffAnchors', function()
local BUFF_PREVIOUS, BUFF_ABOVE
local numBuffs = 0
for i = 1, BUFF_ACTUAL_DISPLAY do
local buff = _G['BuffButton'..i]
local hasMainHandEnchant, _, _, hasOffHandEnchant = GetWeaponEnchantInfo()
if (buff.consolidated) then
if (buff.parent == BuffFrame) then
buff:SetParent(ConsolidatedBuffsContainer)
buff.parent = ConsolidatedBuffsContainer
end
else
numBuffs = numBuffs + 1
index = numBuffs
if (hasMainHandEnchant and hasOffHandEnchant) then
index = index + 2
elseif (hasMainHandEnchant or hasOffHandEnchant) then
index = index + 1
end
if (buff.parent ~= BuffFrame) then
buff:SetParent(BuffFrame)
buff.parent = BuffFrame
end
buff:ClearAllPoints()
if (index > 1 and mod(index, C["buffs"].aurasperrow) == 1) then
if (index == C["buffs"].aurasperrow + 1) then
buff:SetPoint('TOP', TempEnchant1, 'BOTTOM', 0, -C["buffs"].paddingy)
else
buff:SetPoint('TOP', BUFF_ABOVE, 'BOTTOM', 0, -C["buffs"].paddingy)
end
BUFF_ABOVE = buff
elseif (numBuffs == 1) then
BuffFrame_SetPoint(buff)
else
buff:SetPoint('RIGHT', BUFF_PREVIOUS, 'LEFT', -C["buffs"].paddingx, 0)
end
BUFF_PREVIOUS = buff
BUFF_NEW_INDEX = index
end
end
end)
hooksecurefunc('DebuffButton_UpdateAnchors', function(self, index)
local numBuffs = BUFF_ACTUAL_DISPLAY + BuffFrame.numEnchants
if (BuffFrame.numConsolidated > 0) then
numBuffs = numBuffs - BuffFrame.numConsolidated + 1
end
local debuffSpace = C["buffs"].buffsize + C["buffs"].paddingy
local numRows = ceil(numBuffs/C["buffs"].aurasperrow)
local rowSpacing
if (numRows and numRows > 1) then
rowSpacing = -numRows * debuffSpace
else
rowSpacing = -debuffSpace
end
local buff = _G[self..index]
buff:ClearAllPoints()
if (index == 1) then
buff:SetPoint('TOP', TempEnchant1, 'BOTTOM', 0, rowSpacing)
elseif (index >= 2 and mod(index, C["buffs"].aurasperrow) == 1) then
buff:SetPoint('TOP', _G[self..(index-C["buffs"].aurasperrow)], 'BOTTOM', 0, -C["buffs"].paddingy)
else
buff:SetPoint('RIGHT', _G[self..(index-1)], 'LEFT', -C["buffs"].paddingx, 0)
end
end)
for i = 1, 2 do
local button = _G['TempEnchant'..i]
button:SetScale(1)
button:SetSize(C["buffs"].buffsize, C["buffs"].buffsize)
local icon = _G['TempEnchant'..i..'Icon']
icon:SetTexCoord(0.03, 0.97, 0.03, 0.97)
local duration = _G['TempEnchant'..i..'Duration']
duration:ClearAllPoints()
duration:SetPoint('BOTTOM', button, 'BOTTOM', 0, 0)
duration:SetFont(C["font"].basic_font, C["font"].basic_font_size, C["font"].basic_font_style)
duration:SetShadowOffset(0, 0)
duration:SetDrawLayer('OVERLAY')
local border = _G['TempEnchant'..i..'Border']
border:ClearAllPoints()
border:SetPoint('TOPRIGHT', button, 1, 1)
border:SetPoint('BOTTOMLEFT', button, -1, -1)
border:SetTexture(C["media"].auratextures..'TextureDebuff')
border:SetTexCoord(0, 1, 0, 1)
border:SetVertexColor(0.9, 0.25, 0.9)
button.Shadow = button:CreateTexture('$parentBackground', 'BACKGROUND')
button.Shadow:SetPoint('TOPRIGHT', border, 3.35, 3.35)
button.Shadow:SetPoint('BOTTOMLEFT', border, -3.35, -3.35)
button.Shadow:SetTexture(C["media"].auratextures..'TextureShadow')
button.Shadow:SetVertexColor(0, 0, 0, 1)
end
hooksecurefunc('AuraButton_Update', function(self, index)
local button = _G[self..index]
if (button) then
if (self:match('Debuff')) then
button:SetSize(C["buffs"].debuffsize, C["buffs"].debuffsize)
button:SetScale(1)
else
button:SetSize(C["buffs"].buffsize, C["buffs"].buffsize)
button:SetScale(1)
end
end
local icon = _G[self..index..'Icon']
if (icon) then
icon:SetTexCoord(0.03, 0.97, 0.03, 0.97)
end
local duration = _G[self..index..'Duration']
if (duration) then
duration:ClearAllPoints()
duration:SetPoint('BOTTOM', button, 'BOTTOM', 0, 0)
duration:SetFont(C["font"].basic_font, C["font"].basic_font_size, C["font"].basic_font_style)
duration:SetShadowOffset(0, 0)
duration:SetDrawLayer('OVERLAY')
end
local count = _G[self..index..'Count']
if (count) then
count:ClearAllPoints()
count:SetPoint('TOPRIGHT', button)
count:SetFont(C["font"].basic_font, C["font"].basic_font_size, C["font"].basic_font_style)
count:SetShadowOffset(0, 0)
count:SetDrawLayer('OVERLAY')
end
local border = _G[self..index..'Border']
if (border) then
border:SetTexture(C["media"].auratextures..'TextureDebuff')
border:SetPoint('TOPRIGHT', button, 1, 1)
border:SetPoint('BOTTOMLEFT', button, -1, -1)
border:SetTexCoord(0, 1, 0, 1)
end
if (button and not border) then
if (not button.texture) then
button.texture = button:CreateTexture('$parentOverlay', 'ARTWORK')
button.texture:SetParent(button)
button.texture:SetTexture(C["media"].auratextures..'TextureNormal')
button.texture:SetPoint('TOPRIGHT', button, 1, 1)
button.texture:SetPoint('BOTTOMLEFT', button, -1, -1)
if C["buffs"].class_color == true then
button.texture:SetVertexColor(K.Color.r, K.Color.g, K.Color.b, 1)
else
button.texture:SetVertexColor(1, 1, 1, 1)
end
end
end
if (button) then
if (not button.Shadow) then
button.Shadow = button:CreateTexture('$parentShadow', 'BACKGROUND')
button.Shadow:SetTexture(C["media"].auratextures..'TextureShadow')
button.Shadow:SetPoint('TOPRIGHT', button.texture or border, 3.35, 3.35)
button.Shadow:SetPoint('BOTTOMLEFT', button.texture or border, -3.35, -3.35)
button.Shadow:SetVertexColor(0, 0, 0, 1)
end
end
end) |
-- different amounts and yields based on mods
if mods["modmashsplinterfishing"] then
data.raw["int-setting"]["xtreme-fishing-yieldpercycle"].default_value = 40
data.raw["int-setting"]["xtreme-fishing-waterpercycle"].default_value = 250
elseif mods["SeaTorio"] then
data.raw["int-setting"]["xtreme-fishing-yieldpercycle"].default_value = 25
data.raw["int-setting"]["xtreme-fishing-waterpercycle"].default_value = 500
end
-- pipes extend further in krastorio by default
if mods["Krastorio2"] then
data.raw["int-setting"]["xtreme-fishing-ugpipestart"].default_value = 19
data.raw["int-setting"]["xtreme-fishing-ugpipeinterval"].default_value = 4
end
-- hide AF settings
data.raw["bool-setting"]["bigger-nuclear-cell-stacks"].hidden = true
data.raw["bool-setting"]["bigger-cargo"].hidden = true
-- disable GreenTec cooked fish if cooked fish is installed
if mods["GreenTec"] and mods["factorio-cooked-fish"] then
data.raw["bool-setting"]["fried-fish"].default_value = false
end |
local function create (code)
return load(code, nil, "t", nil)()
end
local function build_arg_list(prefix, count, postfix, extra_args)
local builder = {}
for i = 1, count do
table.insert(builder, ("%s%d%s"):format(prefix or "", i, postfix or ""))
end
if extra_args then
table.insert(builder, extra_args)
end
return table.concat(builder, ", ")
end
local function build_code(...)
local builder = {}
for i = 1, select("#", ...) do
local value = select(i, ...)
if type(value) == "function" then
for str in coroutine.wrap(value) do
table.insert(builder, tostring(str))
end
else
table.insert(builder, tostring(value))
end
end
return table.concat(builder, "")
end
local yield = coroutine.yield
return function (element_count)
return create(build_code([[
local Group = {}
Group.__index = Group
function Group.new(class, id)
local self = setmetatable({
id = id;
_data = {}
}, class)
return self
end
function Group:insert_row(]], build_arg_list("arg", element_count, "", "opt_row_index"), [[)
local data = self._data
if opt_row_index then
local index = ]], element_count, [[*clamp(opt_row_index - 1, 0, #data)
]], function ()
for i = 1, element_count do
yield(build_code([[
table.insert(self._data, index + ]], i, [[, tostring(arg]], i, [[ or "") or "")
]]))
end
end, [[
else
]], function ()
for i = 1, element_count do
yield(build_code([[
table.insert(self._data, tostring(arg]], i, [[ or "") or "")
]]))
end
end, [[
end
return self
end
function Group:get_row(row_index)
local data = self._data
local index = ]], element_count, [[*(row_index - 1)
return ]], build_arg_list("data[index +", element_count, "] or \"\""), [[
end
-- NOTE assumes the row _already_ exists!
function Group:set_row(row_index, ]], build_arg_list("arg", element_count, ""), [[)
local data = self._data
local index = ]], element_count, [[*(row_index - 1)
]], function ()
for i = 1, element_count do
yield(build_code([[
data[index + ]], i, [[] = tostring(arg]], i, [[ or "") or ""
]]))
end
end, [[
end
function Group:get_field(index)
return self._data[index] or ""
end
-- NOTE assumes the field _already_ exists!
function Group:set_field(index, text)
self._data[index] = tostring(text or "") or ""
end
function Group:len()
return math.ceil(#self._data/]], element_count, [[)
end
function Group:rows()
return coroutine.wrap(function ()
local data = self._data
for row_index = 1, self:len() do
local index = (row_index-1)*]], element_count, [[
coroutine.yield(]], build_arg_list("data[index + ", element_count, "] or \"\"", "row_index"), [[)
end
end)
end
function Group:draw(property_table, hline, outline_color, width, height, row_height, dy, is_active, active_index)
local group_height = row_height
for ]], build_arg_list("field", element_count, "", "row_index"), [[ in self:rows() do
]], function ()
for i = 1, element_count do
yield(build_code([[
local field]], i, [[_is_active = is_active and ((row_index-1)*]], element_count, [[ + ]], i, [[) == active_index
]]))
end
end, [[
local dx, field_width
]], function ()
for i = 1, element_count do
yield(build_code([[
dx, field_width = property_table:_column_dx_width(]], i, [[)
property_table:draw_field(field]], i, [[, dx, group_height + dy, field_width, field]], i, [[_is_active)
]]))
end
end, [[
hline(0, dy + group_height, width, outline_color)
group_height = group_height + row_height
if group_height >= height then break end
hline(0, dy + group_height, width, outline_color)
end
return group_height
end
return Group]]))
end
|
function test.Run(done)
local root = pac.CreatePart("group")
for class_name in pairs(pac.GetRegisteredParts()) do
root:CreatePart(class_name)
end
timer.Simple(0.5, function()
root:Remove()
done()
end)
end |
--[[
@Authors: Ben Dol (BeniS)
@Details: Afk bot module handler for module registration
and control.
]]
dofile('afk.lua')
-- required by the event handler
function AfkModule.getModuleId()
return "AfkModule"
end
AfkModule.dependencies = {
"BotModule"
}
--[[ Default Options ]]
AfkModule.options = {
['CreatureAlert'] = false,
['BlackList'] = '',
['WhiteList'] = '',
['AutoEat'] = false,
['AutoEatSelect'] = 'Meat',
['AutoFishingCheckCap'] = false,
['AutoFishing'] = false,
['RuneMake'] = false,
['RuneSpellText'] = 'adori gran',
['RuneMakeOpenContainer'] = true,
['AutoReplaceWeapon'] = false,
['AutoReplaceWeaponSelect'] = 'Left Hand',
['ItemToReplace'] = 3277,
['MagicTrain'] = false,
['MagicTrainSpellText'] = 'utana vid',
['MagicTrainManaRequired'] = 50,
['AntiKick'] = false
}
--[[ Register Events ]]
table.merge(AfkModule, {
creatureAlertEvent = 1,
antiKickEvent = 2,
autoFishingEvent = 3,
autoEatEvent = 4,
runeMakeEvent = 5,
autoReplaceWeaponEvent = 6,
magicTrainEvent = 7
})
AfkModule.events = {
[AfkModule.creatureAlertEvent] = {
option = "CreatureAlert",
callback = AfkModule.CreatureAlert.Event
},
[AfkModule.antiKickEvent] = {
option = "AntiKick",
callback = AfkModule.AntiKick.Event
},
[AfkModule.autoFishingEvent] = {
option = "AutoFishing",
callback = AfkModule.AutoFishing.Event
},
[AfkModule.autoEatEvent] = {
option = "AutoEat",
callback = AfkModule.AutoEat.Event
},
[AfkModule.runeMakeEvent] = {
option = "RuneMake",
callback = AfkModule.RuneMake.Event
},
[AfkModule.autoReplaceWeaponEvent] = {
option = "AutoReplaceWeapon",
callback = AfkModule.AutoReplaceHands.Event
},
[AfkModule.magicTrainEvent] = {
option = "MagicTrain",
callback = AfkModule.MagicTrain.Event
}
}
--[[ Register Listeners ]]
table.merge(AfkModule, {
--
})
AfkModule.listeners = {
--
}
--[[ Functions ]]
function AfkModule.stop()
EventHandler.stopEvents(AfkModule.getModuleId())
ListenerHandler.stopListeners(AfkModule.getModuleId())
end
-- Start Module
AfkModule.init() |
local HMAC = require("lockbox.mac.hmac");
local Stream = require("lockbox.util.stream");
local Array = require("lockbox.util.array");
local HKDF = function()
local public = {};
local Digest = nil;
local inputKeyMaterial;
local salt = Array.fromHex("0000000000000000000000000000000000000000");
local info;
local outputLen;
local hashLen;
local secret;
local extract = function()
local res = HMAC()
.setDigest(Digest)
.setKey(salt)
.init()
.update(Stream.fromArray(inputKeyMaterial))
.finish()
.asBytes();
hashLen = #res;
return res;
end
local expand = function(prk)
local iterations = math.ceil(outputLen / hashLen);
local mixin = {};
local results = {};
local remainingBytes = outputLen;
for i = 1, iterations do
local mac = HMAC()
.setDigest(Digest)
.setKey(prk)
.init();
mac.update(Stream.fromArray(mixin));
if info then
mac.update(Stream.fromArray(info));
end
mac.update(Stream.fromArray({ i }));
local stepResult = mac.finish().asBytes();
local stepSize = math.min(remainingBytes, #stepResult);
for j = 1, stepSize do
results[#results + 1] = stepResult[j];
end
mixin = stepResult;
remainingBytes = remainingBytes - stepSize;
end
return results;
end
public.setDigest = function(digestModule)
Digest = digestModule;
return public;
end
public.setInputKeyMaterial = function(ikm)
inputKeyMaterial = ikm;
return public;
end
public.setSalt = function(s)
salt = s or salt;
return public;
end
public.setInfo = function(i)
info = i;
return public;
end
public.setOutputLen = function(len)
outputLen = len;
return public;
end
public.finish = function()
local prk = extract(salt, inputKeyMaterial);
secret = expand(prk, info);
return public;
end
public.asBytes = function()
return secret;
end
public.asHex = function()
return Array.toHex(secret);
end
return public;
end
return HKDF;
|
print("Learning ESP8266")
-- Setting up Wifi
wifi.setmode(wifi.STATION)
-- Debug info
print('\n\nSTATION Mode:', 'mode='..wifi.getmode())
print('MAC Address: ', wifi.sta.getmac())
print('Chip ID: ', node.chipid())
print('Heap Size: ', node.heap(),'\n')
-- Start the connection attempt
WIFI_SSID="vishal.tech"
WIFI_PASS="satyam.vishal"
wifi.sta.config(WIFI_SSID, WIFI_PASS)
-- Count how many times you tried to connect to the network
local wifi_counter = 0
tmr.alarm(0, 1000, 1, function()
if wifi.sta.getip() == nil then
print("Connecting to AP...\n")
wifi_counter = wifi_counter + 1;
else
ip, nm, gw = wifi.sta.getip()
-- Debug info
print("\n\nIP Info: \nIP Address: ",ip)
print("Netmask: ",nm)
print("Gateway Addr: ",gw,'\n')
tmr.stop(0) -- Stop the polling loop
dofile("mqtt_pubsub.lua")
makeConn()
end
end)
|
----------------------------------------------------------------------------------------------------
-- Client Lua Script for RaidCore Addon on WildStar Game.
--
-- Copyright (C) 2015 RaidCore
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
-- Description:
-- TODO
----------------------------------------------------------------------------------------------------
local Apollo = require "Apollo"
local GameLib = require "GameLib"
local core = Apollo.GetPackage("Gemini:Addon-1.1").tPackage:GetAddon("RaidCore")
local mod = core:NewEncounter("PhageCouncil", 67, 147, 149)
if not mod then return end
----------------------------------------------------------------------------------------------------
-- Registering combat.
----------------------------------------------------------------------------------------------------
mod:RegisterTrigMob(core.E.TRIGGER_ANY, {
"Golgox the Lifecrusher", "Terax Blightweaver", "Ersoth Curseform", "Noxmind the Insidious",
"Fleshmonger Vratorg",
})
mod:RegisterEnglishLocale({
-- Unit names.
["Terax Blightweaver"] = "Terax Blightweaver",
["Golgox the Lifecrusher"] = "Golgox the Lifecrusher",
["Fleshmonger Vratorg"] = "Fleshmonger Vratorg",
["Noxmind the Insidious"] = "Noxmind the Insidious",
["Ersoth Curseform"] = "Ersoth Curseform",
-- Datachron messages.
["The Phageborn Convergence begins gathering its power"] = "The Phageborn Convergence begins gathering its power",
["Noxmind the Insidious prepares to equalize the Convergence!"] = "Noxmind the Insidious prepares to equalize the Convergence!",
-- Cast.
["Teleport"] = "Teleport",
["Channeling Energy"] = "Channeling Energy",
["Gathering Energy"] = "Gathering Energy",
["Stitching Strain"] = "Stitching Strain",
-- Timer bars.
["Next P2"] = "Next P2",
["Next equalization"] = "Next equalization",
["P2: Timeout 20 IA"] = "P2: Timeout 20 IA",
["P2: Timeout mini adds"] = "P2: Timeout mini adds",
["P2: Timeout subdue"] = "P2: Timeout subdue",
["P2: Timeout pillars"] = "P2: Timeout pillars",
["P2: Timeout shield"] = "P2: Timeout shield",
-- Message bars.
["INTERRUPT TERAX!"] = "INTERRUPT TERAX!",
["Phase 2: GOLGOX! (20 IA)"] = "Phase 2: GOLGOX! (20 IA)",
["Phase 2: TERAX! (Mini adds)"] = "Phase 2: TERAX! (Mini adds)",
["Phase 2: ERSOTH! (Subdue)"] = "Phase 2: ERSOTH! (Subdue)",
["Phase 2: NOXMIND! (Pillars)"] = "Phase 2: NOXMIND! (Pillars)",
["Phase 2: VRATORG! (Shield)"] = "Phase 2: VRATORG! (Shield)",
})
mod:RegisterFrenchLocale({
-- Unit names.
["Terax Blightweaver"] = "Terax Tisserouille",
["Golgox the Lifecrusher"] = "Golgox le Fossoyeur",
["Fleshmonger Vratorg"] = "Vratorg le Cannibale",
["Noxmind the Insidious"] = "Toxultime l'Insidieux",
["Ersoth Curseform"] = "Ersoth le Maudisseur",
-- Datachron messages.
["The Phageborn Convergence begins gathering its power"] = "La Convergence néophage commence à rassembler son énergie !",
["Noxmind the Insidious prepares to equalize the Convergence!"] = "Toxultime l'Insidieux se prépare à égaliser la Convergence !",
-- Cast.
["Teleport"] = "Se téléporter",
["Channeling Energy"] = "Canalisation d'énergie",
["Gathering Energy"] = "Accumulation d'énergie",
["Stitching Strain"] = "Pression de suture",
-- Timer bars.
["Next P2"] = "Prochaine P2",
["Next equalization"] = "Prochaine égalisation",
["P2: Timeout 20 IA"] = "P2: Timeout 20 IA",
["P2: Timeout mini adds"] = "P2: Timeout mini adds",
["P2: Timeout subdue"] = "P2: Timeout désarmement",
["P2: Timeout pillars"] = "P2: Timeout pilliers",
["P2: Timeout shield"] = "P2: Timeout bouclier",
-- Message bars.
["INTERRUPT TERAX!"] = "INTÉRROMPRE TERAX !",
["Phase 2: GOLGOX! (20 IA)"] = "Phase 2: GOLGOX! (20 IA)",
["Phase 2: TERAX! (Mini adds)"] = "Phase 2: TERAX! (Mini adds)",
["Phase 2: ERSOTH! (Subdue)"] = "Phase 2: ERSOTH! (Désarmement)",
["Phase 2: NOXMIND! (Pillars)"] = "Phase 2: TOXULTIME! (Pilliers)",
["Phase 2: VRATORG! (Shield)"] = "Phase 2: VRATORG! (Bouclier)",
})
mod:RegisterGermanLocale({
-- Unit names.
["Terax Blightweaver"] = "Terax Brandweber",
["Golgox the Lifecrusher"] = "Golgox der Lebenszermalmer",
["Fleshmonger Vratorg"] = "Fleischhändler Vratorg",
["Noxmind the Insidious"] = "Noxgeist der Hinterlistige",
["Ersoth Curseform"] = "Ersoth Fluchform",
-- Datachron messages.
["The Phageborn Convergence begins gathering its power"] = "Die Konvergenz der Phagengeborenen sammelt ihre Macht",
-- Cast.
["Teleport"] = "Teleportieren",
["Channeling Energy"] = "Energie kanalisieren",
-- Timer bars.
["Next P2"] = "Nächste P2",
})
-- Default settings.
mod:RegisterDefaultSetting("CircleErsothInterruptDist")
mod:RegisterDefaultSetting("LineToxWaves")
mod:RegisterDefaultSetting("SoundPhase2CountDown")
mod:RegisterDefaultSetting("SoundPhase2Alert")
mod:RegisterDefaultSetting("SoundInterruptTerax")
-- Timers default configs.
mod:RegisterDefaultTimerBarConfigs({
["NextP2"] = { sColor = "xkcdBluishPurple" },
["NextEqualize"] = { sColor = "xkcdEasterPurple" },
["P2Timeout"] = { sColor = "xkcdBloodOrange" },
})
----------------------------------------------------------------------------------------------------
-- Constants.
----------------------------------------------------------------------------------------------------
local DEFAULT_EQUALIZATION_DURATION = 37
local DEBUFFID_CHANNELING_ENERGY = 59721
local PHASE1_DURATION = 60
local PHASE2_DURATION = 29.5
local PHASE2_TYPE_GOLGOX = 1
local PHASE2_TYPE_TERAX = 2
local PHASE2_TYPE_ERSOTH = 3
local PHASE2_TYPE_NOXMIND = 4
local PHASE2_TYPE_VRATORG = 5
----------------------------------------------------------------------------------------------------
-- Locals.
----------------------------------------------------------------------------------------------------
local GetGameTime = GameLib.GetGameTime
local GetUnitById = GameLib.GetUnitById
local GetPlayerUnit = GameLib.GetPlayerUnit
local tBossesId
local nNextP2Time
local nNextEqualization
----------------------------------------------------------------------------------------------------
-- Encounter description.
----------------------------------------------------------------------------------------------------
function mod:OnBossEnable()
tBossesId = {}
eBossPhase2 = nil
nNextP2Time = GetGameTime() + 87
mod:AddTimerBar("NextP2", "Next P2", 87, mod:GetSetting("SoundPhase2CountDown"))
mod:AddTimerBar("NextEqualize", "Next equalization", 31.5)
end
function mod:OnUnitCreated(nId, tUnit, sName)
local nHealth = tUnit:GetHealth()
if sName == self.L["Golgox the Lifecrusher"]
or sName == self.L["Terax Blightweaver"]
or sName == self.L["Ersoth Curseform"]
or sName == self.L["Noxmind the Insidious"]
or sName == self.L["Fleshmonger Vratorg"] then
if nHealth then
core:AddUnit(tUnit)
core:WatchUnit(tUnit)
tBossesId[sName] = nId
elseif sName == self.L["Noxmind the Insidious"] then
if mod:GetSetting("LineToxWaves") then
-- It's the wave from Nox which target a player
local line = core:AddSimpleLine("Wave" .. nId, nId, 5, 45, 0, 4, "green")
end
end
end
end
function mod:OnUnitDestroyed(nId, tUnit, sName)
tBossesId[sName] = nil
end
function mod:OnCastStart(nId, sCastName, nCastEndTime, sName)
if sName == self.L["Golgox the Lifecrusher"]
or sName == self.L["Terax Blightweaver"]
or sName == self.L["Ersoth Curseform"]
or sName == self.L["Noxmind the Insidious"]
or sName == self.L["Fleshmonger Vratorg"] then
-- Common behavior.
if self.L["Teleport"] == sCastName then
if mod:GetSetting("SoundPhase2Alert") then
core:PlaySound("Alert")
end
end
-- Specific behavior.
if sName == self.L["Golgox the Lifecrusher"] then
if self.L["Teleport"] == sCastName then
mod:AddMsg("InfoPhase", "Phase 2: GOLGOX! (20 IA)", 5, nil, "blue")
mod:AddTimerBar("P2Timeout", "P2: Timeout 20 IA", PHASE2_DURATION)
eBossPhase2 = PHASE2_TYPE_GOLGOX
end
elseif sName == self.L["Terax Blightweaver"] then
if self.L["Teleport"] == sCastName then
mod:AddMsg("InfoPhase", "Phase 2: TERAX! (Mini adds)", 5, nil, "blue")
mod:AddTimerBar("P2Timeout", "P2: Timeout mini adds", PHASE2_DURATION)
eBossPhase2 = PHASE2_TYPE_TERAX
elseif self.L["Stitching Strain"] == sCastName then
local tUnit = GetUnitById(nId)
if self:GetDistanceBetweenUnits(GetPlayerUnit(), tUnit) < 35 then
if mod:GetSetting("SoundInterruptTerax") then
core:PlaySound("Alarm")
end
mod:AddMsg("INTSTRAIN", "INTERRUPT TERAX!", 5, nil, "red")
end
end
elseif sName == self.L["Ersoth Curseform"] then
if self.L["Teleport"] == sCastName then
mod:AddMsg("InfoPhase", "Phase 2: ERSOTH! (Subdue)", 5, nil, "blue")
mod:AddTimerBar("P2Timeout", "P2: Timeout subdue", PHASE2_DURATION)
eBossPhase2 = PHASE2_TYPE_ERSOTH
elseif self.L["Gathering Energy"] == sCastName then
if mod:GetSetting("CircleErsothInterruptDist") then
core:AddPolygon("ErsothCircle1", nId, 10, 0, 3, "red", 20)
core:AddPolygon("ErsothCircle2", nId, 20, 0, 3, "xkcdOrangeyRed", 20)
core:AddPolygon("ErsothCircle3", nId, 30, 0, 3, "xkcdOrange", 20)
end
end
elseif sName == self.L["Noxmind the Insidious"] then
if self.L["Teleport"] == sCastName then
mod:AddMsg("InfoPhase", "Phase 2: NOXMIND! (Pillars)", 5, nil, "blue")
mod:AddTimerBar("P2Timeout", "P2: Timeout pillars", PHASE2_DURATION)
eBossPhase2 = PHASE2_TYPE_NOXMIND
end
elseif sName == self.L["Fleshmonger Vratorg"] then
if self.L["Teleport"] == sCastName then
mod:AddMsg("InfoPhase", "Phase 2: VRATORG! (Shield)", 5, nil, "blue")
mod:AddTimerBar("P2Timeout", "P2: Timeout shield", PHASE2_DURATION)
eBossPhase2 = PHASE2_TYPE_VRATORG
end
end
end
end
function mod:OnCastEnd(nId, sCastName, bInterrupted, nCastEndTime, sName)
if sName == self.L["Golgox the Lifecrusher"]
or sName == self.L["Terax Blightweaver"]
or sName == self.L["Ersoth Curseform"]
or sName == self.L["Noxmind the Insidious"]
or sName == self.L["Fleshmonger Vratorg"] then
-- Common behavior.
if self.L["Gathering Energy"] == sCastName then
mod:RemoveTimerBar("P2Timeout")
-- Specific behavior.
if sName == self.L["Ersoth Curseform"] then
core:RemovePolygon("ErsothCircle1")
core:RemovePolygon("ErsothCircle2")
core:RemovePolygon("ErsothCircle3")
end
if eBossPhase2 then
-- Next Equalization is at:
-- * Just after the MoO, when this last is interrupted interrupted.
-- In other words, at the end of the "Channeling Energy", which
-- is in same time as the end of "Gathering Energy".
-- * Or 5 seconds after the end of the "Channeling Energy" when
-- this last haven't been interrupted.
-- Note: "Gathering Energy" cast end is reached before the "Channeling Energy".
nNextEqualization = bInterrupted and 15 or 5
eBossPhase2 = nil
end
elseif self.L["Channeling Energy"] == sCastName then
if not nNextP2Time then
nNextP2Time = GetGameTime() + PHASE1_DURATION
mod:AddTimerBar("NextP2", "Next P2", PHASE1_DURATION, mod:GetSetting("SoundPhase2CountDown"))
if tBossesId[self.L["Noxmind the Insidious"]] then
mod:AddTimerBar("NextEqualize", "Next equalization", nNextEqualization)
end
end
end
end
end
function mod:OnDatachron(sMessage)
if sMessage:find(self.L["The Phageborn Convergence begins gathering its power"]) then
nNextP2Time = nil
-- 15 is the MoO duration.
nNextEqualization = 15
mod:RemoveTimerBar("NextP2")
mod:RemoveTimerBar("NextEqualize")
elseif sMessage:find(self.L["Noxmind the Insidious prepares to equalize the Convergence!"]) then
local nRemainTimeBeforeP2 = nNextP2Time - GetGameTime()
if DEFAULT_EQUALIZATION_DURATION < nRemainTimeBeforeP2 then
mod:AddTimerBar("NextEqualize", "Next equalization", DEFAULT_EQUALIZATION_DURATION)
end
end
end
|
-- fcrect
FCRect = {}
FCRect.mt = {
__index = FCRect,
__newindex = function() error() end
}
function FCRectMake( x, y, w, h )
ret = {}
ret.class = "FCRect"
ret.x = x or 0
ret.y = y or 0
ret.w = w or 0
ret.h = h or 0
setmetatable( ret, FCRect.mt )
return ret
end
function FCRectZero()
return FCRectMake( 0, 0, 0, 0 )
end
function FCRectOne() -- handy for views
return FCRectMake( 0, 0, 1, 1 )
end
function FCRectCopy( src )
if src.class ~= "FCRect" then
FCError("Trying to copy a FCRect from a non-FCRect")
end
ret = FCRectMake( src.x, src.y, src.w, src.h )
return ret;
end
|
local nk = require("nakama")
-- Create the two tiers of leaderboards
local bottom_tier_id = "bottom-tier"
local top_tier_id = "top-tier"
local authoritative = true
local sort = "desc"
local operator = "best"
local reset = "0 0 * * 1"
local metadata = {}
nk.leaderboard_create(bottom_tier_id, authoritative, sort, operator, reset, metadata)
nk.leaderboard_create(top_tier_id, authoritative, sort, operator, reset, metadata)
-- Register leaderboard reset function to handle promotions and relegations
local function leaderboardReset(ctx, leaderboard, reset)
-- We're only interested in our top/bottom tier leaderboards so return if it isn't them
if leaderboard.id ~= bottom_tier_id and leaderboard.id ~= top_tier_id then
return
end
-- Get all leaderboard records (assuming the tier has no more than 10,000 players)
local records, _, _, _ = nk.leaderboard_records_list(leaderboard.id, {}, 10000)
-- If leaderboard is top tier and has 10 or more players, relegate bottom 3 players
if leaderboard.id == top_tier_id and #records >= 10 then
-- Relegate record owner by copying their record into the bottom tier and deleting their current top tier record
for i=3, 1, -1 do
local record = records[#records-i]
nk.leaderboard_record_write(bottom_tier_id, record.owner, record.username, record.score, record.subscore, {})
nk.leaderboard_record_delete(top_tier_id, record.owner)
end
end
-- If leaderboard is bottom tier and has 10 or more players, promote top 3 players
if leaderboard.id == bottom_tier_id and #records >= 10 then
-- Promote record owner by copying their record into the top tier and deleting their current top tier record
for i=1, 3 do
local record = records[i]
nk.leaderboard_record_write(top_tier_id, record.owner, record.username, record.score, record.subscore, {})
nk.leaderboard_record_delete(bottom_tier_id, record.owner)
end
end
-- Distribute rewards based on player's tier
for i=1, #records do
local record = records[i]
local reward = 100
-- Increase reward for top tier players
if leaderboard.id == top_tier_id then
reward = 500
end
local changeset = {
coins = reward
}
nk.wallet_update(record.owner, changeset, {}, true)
end
end
nk.register_leaderboard_reset(leaderboardReset) |
-- progress bar that goes across the screen
local width = SCREEN_WIDTH / 2 - GAMEPLAY:getItemWidth("fullProgressBarWidthBeforeHalf")
local height = SCREEN_HEIGHT / 50
local alpha = 0.7
local isReplay = GAMESTATE:GetPlayerState():GetPlayerController() == "PlayerController_Replay" and not allowedCustomization
local progressbarTextSize = GAMEPLAY:getItemHeight("fullProgressBarText")
local function bounds()
local stps = GAMESTATE:GetCurrentSteps()
return stps:GetFirstSecond(), stps:GetLastSecond()
end
-- ternary logic
-- will become either nothing or a slider
-- used to seek in replays
local replaySlider = isReplay and
UIElements.QuadButton(1, 1) .. {
Name = "SliderButtonArea",
InitCommand = function(self)
self:diffusealpha(0.3)
self:zoomto(width, height)
end,
MouseHoldCommand = function(self, params)
if params.event ~= "DeviceButton_left mouse button" then return end
if not GAMESTATE:IsPaused() then
TOOLTIP:SetText("Music must be paused")
TOOLTIP:Show()
end
local localX = clamp(params.MouseX - self:GetTrueX() + width/2, 0, width)
local localY = clamp(params.MouseY, 0, height)
local lb, ub = bounds()
local percentX = localX / width
local posx = clamp(lb + (percentX * (ub - lb)), lb, ub)
SCREENMAN:GetTopScreen():SetSongPosition(posx)
end,
MouseReleaseCommand = function(self)
TOOLTIP:Hide()
end,
MouseUpCommand = function(self)
TOOLTIP:Hide()
end,
} or
Def.Actor {Name = "Nothing"}
return Def.ActorFrame {
Name = "FullProgressBar",
InitCommand = function(self)
self:playcommand("SetUpMovableValues")
registerActorToCustomizeGameplayUI({
actor = self,
coordInc = {5,1},
zoomInc = {0.1,0.05},
})
end,
SetUpMovableValuesMessageCommand = function(self)
self:xy(MovableValues.FullProgressBarX, MovableValues.FullProgressBarY)
self:zoomto(MovableValues.FullProgressBarWidth, MovableValues.FullProgressBarHeight)
end,
replaySlider,
Def.Quad {
Name = "BG",
InitCommand = function(self)
self:zoomto(width, height)
self:diffuse(COLORS:getGameplayColor("FullProgressBarBG"))
self:diffusealpha(alpha)
end
},
Def.SongMeterDisplay {
Name = "Progress",
InitCommand = function(self)
self:SetUpdateRate(0.5)
end,
StreamWidth = width,
Stream = Def.Quad {
InitCommand = function(self)
self:zoomy(height)
self:diffuse(COLORS:getGameplayColor("FullProgressBar"))
self:diffusealpha(alpha)
end
}
},
LoadFont("Common Normal") .. {
Name = "Title",
InitCommand = function(self)
self:zoom(progressbarTextSize)
self:maxwidth((width * 0.8) / progressbarTextSize)
end,
BeginCommand = function(self)
self:settext(GAMESTATE:GetCurrentSong():GetDisplayMainTitle())
end,
DoneLoadingNextSongMessageCommand = function(self)
self:playcommand("Begin")
end,
PracticeModeReloadMessageCommand = function(self)
self:playcommand("Begin")
end
},
LoadFont("Common Normal") .. {
Name = "SongLength",
InitCommand = function(self)
self:x(width / 2)
self:halign(1)
self:zoom(progressbarTextSize)
self:maxwidth((width * 0.2) / progressbarTextSize)
end,
BeginCommand = function(self)
local ttime = GetPlayableTime()
self:settext(SecondsToMMSS(ttime))
self:diffuse(colorByMusicLength(ttime))
end,
DoneLoadingNextSongMessageCommand = function(self)
self:playcommand("Begin")
end,
CurrentRateChangedMessageCommand = function(self)
self:playcommand("Begin")
end,
PracticeModeReloadMessageCommand = function(self)
self:playcommand("Begin")
end
},
}
|
------------------------------------------------------------------------------
-- Text class
------------------------------------------------------------------------------
local ctrl = {
nick = "text",
parent = WIDGET,
creation = "-",
callback = {
action = "ns",
caret_cb = "nnn",
valuechanged_cb = "", -- used by many other controls
}
}
function ctrl.createElement(class, arg)
return Text()
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|
AmrDb = {
["Talents"] = {
"2212100", -- [1]
"0000000", -- [2]
},
["LastCharacterImportDate"] = "",
["SendSettings"] = {
["SendTo"] = "",
["SendGems"] = true,
["SendEnchants"] = true,
["SendEnchantMaterials"] = true,
["SendToType"] = "a friend",
},
["CharacterName"] = "Hoffryn",
["Race"] = "Gnome",
["ActiveSpec"] = 1,
["Level"] = 100,
["Equipped"] = {
{
"|cffa335ee|Hitem:109172:0:0:0:0:0:0:0:99:0:13:3:525:96:531|h[Plasma Mechshades of the Quickblade]|h|r", -- [1]
"|cff0070dd|Hitem:109956:0:0:0:0:0:0:0:99:0:20:1:521|h[Necklace of Endless Shadow]|h|r", -- [2]
"|cff0070dd|Hitem:109933:0:0:0:0:0:0:0:99:0:20:1:521|h[Lightbinder Shoulderpads]|h|r", -- [3]
nil, -- [4]
"|cff0070dd|Hitem:118735:0:0:0:0:0:0:0:99:0:0:0|h[Bloodbathed Outcast Robes]|h|r", -- [5]
"|cff0070dd|Hitem:109827:0:0:0:0:0:0:0:99:0:20:1:521|h[Lightbinder Girdle]|h|r", -- [6]
"|cff0070dd|Hitem:109805:0:0:0:0:0:0:0:99:0:20:1:521|h[Frost-Touched Legwraps]|h|r", -- [7]
"|cff0070dd|Hitem:109785:0:0:0:0:0:0:0:99:0:20:1:521|h[Frost-Touched Boots]|h|r", -- [8]
"|cff0070dd|Hitem:109867:0:0:0:0:0:0:0:99:0:20:1:521|h[Lightbinder Wristwraps]|h|r", -- [9]
"|cff0070dd|Hitem:109844:0:0:0:0:0:0:0:99:0:20:1:521|h[Gloves of Arcane Mystery]|h|r", -- [10]
"|cffa335ee|Hitem:118291:0:0:0:0:0:0:0:99:0:11:0|h[Solium Band of Wisdom]|h|r", -- [11]
"|cff0070dd|Hitem:114953:0:0:0:0:0:0:0:99:0:11:1:171|h[Skettis Deceiver's Signet]|h|r", -- [12]
"|cff0070dd|Hitem:118199:0:0:0:0:0:0:0:99:0:0:0|h[Poison Cask]|h|r", -- [13]
"|cffa335ee|Hitem:118202:0:0:0:0:0:0:0:99:0:0:1:545|h[Fungus-Infected Hydra Lung]|h|r", -- [14]
"|cff1eff00|Hitem:114955:0:0:0:0:0:0:0:99:0:11:0|h[Hollowblood Cloak]|h|r", -- [15]
"|cff1eff00|Hitem:118085:0:0:0:0:0:0:0:99:0:11:0|h[Admiral Taylor's Staff of Wisdom]|h|r", -- [16]
}, -- [1]
{
"|cffa335ee|Hitem:109172:0:0:0:0:0:0:0:100:0:13:3:525:532:25|h[Plasma Mechshades of the Fireflash]|h|r", -- [1]
"|cff0070dd|Hitem:109956:0:0:0:0:0:0:0:100:0:20:1:521|h[Necklace of Endless Shadow]|h|r", -- [2]
"|cff0070dd|Hitem:109948:0:0:0:0:0:0:0:100:0:1:1:522|h[Felflame Spaulders]|h|r", -- [3]
nil, -- [4]
"|cff0070dd|Hitem:118735:0:0:0:0:0:0:0:100:0:0:0|h[Bloodbathed Outcast Robes]|h|r", -- [5]
"|cff0070dd|Hitem:109827:0:0:0:0:0:0:0:100:0:20:1:521|h[Lightbinder Girdle]|h|r", -- [6]
"|cff0070dd|Hitem:109806:0:0:0:0:0:0:0:100:0:20:1:521|h[Leggings of Swirling Light]|h|r", -- [7]
"|cff0070dd|Hitem:109797:0:0:0:0:0:0:0:100:0:20:1:521|h[Felflame Sandals]|h|r", -- [8]
"|cff0070dd|Hitem:109867:0:0:0:0:0:0:0:100:0:20:1:521|h[Lightbinder Wristwraps]|h|r", -- [9]
"|cff0070dd|Hitem:109844:0:0:0:0:0:0:0:100:0:20:1:521|h[Gloves of Arcane Mystery]|h|r", -- [10]
"|cffa335ee|Hitem:118291:0:0:0:0:0:0:0:100:0:11:0|h[Solium Band of Wisdom]|h|r", -- [11]
"|cff0070dd|Hitem:114953:0:0:0:0:0:0:0:100:0:11:1:171|h[Skettis Deceiver's Signet]|h|r", -- [12]
"|cff0070dd|Hitem:118199:0:0:0:0:0:0:0:100:0:0:0|h[Poison Cask]|h|r", -- [13]
"|cffa335ee|Hitem:118202:0:0:0:0:0:0:0:100:0:0:1:545|h[Fungus-Infected Hydra Lung]|h|r", -- [14]
"|cff1eff00|Hitem:114955:0:0:0:0:0:0:0:100:0:11:0|h[Hollowblood Cloak]|h|r", -- [15]
"|cff0070dd|Hitem:119463:0:0:0:0:0:0:0:100:0:11:0|h[Staff of Trials]|h|r", -- [16]
}, -- [2]
},
["Class"] = "WARLOCK",
["Specs"] = {
30, -- [1]
0, -- [2]
},
["Options"] = {
["hideMapIcon"] = true,
["manualShowShop"] = true,
},
["Region"] = "US",
["Currencies"] = {
[416] = 21,
[515] = 32,
[391] = 24,
[392] = 875,
[81] = 9,
[-1] = 4145054,
[241] = 21,
},
["Glyphs"] = {
{
58081, -- [1]
56242, -- [2]
56232, -- [3]
148683, -- [4]
58079, -- [5]
159665, -- [6]
}, -- [1]
{
}, -- [2]
},
["LogData"] = {
["_wipes"] = {
},
["_autoLog"] = {
[1228] = "disabled",
[1205] = "disabled",
},
["_lastDiff"] = 1,
["_lastZone"] = "SMV Alliance Garrison Level 2",
},
["BagItems"] = {
"|cffffffff|Hitem:6948:0:0:0:0:0:0:0:85:0:0:0|h[Hearthstone]|h|r", -- [1]
"|cffffffff|Hitem:40772:0:0:0:0:0:0:455484928:85:0:0:0|h[Gnomish Army Knife]|h|r", -- [2]
"|cffffffff|Hitem:23821:0:0:0:0:0:0:1603928704:85:0:0:0|h[Zapthrottle Mote Extractor]|h|r", -- [3]
"|cff0070dd|Hitem:48933:0:0:0:0:0:0:453879072:85:0:0:0|h[Wormhole Generator: Northrend]|h|r", -- [4]
"|cff0070dd|Hitem:30542:0:0:0:0:0:0:41405472:85:0:0:0|h[Dimensional Ripper - Area 52]|h|r", -- [5]
"|cff0070dd|Hitem:18984:0:0:0:0:0:0:915604017:85:0:0:0|h[Dimensional Ripper - Everlook]|h|r", -- [6]
"|cffffffff|Hitem:65908:0:0:0:0:0:0:0:85:0:0:0|h[Tabard of the Wildhammer Clan]|h|r", -- [7]
"|cff1eff00|Hitem:71083:0:0:0:0:0:0:384103776:85:0:0:0|h[Darkmoon Game Token]|h|r", -- [8]
"|cffa335ee|Hitem:59449:4207:0:0:0:0:0:1404028416:85:0:0:0|h[Lightweight Bio-Optic Killshades]|h|r", -- [9]
"|cff0070dd|Hitem:60223:0:0:0:0:0:0:2060129408:85:0:0:0|h[High-Powered Bolt Gun]|h|r", -- [10]
"|cffffffff|Hitem:67749:0:0:0:0:0:0:170159792:85:0:0:0|h[Electrified Ether]|h|r", -- [11]
"|cffffffff|Hitem:71634:0:0:0:0:0:0:123304528:85:0:0:0|h[Darkmoon Adventurer's Guide]|h|r", -- [12]
"|cff1eff00|Hitem:37710:0:0:0:0:0:0:716754877:85:0:0:0|h[Crashin' Thrashin' Racer Controller]|h|r", -- [13]
"|cff0070dd|Hitem:46709:0:0:0:0:0:0:1541306752:85:0:0:0|h[MiniZep Controller]|h|r", -- [14]
"|cff0070dd|Hitem:67494:0:0:0:0:0:0:361589376:85:0:0:0|h[Electrostatic Condenser]|h|r", -- [15]
"|cff0070dd|Hitem:44719:0:0:0:0:0:0:2123877820:85:0:0:0|h[Frenzyheart Brew]|h|r", -- [16]
"|cffa335ee|Hitem:49040:0:0:0:0:0:0:1181618048:85:0:0:0|h[Jeeves]|h|r", -- [17]
"|cff0070dd|Hitem:40768:0:0:0:0:0:0:1808040448:85:0:0:0|h[MOLL-E]|h|r", -- [18]
"|cff1eff00|Hitem:25978:0:0:0:0:0:0:935405800:85:0:0:0|h[Seth's Graphite Fishing Pole]|h|r", -- [19]
"|cff0070dd|Hitem:33820:0:0:0:0:0:0:271198196:85:0:0:0|h[Weather-Beaten Fishing Hat]|h|r", -- [20]
},
["BankItems"] = {
"|cffa335ee|Hitem:34029:0:0:0:0:0:0:1498280580:100:0:0:0|h[Tiny Voodoo Mask]|h|r", -- [1]
"|cffa335ee|Hitem:33054:0:0:0:0:0:0:1351051430:100:0:0:0|h[The Seal of Danzalar]|h|r", -- [2]
"|cff1eff00|Hitem:29540:0:0:0:0:0:0:212482539:100:0:0:0|h[Reinforced Mining Bag]|h|r", -- [3]
"|cff0070dd|Hitem:39286:0:0:0:0:0:0:1715784914:100:0:0:0|h[Frosty's Collar]|h|r", -- [4]
"|cffffffff|Hitem:41174:0:0:0:0:0:0:317379232:100:0:0:0|h[Grand Firestone]|h|r", -- [5]
"|cff0070dd|Hitem:59596:0:0:0:0:0:0:1298024960:100:0:0:0|h[Safety Catch Removal Kit]|h|r", -- [6]
"|cff0070dd|Hitem:60218:0:0:0:0:0:0:911960064:100:0:0:0|h[Lure Master Tackle Box]|h|r", -- [7]
"|cffa335ee|Hitem:32757:0:0:0:0:0:0:1810181784:100:0:0:0|h[Blessed Medallion of Karabor]|h|r", -- [8]
"|cffffffff|Hitem:74844:0:0:0:0:0:0:0:100:0:0:0|h[Red Blossom Leek]|h|r", -- [9]
"|cffffffff|Hitem:67749:0:0:0:0:0:0:170159792:100:0:0:0|h[Electrified Ether]|h|r", -- [10]
"|cffa335ee|Hitem:71151:0:0:0:0:0:0:0:100:0:0:0|h[Trail of Embers]|h|r", -- [11]
"|cff1eff00|Hitem:118085:0:0:0:0:0:0:0:100:0:11:0|h[Admiral Taylor's Staff of Wisdom]|h|r", -- [12]
"|cffa335ee|Hitem:30238:0:0:0:0:0:0:-1578168576:100:0:0:0|h[Chestguard of the Vanquished Hero]|h|r", -- [13]
"|cffa335ee|Hitem:62047:0:0:0:0:0:0:652883456:100:0:0:0|h[Darkmoon Card: Volcano]|h|r", -- [14]
"|cffffffff|Hitem:69864:0:0:0:0:0:0:1116679552:100:0:0:0|h[Tarnished Crown]|h|r", -- [15]
"|cffffffff|Hitem:69865:0:0:0:0:0:0:1979946368:100:0:0:0|h[Gem Studded Bracelets]|h|r", -- [16]
"|cffffffff|Hitem:69262:0:0:0:0:0:0:1897496960:100:0:0:0|h[Black Ice]|h|r", -- [17]
"|cffffffff|Hitem:69863:0:0:0:0:0:0:1332738560:100:0:0:0|h[Golden Necklace]|h|r", -- [18]
"|cffe6cc80|Hitem:62040:0:0:0:0:0:0:0:100:0:0:0|h[Ancient Bloodmoon Cloak]|h|r", -- [19]
"|cffe6cc80|Hitem:61958:0:0:0:0:0:0:0:100:0:0:0|h[Tattered Dreadmist Mask]|h|r", -- [20]
"|cffffffff|Hitem:23323:0:0:0:0:0:0:1642841472:100:0:0:0|h[Crown of the Fire Festival]|h|r", -- [21]
"|cffffffff|Hitem:34685:0:0:0:0:0:0:0:100:0:0:0|h[Vestment of Summer]|h|r", -- [22]
"|cffffffff|Hitem:23324:0:0:0:0:0:0:0:100:0:0:0|h[Mantle of the Fire Festival]|h|r", -- [23]
"|cffffffff|Hitem:34683:0:0:0:0:0:0:0:100:0:0:0|h[Sandals of Summer]|h|r", -- [24]
"|cff0070dd|Hitem:32918:0:0:0:0:0:0:86831377:100:0:0:0|h[Filled Yellow Brewfest Stein]|h|r", -- [25]
"|cffffffff|Hitem:53097:0:0:0:0:0:0:1570233600:100:0:0:0|h[Gnomeregan Drape]|h|r", -- [26]
"|cffffffff|Hitem:12219:0:0:0:0:0:0:-1944230950:100:0:0:0|h[Unadorned Seal of Ascension]|h|r", -- [27]
"|cffffffff|Hitem:18818:0:0:0:0:0:0:542581888:100:0:0:0|h[Mor'zul's Instructions]|h|r", -- [28]
"|cffffffff|Hitem:18663:0:0:0:0:0:0:0:100:0:0:0|h[J'eevee's Jar]|h|r", -- [29]
"|cffffffff|Hitem:18629:0:0:0:0:0:0:0:100:0:0:0|h[Black Lodestone]|h|r", -- [30]
"|cffffffff|Hitem:18670:0:0:0:0:0:0:0:100:0:0:0|h[Xorothian Glyphs]|h|r", -- [31]
"|cff9d9d9d|Hitem:24140:0:0:0:0:0:0:1177972890:100:0:0:0|h[Blackened Urn]|h|r", -- [32]
"|cffffffff|Hitem:21744:0:0:0:0:0:0:382807649:100:0:0:0|h[Lucky Rocket Cluster]|h|r", -- [33]
"|cff1eff00|Hitem:9327:0:0:0:0:0:0:1753927622:100:0:0:0|h[Security DELTA Data Access Card]|h|r", -- [34]
"|cff1eff00|Hitem:17901:0:0:0:0:0:0:640325582:100:0:0:0|h[Stormpike Insignia Rank 3]|h|r", -- [35]
"|cff0070dd|Hitem:20534:0:0:0:0:0:0:2090234844:100:0:0:0|h[Abyss Shard]|h|r", -- [36]
"|cff0070dd|Hitem:32864:0:0:0:0:0:0:1926539752:100:0:0:0|h[Commander's Badge]|h|r", -- [37]
"|cff1eff00|Hitem:4397:0:0:0:0:0:0:2022786964:100:0:0:0|h[Gnomish Cloaking Device]|h|r", -- [38]
"|cffa335ee|Hitem:31113:0:0:0:0:0:0:393816404:100:0:0:0|h[Violet Badge]|h|r", -- [39]
"|cffffffff|Hitem:43154:0:0:0:0:0:0:0:100:0:0:0|h[Tabard of the Argent Crusade]|h|r", -- [40]
"|cffffffff|Hitem:43157:0:0:0:0:0:0:0:100:0:0:0|h[Tabard of the Kirin Tor]|h|r", -- [41]
"|cffffffff|Hitem:5976:0:0:0:0:0:0:0:100:0:0:0|h[Guild Tabard]|h|r", -- [42]
"|cff0070dd|Hitem:36941:0:0:0:0:0:0:1068503658:100:0:0:0|h[Competitor's Tabard]|h|r", -- [43]
"|cff1eff00|Hitem:31404:0:0:0:0:0:0:1845416039:100:0:0:0|h[Green Trophy Tabard of the Illidari]|h|r", -- [44]
"|cffffffff|Hitem:34085:0:0:0:0:0:0:1489776386:100:0:0:0|h[Red Winter Clothes]|h|r", -- [45]
"|cff1eff00|Hitem:21524:0:0:0:0:0:0:843892691:100:0:0:0|h[Red Winter Hat]|h|r", -- [46]
"|cffffffff|Hitem:23323:0:0:0:0:0:0:1474165312:100:0:0:0|h[Crown of the Fire Festival]|h|r", -- [47]
"|cff1eff00|Hitem:30847:0:0:0:0:0:0:1235132008:100:0:0:0|h[X-52 Rocket Helmet]|h|r", -- [48]
"|cff0070dd|Hitem:35279:0:0:0:0:0:0:144656751:100:0:0:0|h[Tabard of Summer Skies]|h|r", -- [49]
"|cff0070dd|Hitem:30348:0:0:0:0:0:0:0:100:0:0:0|h[Medallion of the Alliance]|h|r", -- [50]
"|cffa335ee|Hitem:19723:0:0:0:0:0:0:1596753894:100:0:0:0|h[Primal Hakkari Kossack]|h|r", -- [51]
"|cffa335ee|Hitem:19720:0:0:0:0:0:0:938967634:100:0:0:0|h[Primal Hakkari Sash]|h|r", -- [52]
"|cff1eff00|Hitem:19819:0:0:0:0:0:0:885803910:100:0:0:0|h[Punctured Voodoo Doll]|h|r", -- [53]
"|cffffffff|Hitem:33047:0:0:0:0:0:0:0:100:0:0:0|h[Belbi's Eyesight Enhancing Romance Goggles]|h|r", -- [54]
},
["LastCharacterImport"] = "",
["Reps"] = {
[1269] = 3,
[1337] = 3,
[1341] = 3,
[1375] = 0,
[1387] = 4,
[1376] = 3,
[1435] = 3,
[1388] = 0,
[1270] = 3,
},
["Faction"] = "Alliance",
["IconInfo"] = {
},
["Professions"] = {
},
["RealmName"] = "Frostmourne",
["BankItemsAndCounts"] = {
[109132] = 4,
[69262] = 1,
[9327] = 1,
[30847] = 1,
[43154] = 1,
[61958] = 1,
[18663] = 1,
[29460] = 2,
[31113] = 1,
[34685] = 1,
[109125] = 16,
[30238] = 1,
[41174] = 1,
[33054] = 1,
[18818] = 1,
[5976] = 1,
[113261] = 11,
[39682] = 5,
[109991] = 50,
[19723] = 1,
[109118] = 440,
[109126] = 13,
[74844] = 1,
[115508] = 18,
[4397] = 1,
[109992] = 53,
[53097] = 1,
[109119] = 1126,
[109127] = 5,
[29540] = 1,
[33047] = 1,
[67749] = 1,
[23323] = 2,
[39286] = 1,
[111366] = 29,
[62047] = 1,
[109128] = 3,
[111557] = 195,
[109134] = 2,
[72092] = 24,
[36941] = 1,
[30348] = 1,
[113264] = 9,
[109124] = 5,
[18670] = 1,
[32897] = 21,
[52078] = 6,
[34683] = 1,
[19819] = 1,
[60218] = 1,
[22523] = 4,
[32864] = 1,
[32757] = 1,
[116053] = 2,
[109133] = 2,
[118085] = 1,
[21100] = 6,
[21744] = 1,
[18629] = 1,
[113578] = 20,
[62040] = 1,
[19720] = 1,
[69863] = 1,
[12219] = 1,
[17202] = 20,
[32428] = 11,
[22524] = 2,
[120945] = 77,
[34029] = 1,
[35279] = 1,
[43157] = 1,
[89112] = 5,
[32569] = 250,
[109131] = 11,
[21524] = 1,
[24140] = 1,
[17901] = 1,
[69864] = 1,
[35188] = 9,
[41163] = 4,
[30426] = 2,
[74841] = 3,
[32918] = 1,
[29736] = 45,
[59596] = 1,
[23324] = 1,
[26045] = 74,
[20534] = 1,
[34085] = 1,
[34597] = 12,
[21745] = 4,
[31404] = 1,
[109129] = 5,
[33470] = 5,
[69865] = 1,
[26043] = 54,
[71151] = 1,
[28558] = 26,
},
}
|
--- everything establishing and maintaining a WiFi connection
local isConnected = false
_G.MyWifi = {
connect = function()
MyLed.waitForWifiConnection()
MyLog.info("Connect to WiFi " .. MySettings:staSsid())
wifi.setmode(wifi.STATION)
wifi.sta.config({
ssid = MySettings:staSsid(),
pwd = MySettings:staPw(),
auto = false,
save = false,
})
wifi.sta.sethostname(MySettings:hostName())
wifi.sta.connect()
end,
disconnect = function()
wifi.sta.disconnect()
end,
isConnected = function()
-- wifi.sta.status() returns wifi.STA_GOTIP even when the tally was thrown out of wifi -> so it's no good choice
return isConnected
end,
getIp = function()
return wifi.sta.getip()
end,
getMac = function()
return wifi.sta.getmac()
end,
}
wifi.setmaxtxpower(82)
wifi.eventmon.register(wifi.eventmon.STA_CONNECTED, function(T)
isConnected = false
MyLog.info("Connected to " .. T.SSID .. ". Waiting for IP.")
MyLed.waitForWifiIp()
end)
wifi.eventmon.register(wifi.eventmon.STA_DISCONNECTED, function(T)
isConnected = false
local humanReadable = T.reason
for key, val in pairs(wifi.eventmon.reason) do
if val == T.reason then
humanReadable = key
break
end
end
MyLog.error("Got disconnected from " ..T.SSID .. ". Reason " .. humanReadable)
MyLed.waitForWifiConnection()
local delay = 2000
if T.reason == wifi.eventmon.reason.AUTH_EXPIRE then delay = 200 end
tmr.create():alarm(delay, tmr.ALARM_SINGLE, MyWifi.connect)
end)
wifi.eventmon.register(wifi.eventmon.STA_GOT_IP, function(T)
MyLog.info("Got IP " .. T.IP)
isConnected = true
MyLed.waitForServerConnection()
MyTally:connect()
end)
wifi.eventmon.register(wifi.eventmon.STA_DHCP_TIMEOUT, function()
isConnected = false
MyLog.error("DHCP timeout")
MyLed.waitForWifiConnection()
MyWifi.disconnect()
tmr.create():alarm(200, tmr.ALARM_SINGLE, MyWifi.connect)
end)
|
local module = {}
local PM25_E = 0
local PM100 = 0
local PM25_E = 0
local PM25_D = 0
local PM100_E = 0
local PM100_D = 0
local state_notinit = 0
-- state constants
local STATE_NOTINIT = 0
local STATE_LOCKED = 1
local STATE_UNLOCKED = 2
local STATE_SLEEPING = 3
local parser_state = STATE_NOTINIT
local mod_callback = nil
local function uart_rx(data)
dlen = string.len(data)
if parser_state == STATE_LOCKED then
-- synced state
if dlen == 10 then
CMD = string.byte(data, 2)
if CMD == 0xC0 then
PM25 = string.byte(data, 3) + (string.byte(data, 4) * 256)
PM100 = string.byte(data, 5) + (string.byte(data, 6) * 256)
PM25_E = PM25 / 10
PM25_D = PM25 - (PM25_E * 10)
PM100_E = PM100 / 10
PM100_D = PM100 - (PM100_E * 10)
mod_callback(PM25_E, PM25_D, PM100_E, PM100_D)
end
end
else
if dlen >= 10 then
if 0xAA == string.byte(data, dlen-9) then
parser_state = STATE_LOCKED
uart.on("data")
uart.on("data",10,uart_rx, 0)
end
end
end
end
-- API
function module.enable(on)
if on == 1 then
if parser_state == 0 then
parser_state = STATE_UNLOCKED
print("SDS011 is go")
node.output(function(nodestr) end, 0) -- kill node output on UART TX !
uart.setup(0, 9600, 8, uart.PARITY_NONE, uart.STOPBITS_1, 0)
uart.on("data","\171",uart_rx, 0)
end
end
end
function module.sleep(go_to_sleep)
work = 0x00
csum = 0x05 --0x205
if 0 == go_to_sleep then
work = 0x01
csum = 0x06 --0x206
end
uart.write(0, string.char(0xAA,0xB4,0x06,0x01,work,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,csum,0xAB))
end
function module.init(start, cb)
mod_callback = cb
module.enable(start)
end
return module |
WINDOWS_WIDTH = 1280 * 0.75
WINDOWS_HEIGHT = 720 * 0.75
VIRTUAL_WIDTH = 432 * 0.75
VIRTUAL_HEIGHT = 243 * 0.75
Class = require 'class'
push = require 'push'
require 'Util'
require 'Map'
-- performs initialization of all objects and data needed by program
function love.load()
math.randomseed(os.time())
-- an object to contain our map data
map = Map()
love.graphics.setDefaultFilter('nearest', 'nearest')
push:setupScreen(VIRTUAL_WIDTH, VIRTUAL_HEIGHT, WINDOWS_WIDTH, WINDOWS_HEIGHT, {
fullscreen = false,
resizable = false,
vsync = true
})
end
function love.update(dt)
map:update(dt)
end
function love.draw()
push:apply('start')
love.graphics.translate(math.floor(-map.camX + 0.5), math.floor(-map.camY + 0.5))
love.graphics.clear(108 / 255, 140 / 255, 255 / 255, 255 / 255)
-- love.graphics.print("Hello World")
map:render()
push:apply('end')
end
|
-- Generated By protoc-gen-lua Do not Edit
local protobuf = require "protobuf/protobuf"
module('ActivateFashionCharm_pb')
ACTIVATEFASHIONCHARM = protobuf.Descriptor();
local ACTIVATEFASHIONCHARM_SUIT_ID_FIELD = protobuf.FieldDescriptor();
local ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD = protobuf.FieldDescriptor();
local ACTIVATEFASHIONCHARM_ITEMS_FIELD = protobuf.FieldDescriptor();
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.name = "suit_id"
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.full_name = ".KKSG.ActivateFashionCharm.suit_id"
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.number = 1
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.index = 0
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.label = 1
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.has_default_value = false
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.default_value = 0
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.type = 13
ACTIVATEFASHIONCHARM_SUIT_ID_FIELD.cpp_type = 3
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.name = "activate_count"
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.full_name = ".KKSG.ActivateFashionCharm.activate_count"
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.number = 2
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.index = 1
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.label = 1
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.has_default_value = false
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.default_value = 0
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.type = 13
ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD.cpp_type = 3
ACTIVATEFASHIONCHARM_ITEMS_FIELD.name = "items"
ACTIVATEFASHIONCHARM_ITEMS_FIELD.full_name = ".KKSG.ActivateFashionCharm.items"
ACTIVATEFASHIONCHARM_ITEMS_FIELD.number = 3
ACTIVATEFASHIONCHARM_ITEMS_FIELD.index = 2
ACTIVATEFASHIONCHARM_ITEMS_FIELD.label = 3
ACTIVATEFASHIONCHARM_ITEMS_FIELD.has_default_value = false
ACTIVATEFASHIONCHARM_ITEMS_FIELD.default_value = {}
ACTIVATEFASHIONCHARM_ITEMS_FIELD.type = 13
ACTIVATEFASHIONCHARM_ITEMS_FIELD.cpp_type = 3
ACTIVATEFASHIONCHARM.name = "ActivateFashionCharm"
ACTIVATEFASHIONCHARM.full_name = ".KKSG.ActivateFashionCharm"
ACTIVATEFASHIONCHARM.nested_types = {}
ACTIVATEFASHIONCHARM.enum_types = {}
ACTIVATEFASHIONCHARM.fields = {ACTIVATEFASHIONCHARM_SUIT_ID_FIELD, ACTIVATEFASHIONCHARM_ACTIVATE_COUNT_FIELD, ACTIVATEFASHIONCHARM_ITEMS_FIELD}
ACTIVATEFASHIONCHARM.is_extendable = false
ACTIVATEFASHIONCHARM.extensions = {}
ActivateFashionCharm = protobuf.Message(ACTIVATEFASHIONCHARM)
|
vim.cmd "autocmd BufWritePost plugins.lua PackerCompile" -- Auto compile when there are changes in plugins.lua
require("packer").startup(
function(use)
-- Packer can manage itself
use "wbthomason/packer.nvim"
use {
"rmehri01/onenord.nvim",
config = function()
require("onenord").setup()
end
}
-- Statusline
use {"feline-nvim/feline.nvim"}
use "windwp/windline.nvim"
-- File tree
use "kyazdani42/nvim-web-devicons"
use "kyazdani42/nvim-tree.lua"
-- Highlight hex colors
use "norcalli/nvim-colorizer.lua"
-- Autoformater
use "lukas-reineke/format.nvim"
-- Highlight other uses of the current word under the cursor
use "RRethy/vim-illuminate"
-- Lua scratchpad
use "rafcamlet/nvim-luapad"
-- Toggle floating terminal inside nvim
use "voldikss/vim-floaterm"
-- Treesitter Plugins {{{
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}
use "nvim-treesitter/playground"
-- }}}
-- LSP Plugins {{{
use "nvim-lua/lsp-status.nvim"
use "neovim/nvim-lspconfig"
use {
"hrsh7th/nvim-cmp",
requires = {
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-nvim-lua",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-path"
}
}
use "nvim-lua/lsp_extensions.nvim"
use "onsails/lspkind-nvim"
-- }}}
-- Tmux Plugins {{{
use "tmux-plugins/vim-tmux-focus-events"
-- Allows navigation between vim and tmux
use "christoomey/vim-tmux-navigator"
-- }}}
-- Comment helper
use {
"numToStr/Comment.nvim",
requires = {
"JoosepAlviste/nvim-ts-context-commentstring"
}
}
use {
"kevinhwang91/nvim-bqf",
requires = {
{
"junegunn/fzf",
run = function()
vim.fn["fzf#install"]()
end
}
}
}
-- Run tests inside nvim
use "David-Kunz/jester"
-- Live Markdown previews
use {"iamcco/markdown-preview.nvim", run = "cd app && yarn install"}
-- Additional search highlighting
use "kevinhwang91/nvim-hlslens"
-- Telescope Plugins {{{
use "nvim-lua/popup.nvim"
use "nvim-lua/plenary.nvim"
use "nvim-telescope/telescope.nvim"
use "nvim-telescope/telescope-fzf-writer.nvim"
use {"nvim-telescope/telescope-fzf-native.nvim", run = "make"}
-- }}}
-- Git status integration
use {"lewis6991/gitsigns.nvim", requires = {"nvim-lua/plenary.nvim"}}
use {
"TimUntersberger/neogit",
requires = {
"nvim-lua/plenary.nvim",
"sindrets/diffview.nvim"
}
}
-- Documentation generator
use {
"kkoomen/vim-doge",
run = function()
vim.fn["doge#install"]()
end
}
-- Git UI
use "tpope/vim-fugitive"
-- Adds commands to easliy change surrounding quotes, brackets, etc.
use "tpope/vim-surround"
-- Test startup time
use "tweekmonster/startuptime.vim"
-- Swap file handling
use "gioele/vim-autoswap"
-- Maximize buffers
use "szw/vim-maximizer"
-- Adds debugger to nvim
-- use "puremourning/vimspector"
use "mfussenegger/nvim-dap"
use "nvim-telescope/telescope-dap.nvim"
use "theHamsta/nvim-dap-virtual-text"
use {
"folke/lsp-trouble.nvim",
requires = "kyazdani42/nvim-web-devicons",
config = function()
require("trouble").setup {}
end
}
use "ray-x/lsp_signature.nvim"
-- Snippets
use "hrsh7th/vim-vsnip"
use "rafamadriz/friendly-snippets"
use {
"SmiteshP/nvim-gps",
requires = "nvim-treesitter/nvim-treesitter"
}
use {
"vuki656/package-info.nvim",
requires = "MunifTanjim/nui.nvim",
config = function()
require("package-info").setup()
end
}
use "ggandor/lightspeed.nvim"
use {"ThePrimeagen/harpoon", requires = "nvim-lua/plenary.nvim"}
end
)
-- load plugin configs
require("gb.autoswap")
require("gb.colorizer")
require("gb.commenter")
require("gb.debugHelper")
require("gb.debugger")
require("gb.file-explorer")
require("gb.finder")
require("gb.format")
require("gb.git")
require("gb.harpoon")
require("gb.hlslens")
require("gb.lsp")
require("gb.lsp-trouble")
require("gb.maximizer")
require("gb.remaps")
require("gb.statusline")
require("gb.term")
require("gb.test")
require("gb.tmux-navigator")
require("gb.treesitter")
|
-- datetime.lua
-- lib = kernel32.dll
local ffi = require("ffi");
local core_string = require("core_string_l1_1_0");
local core_datetime = require("core_datetime_l1_1_1");
local core_errorhandling = require("core_errorhandling_l1_1_1");
local core_string = require("core_string_l1_1_0");
local L = core_string.toUnicode;
local GetTimeFormat = function(lpFormat, dwFlags, lpTime, lpLocaleName)
dwFlags = dwFlags or 0;
--lpFormat = lpFormat or "hh':'mm':'ss tt";
if lpFormat then
lpFormat = L(lpFormat);
end
if lpLocaleName then
lpLocaleName = L(lpLocaleName);
end
-- first call to figure out how big the string needs to be
local buffsize = core_datetime.GetTimeFormatEx(
lpLocaleName,
dwFlags,
lpTime,
lpFormat,
lpDataStr,
0);
-- buffsize should be the required size
if buffsize < 1 then
return false, core_errorhandling.GetLastError();
end
local lpDataStr = ffi.new("WCHAR[?]", buffsize);
local res = core_datetime.GetTimeFormatEx(
lpLocaleName,
dwFlags,
lpTime,
lpFormat,
lpDataStr,
buffsize);
if res == 0 then
return false, core_errorhandling.GetLastError();
end
-- We have a widechar, turn it into ASCII
return core_string.toAnsi(lpDataStr);
end
local GetDateFormat = function(lpFormat, dwFlags, lpDate, lpLocaleName)
dwFlags = dwFlags or 0;
if lpFormat then
lpFormat = L(lpFormat);
end
local buffsize = core_datetime.GetDateFormatEx(
lpLocaleName,
dwFlags,
lpDate,
lpFormat,
lpDataStr,
0,
nil);
-- buffsize should be the required size
if buffsize < 1 then
return false, core_errorhandling.GetLastError();
end
local lpDataStr = ffi.new("WCHAR[?]", buffsize);
local res = core_datetime.GetDateFormatEx(
lpLocaleName,
dwFlags,
lpDate,
lpFormat,
lpDataStr,
buffsize,
nil);
if res == 0 then
return false, core_errorhandling.GetLastError();
end
-- We have a widechar, turn it into ASCII
return core_string.toAnsi(lpDataStr);
end
local time = function(...)
print(GetTimeFormat(...));
end
local date = function(...)
print(GetDateFormat(...));
end
return {
time = time,
date = date,
getTime = GetTimeFormat;
getDate = GetDateFormat;
GetDateFormat = GetDateFormat,
GetTimeFormat = GetTimeFormat,
}
|
hook.Add("PlayerSpawnedProp", "nadmin_spawn_log", function(ply, model, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned prop \"" .. model .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedSENT", "nadmin_spawn_log", function(ply, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned scripted entity \"" .. ent:GetClass() .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedNPC", "nadmin_spawn_log", function(ply, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned NPC \"" .. ent:GetClass() .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedVehicle", "nadmin_spawn_log", function(ply, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned vehicle \"" .. ent:GetClass() .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedEffect", "nadmin_spawn_log", function(ply, model, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned effect \"" .. model .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedRagdoll", "nadmin_spawn_log", function(ply, model, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned ragdoll \"" .. model .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSpawnedSWEP", "nadmin_spawn_log", function(ply, ent)
nadmin:Log("entity_spawns", ply:PlayerToString("nick (steamid)<ipaddress>") .. " spawned weapon \"" .. ent:GetClass() .. "\"")
ent.nadmin_owner = ply
end)
hook.Add("PlayerSay", "nadmin_chat_log", function(ply, txt, isTeam)
nadmin:Log("messages", ply:PlayerToString("nick (steamid)") .. nadmin:Ternary(isTeam, " (TEAM)", "") .. ": " .. txt, true)
end)
|
return {
id = "goldscoob",
name = "Golden Scoobis",
description = "scoob!",
type = "hat",
rarity = 5,
hidden = false,
}
|
local addon_name, addon_env = ...
-- Confused about mix of CamelCase and_underscores?
-- Camel case comes from copypasta of how Blizzard calls returns/fields in their code and deriveates
-- Underscore are my own variables
-- [AUTOLOCAL START]
local After = C_Timer.After
local GARRISON_SHIP_OIL_CURRENCY = GARRISON_SHIP_OIL_CURRENCY
local GetCurrencyInfo = GetCurrencyInfo
local GetFollowerSoftCap = C_Garrison.GetFollowerSoftCap
local GetItemInfoInstant = GetItemInfoInstant
local GetNumActiveFollowers = C_Garrison.GetNumActiveFollowers
local LE_FOLLOWER_TYPE_SHIPYARD_6_2 = LE_FOLLOWER_TYPE_SHIPYARD_6_2
local UnitGUID = UnitGUID
local dump = DevTools_Dump
local match = string.match
local pairs = pairs
local print = print
local tinsert = table.insert
local tsort = table.sort
local wipe = wipe
-- [AUTOLOCAL END]
local Widget = addon_env.Widget
local gmm_buttons = addon_env.gmm_buttons
local top_for_mission = addon_env.top_for_mission
local GetFilteredFollowers = addon_env.GetFilteredFollowers
local UpdateMissionListButton = addon_env.UpdateMissionListButton
local MissionPage = GarrisonShipyardFrame.MissionTab.MissionPage
local function ShipyardMissionList_PartyButtonOnClick(self)
if addon_env.RegisterManualInterraction then addon_env.RegisterManualInterraction() end
addon_env.mission_page_pending_click = "ShipyardMissionPage1"
return self:GetParent():Click()
end
local shipyard_mission_list_gmm_button_template = {
"Button", nil, "UIPanelButtonTemplate",
Width = 80, Height = 40, FrameLevelOffset = 3, Scale = 0.60,
OnClick = ShipyardMissionList_PartyButtonOnClick,
}
local shipyard_mission_list_gmm_loot_template = {
"Button", nil, "UIPanelButtonTemplate",
Width = 40, Height = 40, FrameLevelOffset = 3, Scale = 0.75,
OnClick = ShipyardMissionList_PartyButtonOnClick,
Hide = 1,
}
local loot_frames = {}
local function GarrisonShipyardMap_UpdateMissions_More()
-- Blizzard updates those when not visible too, but there's no reason to copy them.
local self = GarrisonShipyardFrame.MissionTab.MissionList
if not self:IsVisible() then return end
local missions = self.missions
local mission_frames = self.missionFrames
if addon_env.top_for_mission_dirty then
wipe(top_for_mission)
addon_env.top_for_mission_dirty = false
end
local filtered_followers = GetFilteredFollowers(LE_FOLLOWER_TYPE_SHIPYARD_6_2)
local more_missions_to_cache
local _, oil = GetCurrencyInfo(GARRISON_SHIP_OIL_CURRENCY)
for i = 1, #missions do
local mission = missions[i]
-- Cache mission frames
local frame = mission_frames[i]
if frame then
if (mission.offeredGarrMissionTextureID ~= 0 and not mission.inProgress and not mission.canStart) then
frame:Hide()
else
local gmm_button = gmm_buttons['ShipyardMissionList' .. i]
if not gmm_button then
shipyard_mission_list_gmm_button_template.parent = frame
gmm_button = Widget(shipyard_mission_list_gmm_button_template)
gmm_button:SetText(i)
gmm_button:SetPoint("TOP", frame, "BOTTOM", 0, 10)
gmm_buttons['ShipyardMissionList' .. i] = gmm_button
shipyard_mission_list_gmm_loot_template.parent = gmm_button
local loot_frame = Widget(shipyard_mission_list_gmm_loot_template)
loot_frame:SetPoint("LEFT", gmm_button, "RIGHT", -3, 0)
loot_frames[i] = loot_frame
end
if (mission.inProgress) then
gmm_button:Hide()
else
gmm_button:Show()
more_missions_to_cache = UpdateMissionListButton(mission, filtered_followers, frame, gmm_button, more_missions_to_cache, oil, 0.5)
local reward_texture
for id, reward in pairs(mission.rewards) do
if reward.itemID then
local _, _, _, _, itemTexture = GetItemInfoInstant(reward.itemID)
reward_texture = itemTexture
elseif reward.currencyID then
local currency_id = reward.currencyID
if currency_id ~= 0 then
local _, _, currencyTexture = GetCurrencyInfo(reward.currencyID);
reward_texture = currencyTexture
end
end
if reward_texture then break end
end
local loot_frame = loot_frames[i]
if reward_texture then
loot_frame:SetNormalTexture(reward_texture)
loot_frame:Show()
else
loot_frame:Hide()
end
end
end
end
end
if more_missions_to_cache and more_missions_to_cache > 0 then
After(0.001, GarrisonShipyardMap_UpdateMissions_More)
end
end
hooksecurefunc("GarrisonShipyardMap_UpdateMissions", GarrisonShipyardMap_UpdateMissions_More)
local function ShipyardInitUI()
local prefix = "Shipyard" -- hardcoded, because it is used in OUR frame names and should be static for GMM_Click
local follower_type = LE_FOLLOWER_TYPE_SHIPYARD_6_2
local o = addon_env.InitGMMFollowerOptions({
follower_type = follower_type,
gmm_prefix = prefix,
custom_mission_list = true
})
addon_env.MissionPage_ButtonsInit(follower_type)
ShipyardInitUI = nil
end
ShipyardInitUI()
local BestForCurrentSelectedMission = addon_env.BestForCurrentSelectedMission
hooksecurefunc(GarrisonShipyardFrame, "ShowMission", function()
BestForCurrentSelectedMission(LE_FOLLOWER_TYPE_SHIPYARD_6_2, MissionPage, "ShipyardMissionPage")
end)
gmm_buttons.StartShipyardMission = MissionPage.StartMissionButton
local spec_count = {}
local spec_name = {}
local spec_list = {}
hooksecurefunc("GossipFrameOptionsUpdate", function(...)
local guid = UnitGUID("npc")
if not (guid and (match(guid, "^Creature%-0%-%d+%-%d+%-%d+%-94429%-") or match(guid, "^Creature%-0%-%d+%-%d+%-%d+%-95002%-"))) then return end
local filtered_followers = GetFilteredFollowers(LE_FOLLOWER_TYPE_SHIPYARD_6_2)
wipe(spec_count)
for idx = 1, #filtered_followers do
local follower = filtered_followers[idx]
local spec = follower.classSpec
local prev_count = spec_count[spec] or 0
spec_count[spec] = prev_count + 1
spec_name[spec] = follower.className
end
wipe(spec_list)
for spec in pairs(spec_name) do tinsert(spec_list, spec) end
tsort(spec_list)
for idx = 1, #spec_list do
local spec = spec_list[idx]
print(spec_name[spec] .. ": " .. spec_count[spec])
end
local max_followers = GetFollowerSoftCap(LE_FOLLOWER_TYPE_SHIPYARD_6_2)
local num_active_followers = GetNumActiveFollowers(LE_FOLLOWER_TYPE_SHIPYARD_6_2)
print(GARRISON_FLEET .. ": " .. num_active_followers .. "/" .. max_followers)
end)
|
Enemy = Object:extend()
local offsetWidth = 0
local offsetHeight = 32
local textureWidth = 8
local textureHeight = 8
function Enemy:new(x, y)
self.speed = 300
self.x = x
self.y = y
self.spriteSheet = love.graphics.newImage('Sprites.png')
self.animationGrid = ANIMATE.newGrid(8, 8, self.spriteSheet:getWidth(), self.spriteSheet:getHeight(), 0, 32)
self.animation = ANIMATE.newAnimation(self.animationGrid('1-4', 1), 0.1)
self.sprite = love.graphics.newQuad(offsetWidth, offsetHeight, textureWidth, textureHeight, self.spriteSheet:getDimensions())
end
function Enemy:update(dt)
self.animation:update(dt)
end
function Enemy:draw()
self.spriteSheet:setFilter('nearest')
self.animation:draw(self.spriteSheet, self.x, self.y, 0, 4, 4, 8, 8)
end
function Enemy:left()
return self.x
end
function Enemy:right()
return self.x + textureWidth
end
function Enemy:top()
return self.y
end
function Enemy:bottom()
return self.y + textureHeight
end
|
local L = BigWigs:NewBossLocale("Aqu'sirr", "deDE")
if not L then return end
if L then
L.warmup_trigger = "Wagt es nicht, diesen heiligen Ort mit Eurer Anwesenheit zu schänden!"
end
L = BigWigs:NewBossLocale("Lord Stormsong", "deDE")
if L then
L.warmup_trigger_horde = "Eindringlinge?! Ich versenke Eure Leichen in den schwarzen Tiefen, wo sie auf ewig gemartert werden!"
L.warmup_trigger_alliance = "Meister! Stoppt diesen Wahnsinn! Die Flotte von Kul Tiras darf nicht der Dunkelheit anheimfallen!"
end
L = BigWigs:NewBossLocale("Shrine of the Storm Trash", "deDE")
if L then
L.templar = "Schreintempler"
L.spiritualist = "Spiritualistin der Gezeitenweisen"
L.galecaller_apprentice = "Sturmbeschwörerlehrling"
L.windspeaker = "Windsprecherin Heldis"
L.ironhull_apprentice = "Lehrling von Eisenkiel"
L.runecarver = "Runenmetz Sorn"
L.guardian_elemental = "Wächterelementar"
L.ritualist = "Tiefseeritualist"
L.cultist = "Abgrundkultist"
L.depthbringer = "Ertrunkener Tiefenbringer"
L.living_current = "Lebendige Strömung"
L.enforcer = "Vollstrecker der Gezeitenweisen"
end
|
--[[ File
@description:
This file is for testing percetion modules
in either simulated or real-world scenarios
in the form of testsets or on-the-fly tests.
@version: V0.20
@author: Fangyi Zhang email:gzzhangfangyi@gmail.com
@acknowledgement:
ARC Centre of Excellence for Robotic Vision (ACRV)
Queensland Univsersity of Technology (QUT)
@history:
V0.00 23/06/2016 developed the first version
V0.01 29/06/2016 added the recovering of normalized angles to real values
V0.10 02/07/2016 adapted the codes for the class of real_sim
V0.11 04/07/2016 adapted the codes for the updated function of one_frame
V0.12 06/07/2016 added a line to print normalized errors
V0.13 08/07/2016 merged different testing cases
V0.14 11/07/2016 fixed some bugs in the function of single_joint_test
V0.15 13/07/2016 added the function of plotting a learning curve
V0.16 30/08/2016 updated the function of rand_pose to use testset
V0.17 15/05/2017 added the single sample test function for the test of vrep dataset
V0.18 19/05/2017 fixed the bug in the single sample test function
V0.19 03/06/2017 added one function for real perception test
v0.20 23/07/2018 re-organized this script
]]
-- detect whether "dmn" has been constructed or is still nil
if not dmn then
require "common/initenv"
end
-- require "manipulation_sim_class" -- for loading the lua manipulation simulator
require "common/visualization" -- for network visualization
require "common/utilities" -- some utilization functions
require "common/curve_plot" -- for ploting curves
require "python"
require "image"
local rospy = python.import("rospy")
-- get settings from the running script
local cmd = torch.CmdLine()
cmd:text()
cmd:text('Train Agent in Environment:')
cmd:text()
cmd:text('Options:')
cmd:option('-name', '', 'filename used for saving network and training history')
cmd:option('-network', '', 'reload pretrained network')
cmd:option('-net_start', '', 'network starting steps')
cmd:option('-net_end', '', 'network ending steps')
cmd:option('-net_step', '', 'network episode steps')
cmd:option('-agent', '', 'name of agent file to use')
cmd:option('-agent_params', '', 'string of agent parameters')
cmd:option('-seed', 1, 'fixed input seed for repeatable experiments')
cmd:option('-saveNetworkParams', false,
'saves the agent network in a separate file')
cmd:option('-prog_freq', 5*10^3, 'frequency of progress output')
cmd:option('-save_freq', 5*10^4, 'the model is saved every save_freq steps')
cmd:option('-eval_freq', 10^4, 'frequency of greedy evaluation')
cmd:option('-save_versions', 0, '')
cmd:option('-steps', 10^5, 'number of training steps to perform')
cmd:option('-verbose', 2,
'the higher the level, the more information is printed to screen')
cmd:option('-threads', 1, 'number of BLAS threads')
cmd:option('-gpu', -1, 'gpu flag')
-- Parameters for controlling screen display and curve plotting
cmd:option('-display', 0, 'display flag') -- Set to 1 to show agent train
cmd:option('-display_avail', 0, 'display available flag') -- Checks to see if a display is available
cmd:option('-plot_filename', 'plot.png', 'filename used for saving average action value curve') --Set plot filename
-- End Addition
-- Parameters for generating a learning curve
cmd:option('-sim_file', 'manipulator_1dof', 'simulator filename') --Set simulator filename
cmd:option('-test_mode', 'statistic', 'testing mode') --Set simulator filename
cmd:option('-testset', '', 'testing set') --Set simulator filename
cmd:option('-learning_curve', 'false', 'whether to plot a learning curve') --Set simulator filename
-- End Addition
cmd:text()
-- Parse parameters into a lua table saved as 'opt'
local opt = cmd:parse(arg)
--- General setup.
-- override print to always flush the output
local old_print = print
local print = function(...)
old_print(...)
io.flush()
end
local game_actions, agent
if opt.test_mode ~= "learning_curve" then
game_actions, agent, opt = setup(opt)
end
-- TODO: Adapt the visualization class for various cases
-- Initialize a visulization object for the network
local visu_weight = true
-- local input_dims = agent.input_dims
-- local visu_ob = visualization{network=agent.network,
-- input_dims=input_dims,
-- visu_weight=visu_weight,
-- options=opt}
-- Load manipulator
local manip_ob = require(opt.sim_file)
-- A function for evaluating the performance of a perception module using a test set.
function statistic_test(agent_, manip_ob_)
local screen, label = manip_ob_:get_batch(500)
screen = agent_:preprocess(screen):float()
local cost, cost_sum = agent_:compute_validation_statistics(screen, label)
print("================================================")
print("cost: ", cost)
print("cost_sum: ", cost_sum)
return screen[1]
end
-- A function for testing each single joint angle detection in planar reaching
function single_joint_test(agent_, manip_ob_)
-- Set initial joint configurations
if not start_pose then
start_pose = {math.pi/2, -math.pi/2, 0.0, -math.pi/2, math.pi/2, -math.pi/2, math.pi/2}
end
-- Set a starting direction to move one joint
if not direc then
direc = 1
end
local joint_index = 5 -- Set joint index to rotate
local joint_step = 0.04 -- Set joint step length
local all_n = 25 -- Set the number of ratations to test
-- Test the single-joint cases
if start_pose[joint_index] + all_n*joint_step >= manip_ob.joint_pose_max[joint_index] then
direc = -1
end
if start_pose[joint_index] - all_n*joint_step <= manip_ob.joint_pose_min[joint_index] then
direc = 1
end
start_pose[joint_index] = start_pose[joint_index] + direc * joint_step
-- Get the screenshot and label for current arm configuration
-- local start_target = manip_ob_:getEndEffectorPos(start_pose)
-- local screen, label = manip_ob_:one_frame(start_pose,start_target)
local screen, label = manip_ob_:one_frame(start_pose,nil)
-- Estimate the arm pose for current screenshot
local predicted_pos = agent_:test(screen) -- get the predicted low-dimensional features
print("normalized error: ", torch.csub(predicted_pos,label))
-- Denormalize the predicted arm pose
predicted_pos = manip_ob_:reallignLowDimTensor(predicted_pos[1])
predicted_pos = manip_ob_:recoverLowDimTensor(predicted_pos) -- recover to original values
local true_pos = manip_ob_:reallignLowDimTensor(label)
true_pos = manip_ob_:recoverLowDimTensor(true_pos)
-- print("ground truth: ", torch.Tensor(robot_configuration.current_pos))
-- print("predicted: ", torch.Tensor(current_pos))
-- print("predicted: ", torch.Tensor(current_pos):sub(4,5))
-- print("predicted: ", predicted_pos)
-- print("ground_truth: ", true_pos)
print("original error: ", predicted_pos:csub(true_pos))
return screen
end
-- A function to recalibrate the pixel values to the inverval [0,1]
function image_minmax(im_)
local im_min = im_:min()
local im_max = im_:max()
local normalized_im = im_:add(-im_min):div(im_max-im_min)
return normalized_im
end
-- A function for testing a perception module using a single frame
function single_sample_test(agent_, manip_ob_)
-- local start_target = manip_ob_:getEndEffectorPos(start_pose)
-- local screen, label = manip_ob_:one_frame(start_pose,start_target)
local screen, label = manip_ob_:get_one_sample()
local true_pos = torch.Tensor(label)
label = manip_ob_:outputLowDimTensor(nil, label)
-- print("normalized label: ", label)
-- screen = image_minmax(screen)
-- print("Max:",screen:max())
-- print("Min:",screen:min())
-- select an action to take
local predicted_pos = agent_:test(screen) -- get the predicted low-dimensional features
print("===================================")
print("normalized error: ", torch.csub(predicted_pos,label))
predicted_pos = manip_ob_:recoverLowDimTensor(predicted_pos) -- recover to original values
-- print("ground truth: ", torch.Tensor(robot_configuration.current_pos))
-- print("predicted: ", torch.Tensor(current_pos))
-- print("predicted: ", torch.Tensor(current_pos):sub(4,5))
print("predicted: ", predicted_pos)
-- print("ground_truth: ", true_pos)
print("original error: ", predicted_pos:csub(true_pos))
return screen
end
-- A function for testing a perception module using a single frame
-- but without labels, e.g., in the real world
function single_sample_test_real(agent_, manip_ob_)
-- local start_target = manip_ob_:getEndEffectorPos(start_pose)
-- local screen, label = manip_ob_:one_frame(start_pose,start_target)
local screen = manip_ob_:get_one_frame()
-- local true_pos = torch.Tensor(label)
-- label = manip_ob_:outputLowDimTensor(nil, label)
-- print("normalized label: ", label)
-- select an action to take
local predicted_pos = agent_:test(screen) -- get the predicted low-dimensional features
predicted_pos = manip_ob_:recoverLowDimTensor(predicted_pos) -- recover to original values
print("===================================")
-- print("ground truth: ", torch.Tensor(robot_configuration.current_pos))
-- print("predicted: ", torch.Tensor(current_pos))
-- print("predicted: ", torch.Tensor(current_pos):sub(4,5))
print("predicted: ", predicted_pos)
-- print("original error: ", predicted_pos:csub(true_pos))
return screen
end
-- A function for evaluating the performance of a perception module using a test set
-- the old version, which calculate in a minibatch manner
function test_set_statistic_old(agent_, manip_ob_, testset_)
if not testset_s then
testset_s = load_pre_constructed_dataset(testset_)
s_screen = testset_s.image
l_label = testset_s.label
-- l_label = testset_s.object_position
end
local screen, label = manip_ob_:get_batch(400)
screen = agent_:preprocess(screen):float()
local p = agent_.network:forward(screen):float()
-- Compute error = p - l
local delta = p:clone():float()
delta:add(-1, label)
delta = delta:float()
local v_mu = torch.mean(delta,1)
local v_sigma = torch.std(delta,1)
local e_2 = torch.pow(delta,2)
local e = torch.sum(e_2,2)
e:sqrt()
local mu = torch.mean(e)
local sigma = torch.std(e)
print("================================================")
print("norm: ", mu)
print("norm_std: ", sigma)
print("e: ", v_mu)
print("e_std: ", v_sigma)
-- print("norm tensor:",e)
return screen[1]
end
-- A function for evaluating the performance of a perception module using a test set
-- the latest version, which calculate frame by frame in a for loop
function test_set_statistic(agent_, manip_ob_, testset_)
if not testset_s then
testset_s = load_pre_constructed_dataset(testset_)
s_screen = testset_s.image
-- l_label = testset_s.label
l_label = testset_s.object_position
if l_label == nil then
l_label = testset_s.label
end
sample_amount = testset_s.sample_amount
-- if sample_amount > 20 then
-- sample_amount = 20
-- end
end
local screen = torch.Tensor(sample_amount, unpack(s_screen[1]:size():totable()))
local label = torch.Tensor(sample_amount, unpack(torch.Tensor(l_label[1]):size():totable()))
local p = torch.Tensor(sample_amount, 3)
for i=1,sample_amount do
screen[i] = s_screen[i]
-- screen[i] = manip_ob_:image_normalization(screen[i])
local l_temp = table.copy(l_label[i])
l_temp[3] = l_temp[3] + 0.0325
label[i] = manip_ob_:outputLowDimTensor(nil,l_temp)
local p_one_frame = agent_:test(screen[i]):float()
if p_one_frame:size(1) > 3 then
p_one_frame = p_one_frame:narrow(1,1,3)
end
p[i] = p_one_frame
-- image.save("test"..i..".png", screen[i])
-- Save each test images for analysis
-- visu_ob:screen_shots(screen[i], i, true)
end
-- screen = agent_:preprocess(screen):float()
-- local p = agent_.network:forward(screen):float()
-- local p = agent_:test(screen):float()
--
-- if p:size(2) > 3 then
-- p = p:narrow(2,1,3)
-- end
-- Compute error = p - l
local delta = p:clone():float()
delta:add(-1, label)
delta = delta:float()
local v_mu = torch.mean(delta,1)
local v_sigma = torch.std(delta,1)
local e_2 = torch.pow(delta,2)
local e = torch.sum(e_2,2)
e:sqrt()
local mu = torch.mean(e)
local sigma = torch.std(e)
local med, _ = torch.median(e,1)
med = med[1][1]
print("-----------------------------------------------")
print("median: ",med)
print("norm: ", mu)
print("norm_std: ", sigma)
print("e: ", v_mu)
print("e_std: ", v_sigma)
print("norm tensor:",e)
print("================================================")
return screen[1], {med=med,mu=mu,sigma=sigma}
end
-- A function for evaluating perception modules in different training steps
-- to plot a learning curve
function get_learning_curve(manip_ob_, testset_, opt_)
--- General setup.
local network_prefix = opt_.network
local start_agent = opt_.net_start or 5000
local end_agent = opt_.net_end or 30000
local sample_step = opt_.net_step or 5000
local n_samples = 1 + (end_agent - start_agent) / sample_step
n_samples = math.floor(n_samples)
local med = {}
local mu = {}
local sigma = {}
for i=1,n_samples do
local network_postfix = start_agent + (i-1)*sample_step
local folder = ""
opt_.network=folder .. network_prefix .. network_postfix .. ".t7"
print("Network: ",opt_.network)
local cur_game_actions, cur_agent, cur_opt = setup(opt_)
local _,results = test_set_statistic(cur_agent, manip_ob_, testset_)
med[i] = results.med
mu[i] = results.mu
sigma[i] = results.sigma
print(results.med)
print(results.mu)
print(results.sigma)
collectgarbage()
end
local med_tensor = torch.Tensor(med)
local mu_tensor = torch.Tensor(mu)
local sigma_tensor = torch.Tensor(sigma)
pcall(plotTensorToFile, med_tensor, 'Median history', 'Training Epochs', 'Median', network_prefix.."med_"..start_agent.."-"..end_agent..".png")
pcall(plotTensorToFile, mu_tensor, 'Mean history', 'Training Epochs', 'Mean', network_prefix.."mu_"..start_agent.."-"..end_agent..".png")
pcall(plotTensorToFile, sigma_tensor, 'Std history', 'Training Epochs', 'Std', network_prefix.."sigma_"..start_agent.."-"..end_agent..".png")
print("================================================")
print("Median: ", med_tensor)
print("Mean: ", mu_tensor)
print("Std: ", sigma_tensor)
end
-- A function for testing an agent for learning a Lyapunov function
function test_set_statistic_Lyapunov(agent_, manip_ob_, testset_)
if not testset_s then
testset_s = load_pre_constructed_dataset(testset_)
s_screen = testset_s.image
s_q = testset_s.arm_pose
-- l_label = testset_s.label
l_label = testset_s.distance_e2t
sample_amount = testset_s.sample_amount
-- if sample_amount > 20 then
-- sample_amount = 20
-- end
end
local screen = torch.Tensor(sample_amount, unpack(s_screen[1]:size():totable()))
local q = torch.Tensor(sample_amount, unpack(torch.Tensor(s_q[1]):size():totable()))
local label = torch.Tensor(sample_amount, unpack(torch.Tensor(l_label[1]):size():totable()))
for i=1,sample_amount do
screen[i] = s_screen[i]:clone()
-- screen[i] = manip_ob_:image_normalization(screen[i])
local q_temp = table.copy(s_q[i])
q[i] = manip_ob_:outputLowDimTensor(q_temp,nil)
label[i] = torch.Tensor({l_label[i]})
-- Save each test images for analysis
-- visu_ob:screen_shots(screen[i], i, true)
end
s = agent_:float(agent_:preprocess({q,screen}))
local p = agent_:float(agent_.network:forward(s))
-- Compute error = p - l
local delta = p:clone():float()
delta:add(-1, label)
delta = delta:float()
local v_mu = torch.mean(delta,1)
local v_sigma = torch.std(delta,1)
local e_2 = torch.pow(delta,2)
local e = torch.sum(e_2,2)
e:sqrt()
local mu = torch.mean(e)
local sigma = torch.std(e)
print("================================================")
print("norm: ", mu)
print("norm_std: ", sigma)
print("e: ", v_mu)
print("e_std: ", v_sigma)
print("norm tensor:",e)
return screen[1]
end
-- A function for testing a perception module with random poses in a pose set
local testset
local test_pose
local test_target
local nepisodes
-- -- local testindex = {45,122,124,129,187,188,190,192,211,239,243,245,246,248,249,251,274,279,291,297,298,299,307,308,312,313,314,317,321,323,326,350,353}
local testindex = {45,122,187,243,245,248,274,279,297,298,299,307,308,312,313,314,317,321,323,326,350,353,113,193,200,208,202,208,233,236,239,251,280,283,293,300,302,328,332,343}
-- -- local testindex = {297}
function rand_pose_test(agent_, manip_ob_)
if not testset then
testset = load_pre_constructed_dataset("3DoF_testset_pose_target.t7")
test_pose = testset.pose
test_target = exp.target
nepisodes = 0
end
local screen, label
if manip_ob_.dataset then
screen, label = manip_ob_:get_batch(1)
screen = screen[1]
label = label[1]
else
print("Sample:",testindex[nepisodes+1])
screen, label = manip_ob_:one_frame(test_pose[testindex[nepisodes+1]], test_target[testindex[nepisodes+1]])
nepisodes = nepisodes + 1
end
-- select an action to take
local predicted_pos = agent_:test(screen) -- get the predicted low-dimensional features
print("===============================")
print("prediction:", predicted_pos)
print("normalized label:", label)
print("normalized error: ", torch.csub(predicted_pos,label))
print("------------------------------")
predicted_pos = manip_ob_:reallignLowDimTensor(predicted_pos[1])
predicted_pos = manip_ob_:recoverLowDimTensor(predicted_pos) -- recover to original values
local true_pos = manip_ob_:reallignLowDimTensor(label)
true_pos = manip_ob_:recoverLowDimTensor(true_pos)
-- print("ground truth: ", torch.Tensor(robot_configuration.current_pos))
-- print("predicted: ", torch.Tensor(current_pos))
-- print("predicted: ", torch.Tensor(current_pos):sub(4,5))
-- print("predicted: ", predicted_pos)
-- print("ground_truth: ", true_pos)
print("original prediction:", predicted_pos)
print("true label:", true_pos)
print("original error: ", predicted_pos:csub(true_pos))
return screen
end
-- A function for ploting a learning curve using the data stored in an agent history
function plot_learning_curve(cost_history)
local cost_sum_history_tensor = torch.Tensor(cost_history)
if pcall(plotTensorToFile, cost_sum_history_tensor, 'cost sum history', 'Training Epochs', 'cost sum', opt.plot_filename..".png") then
-- no errors
else
print("plotTensor raised an error")
end
end
-- MAIN CODES --
-- Plot a learning curve for the history cost_sum saved in a pre-trained agent
if opt.learning_curve == "true" and opt.test_mode ~= "learning_curve" then
print("plotting:", opt.learning_curve)
-- require "common/curve_plot"
plot_learning_curve(agent.cost_sum_history)
end
local test_mode = opt.test_mode
local step = 0
-- Initialize performance assessment
while step < opt.steps and not rospy.is_shutdown() do
step = step + 1
local screen
if test_mode == "statistic" then
screen = statistic_test(agent, manip_ob)
elseif test_mode == "single_joint" then
screen = single_joint_test(agent, manip_ob)
elseif test_mode == "single_sample" then
screen = single_sample_test(agent, manip_ob)
elseif test_mode == "single_sample_real" then
screen = single_sample_test_real(agent, manip_ob)
elseif test_mode == "rand_pose" then
screen = rand_pose_test(agent, manip_ob)
elseif test_mode == "testset" then
-- screen = test_set_statistic_old(agent, manip_ob, opt.testset)
screen, _ = test_set_statistic(agent, manip_ob, opt.testset)
elseif test_mode == "learning_curve" then
get_learning_curve(manip_ob, opt.testset, opt)
end
-- visualize but does not save files
-- visu_ob:screen_shots(screen, step, true)
-- visu_ob:nn_outputs_and_weights(step, true)
-- collect memory garbages to keep it effective regarding the memory usage
if step%10000 == 0 then collectgarbage() end
if step == 4000 or test_mode == "testset" or test_mode == "learning_curve" then
break
end
end
print("Testing Done!")
print("No. of tested samples: ", step)
|
resource_manifest_version '05cfa83c-a124-4cfa-a768-c24a5811d8f9'
description "Menu Perso No Brain"
---------------------------------------------------------------------------------------------------------------------------------------------------------
-- nb_menuperso
---------------------------------------------------------------------------------------------------------------------------------------------------------
client_script 'NativeUI.lua'
client_script 'config.lua'
client_script 'keycontrol.lua'
client_script 'client.lua'
client_script 'handsup.lua'
client_script 'pointing.lua'
client_script 'crouch.lua'
client_script 'limiteur.lua'
server_scripts {
'@mysql-async/lib/MySQL.lua',
'@es_extended/locale.lua',
'server.lua'
} |
object_tangible_saga_system_rewards_jabba_chandelier = object_tangible_saga_system_rewards_shared_jabba_chandelier:new {
}
ObjectTemplates:addTemplate(object_tangible_saga_system_rewards_jabba_chandelier, "object/tangible/saga_system/rewards/jabba_chandelier.iff")
|
----------------------------------------------------------------
-- File : Assets\BIZ_Scr\Lobby\VI\M_Lobby_View.lua
-- Author : www.loywong.com
-- COPYRIGHT : (C)
-- Date : 2019/09/10
-- Description : desc
-- Version : 1.0
-- Maintain : [date] desc
----------------------------------------------------------------
M_Lobby_View = {}
local this = M_Lobby_View
function this.Awake(transform)
print("@@@ LobbyView Awake()")
end
|
local apikey = get_apikey()
if apikey == nil then
ngx.log(ngx.WARN, "No APIKEY")
ngx.exit(ngx.HTTP_UNAUTHORIZED)
end
local res = ngx.location.capture("/authenticate")
if res.status ~= 200 then
ngx.log(ngx.WARN, "Bad APIKEY")
ngx.exit(ngx.HTTP_UNAUTHORIZED)
end
|
---
-- @author wesen
-- @copyright 2017-2018 wesen <wesen-ac@web.de>
-- @release 0.1
-- @license MIT
--
local Object = require "classic"
---
-- Stores a list of all commands and provides methods to get the commands.
--
-- @type CommandList
--
local CommandList = Object:extend()
---
-- The list of commands in the format { commandName => Command }
--
-- @tfield BaseCommand[] commands
--
CommandList.commands = nil
---
-- The list of grouped commands by levels and group names
-- This table is in the format { level => { groupName => { CommandNames } } }
--
-- This table is generated once when loading the commands since the command list does not change after being loaded.
--
-- This tables purpose is to provide pre sorted command names for the CommandListTemplate (used by !cmds).
--
-- @tfield table groupedCommands
--
CommandList.groupedCommands = nil
---
-- The list of sorted command levels
-- This table is in the format { levelA, levelB, ... }
-- The table is necessary because you can't ensure the order of elements in a table,
-- therefore you have to sort the element keys and get the elements of the table by key.
--
-- This table is generated once when loading the commands since the command list does not change after being loaded.
--
-- This tables purpose is to provide pre sorted command levels for the CommandListTemplate (used by !cmds).
--
-- @tfield int[] sortedCommandLevels
--
CommandList.sortedCommandLevels = nil
---
-- The list of sorted command group names
-- This table is in the format { level => { groupNameA, groupNameB, ...} }
-- The table is necessary because you can't ensure the order of elements in a table,
-- therefore you have to sort the element keys and get the elements of the table by key.
--
-- This table is generated once when loading the commands since the command list does not change after being loaded.
--
-- This tables purpose is to provide pre sorted command group names for the CommandListTemplate (used by !cmds).
--
-- @tfield table sortedCommandGroupNames
--
CommandList.sortedCommandGroupNames = nil
---
-- CommandList constructor.
--
function CommandList:new()
self.commands = {}
self.groupedCommands = {}
self.sortedCommandLevels = {}
self.sortedCommandGroupNames = {}
end
-- Getters and setters
---
-- Returns the unsorted command list.
--
-- @treturn BaseCommand[] The unsorted command list
--
function CommandList:getCommands()
return self.commands
end
---
-- Sets the unsorted command list.
--
-- @tparam BaseCommand[] _commands The unsorted command list
--
function CommandList:setCommands(_commands)
self.commands = _commands
end
---
-- Returns the grouped command list.
--
-- @treturn table The grouped command list
--
function CommandList:getGroupedCommands()
return self.groupedCommands
end
---
-- Sets the grouped command list.
--
-- @tparam table _groupedCommands The grouped command list
--
function CommandList:setGroupedCommands(_groupedCommands)
self.groupedCommands = _groupedCommands
end
---
-- Returns the list of sorted command levels.
--
-- @treturn int[] The list of sorted command levels
--
function CommandList:getSortedCommandLevels()
return self.sortedCommandLevels
end
---
-- Sets the list of sorted command levels.
--
-- @tparam int[] _sortedCommandLevels The list of sorted command levels
--
function CommandList:setSortedCommandLevels(_sortedCommandLevels)
self.sortedCommandLevels = _sortedCommandLevels
end
---
-- Returns the list of sorted command group names.
--
-- @treturn table The list of sorted command group names
--
function CommandList:getSortedCommandGroupNames()
return self.sortedCommandGroupNames
end
---
-- Sets the list of sorted command group names.
--
-- @tparam table _sortedCommandGroupNames The list of sorted command group names
--
function CommandList:setSortedCommandGroupNames(_sortedCommandGroupNames)
self.sortedCommandGroupNanmes = _sortedCommandGroupNames
end
-- Public Methods
---
-- Adds a command to the unsorted command list and the grouped command list.
--
-- @tparam BaseCommand _command The command
--
function CommandList:addCommand(_command)
self:addCommandToUnsortedCommandList(_command)
self:addCommandToGroupedCommandList(_command)
end
---
-- Returns a command with the name or alias _commandName.
--
-- @tparam string _commandName The command name with leading "!"
--
-- @treturn BaseCommand|bool The command or false if no command with that name or alias exists
--
function CommandList:getCommand(_commandName)
if (self.commands[_commandName] ~= nil) then
return self.commands[_commandName]
end
-- Check aliases
for _, command in pairs(self.commands) do
if (command:hasAlias(_commandName)) then
return command
end
end
return false
end
-- Private Methods
---
-- Adds a command to the unsorted command list.
--
-- @tparam BaseCommand _command The command
--
function CommandList:addCommandToUnsortedCommandList(_command)
-- Saving the command in lowercase in order to be able to correctly parse commands
-- that contain uppercase letters (user inputted commands are converted to lowercase
-- while parsing to make the command parsing case insensitive)
self.commands[string.lower(_command:getName())] = _command
end
---
-- Adds a command to the grouped command list.
--
-- @tparam BaseCommand _command The command
--
function CommandList:addCommandToGroupedCommandList(_command)
local level = _command:getRequiredLevel()
local groupName = _command:getGroup()
if (self.groupedCommands[level] == nil) then
self:addLevel(level)
end
if (self.groupedCommands[level][groupName] == nil) then
self:addLevelGroupName(level, groupName)
end
-- Saving the command in lowercase because it is saved in lowercase in the commands list too
table.insert(self.groupedCommands[level][groupName], string.lower(_command:getName()))
table.sort(self.groupedCommands[level][groupName])
end
---
-- Adds a new field to the grouped commands list and adds the level to the sorted levels list.
--
-- @tparam int _level The command level
--
function CommandList:addLevel(_level)
self.groupedCommands[_level] = {}
self.sortedCommandGroupNames[_level] = {}
table.insert(self.sortedCommandLevels, _level)
table.sort(self.sortedCommandLevels)
end
---
-- Adds a new field to the grouped commands list and adds the group name to the sorted group names list.
--
-- @tparam int _level The commandlevel
-- @tparam string _groupName The group name
--
function CommandList:addLevelGroupName(_level, _groupName)
self.groupedCommands[_level][_groupName] = {}
table.insert(self.sortedCommandGroupNames[_level], _groupName)
table.sort(self.sortedCommandGroupNames[_level])
end
return CommandList
|
require("abbrev")
dofile(vim.api.nvim_get_runtime_file('ftplugin/r.lua', false)[1])
dofile(vim.api.nvim_get_runtime_file('ftplugin/tex.lua', false)[1])
dofile(vim.api.nvim_get_runtime_file('ftplugin/md.lua', false)[1])
vim.api.nvim_buf_set_keymap(0, 'n', [[\kk]], [[:lua inline_send()<CR>]], {noremap = true, silent = true})
vim.api.nvim_buf_set_keymap(0, 'n', [[<leader>`]], [[I```{r}<CR><CR>```<esc>kI]], {noremap = true, silent = true})
vim.api.nvim_buf_set_keymap(0, 'n', [[<Leader>ck]], [[:lua jump("^```{", 1, '')<CR>]], {noremap = true, silent = true})
vim.api.nvim_buf_set_keymap(0, 'n', [[<Leader>bk]], [[:lua jump("^```{", 1, 'b')<CR>]], {noremap = true, silent = true})
vim.api.nvim_buf_set_keymap(0, 'i', [[;`]], [[<CR>```{r}<CR><CR>```<esc>kI]], {noremap = true, silent = true})
-- Zotcite path
vim.cmd[[noreabbrev zotcite '/home/rheslin/.local/share/nvim/plugged/zotcite/python3/zotref.py']]
vim.b.surround_99 = '<!--\r-->'
|
-- Simple data storage tool.
local _ = require"tricks"
local the = require"the"
local as, is, lines, map, push = _.as, _.is, _.lines, _.map, _.push
local Egs,Cols,Nominal,Ratio = is"Egs",is"Cols",is"Nominal",is"Ratio"
-- ## Egs
-- Egs store examples (in `rows`), summarized in columns (in `cols`)
function Egs:new(names) return as({rows={}, cols=Cols(names)}, Egs) end
function Egs:new4file(file, i)
for _,row in lines(file) do if i then i:add(row) else i=Egs(row) end end
return i end
function Egs.add(i,t)
t = t.cells or t -- detail (for future extension)
push(i.rows, map(i.cols.all, function(col) return col:add(t[col.at]) end)) end
function Egs.mid(i,cols) return map(cols or i.cols.all, function(col) return col:mid() end) end
function Egs.clone(i) return Egs(i.cols.names) end
function Egs.klass(i,row) return row[i.cols.klass.at] end
-- ## Col
-- Convert names into various Column types.
local ako={}
ako.ratio = function(x) return x:find"^[A-Z]" end
ako.goal = function(x) return x:find"[-+!]" end
ako.klass = function(x) return x:find"!$" end
ako.ignore = function(x) return x:find":$" end
ako.less = function(x) return x:find"-$" end
-- Every new column goes into `all`. Also, for any column that we we
-- are not ignoring, then that also gets added to (a) either the list
-- of `x` independent columns or `y` dependent columns; and (b) maybe,
-- the `klass` slot.
function Cols:new(names)
local i = as({names=names, klass=nil,all={}, x={}, y={}}, Cols)
for at,name in pairs(names) do
local col = (ako.ratio(name) and Ratio or Nominal)(at,name)
col.is_goal = ako.goal(name)
push(i.all, col)
if not ako.ignore(name) then
if ako.klass(name) then i.klass = col end
push(ako.goal(name) and i.y or i.x, col) end end
return i end
-- ## Nominal
-- Summarize symbols in `Nominal`s
function Nominal:new(at,name)
at,name = at or 0, name or ""
return as({at=at, name=name, n=0, has={}, mode=nil, most=0}, Nominal) end
function Nominal.add(i,x)
if x ~= "?" then
i.n =i.n+1
i.has[x] = 1 + (i.has[x] or 0)
if i.has[x] > i.most then i.most, i.mode = i.has[x], x end end
return x end
function Nominal.mid(i) return i.mode end
-- ## Ratio
-- Summarize numbers in `Ratio`s
function Ratio:new(at,name)
at,name = at or 0, name or ""
return as({at=at, name=name, n=0, mu=0, m2=0, sd=0, w=ako.less(name) and -1 or 1}, Ratio) end
function Ratio.add(i,x)
if x ~= "?" then
i.n =i.n+1
local d= x - i.mu
i.mu = i.mu + d/i.n
i.m2 = i.m2 + d*(x - i.mu)
i.sd = ((i.m2<0 or i.n<2) and 0) or ((i.m2/(i.n - 1))^0.5)
i.lo = i.lo and math.min(x, i.lo) or x
i.hi = i.hi and math.max(x, i.hi) or x end
return x end
function Ratio.mid(i) return i.mu end
-- ## Return
return {Egs=Egs, Ratio=Ratio, Nominal=Nominal}
|
local M = {}
local util = require 'util'
local lspconfig = require 'lspconfig'
M.maps = function()
util.keymap {
['R'] = function()
vim.cmd [[Lspsaga rename]]
end,
['H'] = function()
vim.cmd [[Lspsaga hover_doc]]
end,
['C'] = function()
vim.cmd [[Lspsaga code_action]]
end,
['D'] = function()
vim.cmd [[Lspsaga show_line_diagnostics]]
end,
['N'] = function()
vim.cmd [[Lspsaga diagnostic_jump_next]]
end,
['P'] = function()
vim.cmd [[Lspsaga diagnostic_jump_prev]]
end,
}
end
M.powershell = function()
local path_starter = util.path_join(
vim.fn.stdpath 'data',
'powershell',
'PowerShellEditorServices',
'Start-EditorServices.ps1'
)
local path = util.path_join(vim.fn.stdpath 'data', 'powershell', 'PowerShellEditorServices')
lspconfig.powershell_es.setup {
bundle_path = path,
cmd = { 'pwsh', '-NoLogo', '-NoProfile', '-Command', path_starter },
}
end
M.rls = function()
lspconfig.rls.setup {
cmd = { 'rustup', 'run', 'nightly', 'rls' },
settings = {
rust = {
unstable_features = true,
build_on_save = false,
all_features = true,
},
},
}
end
return M
|
Hero = {}
local mt = {__index = Hero}
function Hero.new(px, py)
local new_instance = {}
new_instance.x = px
new_instance.y = py
return setmetatable(new_instance,mt)
end
function Hero:MoveTo(px,py)
self.x = px
self.y = py
end
return Hero |
if SERVER then return end
local meta = getmetatable(vgui.GetWorldPanel())
local orig = meta.MakePopup
local popupCount = 0
local basePos, baseAng
meta.MakePopup = function(...)
local args = {...}
orig(unpack(args))
if not g_VR.threePoints then return end
local panel = args[1]
timer.Simple(0.001,function() --wait because makepopup might be called before menu is fully built
if not IsValid(panel) then return end
if panel:GetName() == "DMenu" then
--temporary hack because paintmanual doesnt seem to work on the dmenu for some reason
panel = panel:GetChildren()[1]
panel.Paint = function(self,w,h) surface.SetDrawColor(255,255,255,255) surface.DrawRect( 0, 0, w, h ) end
end
if popupCount == 0 then
local ang = Angle(0,g_VR.tracking.hmd.ang.yaw-90,45)
basePos, baseAng = WorldToLocal( g_VR.tracking.hmd.pos + Vector(0,0,-20) + Angle(0,g_VR.tracking.hmd.ang.yaw,0):Forward()*30 + ang:Forward()*1366*-0.02 + ang:Right()*768*-0.02, ang, g_VR.origin, g_VR.originAngle)
end
--right = down, up = normal, forward = right
local ang = baseAng
local pos = basePos + ang:Up()*popupCount*0.1
VRUtilMenuOpen("popup_"..popupCount,1366,768, panel, 4, pos, ang, 0.04, true, function()
timer.Simple(0.001,function()
if not g_VR.active and IsValid(panel) then
panel:MakePopup() --make sure we don't leave unclickable panels open when exiting vr
end
end)
popupCount = popupCount - 1
end)
popupCount = popupCount + 1
VRUtilMenuRenderPanel(uid)
end)
end
hook.Add("VRMod_Start","dermapopups",function(ply)
if ply ~= LocalPlayer() then return end
vgui.GetWorldPanel():SetSize(1366,768)
end)
hook.Add("VRMod_Exit","dermapopups",function(ply)
if ply ~= LocalPlayer() then return end
vgui.GetWorldPanel():SetSize(ScrW(),ScrH())
end)
|
function CShardling_OnEnterCombat(Unit,Event)
Unit:RegisterEvent("CShardling_Enrage", 5000, 0)
end
function CShardling_Enrage(Unit,Event)
Unit:CastSpell(40743)
end
function CShardling_OnLeaveCombat(Unit,Event)
Unit:RemoveEvents()
end
function CShardling_OnDied(Unit,Event)
Unit:RemoveEvents()
end
RegisterUnitEvent(21936, 1, "CMMiner_OnEnterCombat")
RegisterUnitEvent(21936, 2, "CMMiner_OnLeaveCombat")
RegisterUnitEvent(21936, 4, "CMMiner_OnDied") |
local BasePlugin = require "kong.plugins.base_plugin"
local access = require "kong.plugins.jwt-backend.access"
local JwtBackendHandler = BasePlugin:extend()
JwtBackendHandler.PRIORITY = 1006
JwtBackendHandler.VERSION = "0.0.1"
function JwtBackendHandler:new()
JwtBackendHandler.super.new(self, "jwt-backend")
end
function JwtBackendHandler:access(conf)
access.execute(conf)
end
return JwtBackendHandler |
function DarkRP.notify(ply, msgtype, len, msg)
if not istable(ply) then
if not IsValid(ply) then
-- Dedicated server console
print(msg)
return
end
ply = {ply}
end
local rcp = RecipientFilter()
for _, v in pairs(ply) do
rcp:AddPlayer(v)
end
if hook.Run("onNotify", rcp:GetPlayers(), msgtype, len, msg) == true then return end
net.Start("_Notify")
net.WriteString(msg)
net.WriteUInt(msgtype, 16)
net.WriteUInt(len, 32)
net.Send(rcp)
end
function DarkRP.notifyAll(msgtype, len, msg)
if hook.Run("onNotify", player.GetAll(), msgtype, len, msg) == true then return end
net.Start("_Notify")
net.WriteString(msg)
net.WriteUInt(msgtype, 16)
net.WriteUInt(len, 32)
net.Broadcast()
end
function DarkRP.printMessageAll(msgtype, msg)
for _, v in ipairs(player.GetAll()) do
v:PrintMessage(msgtype, msg)
end
end
function DarkRP.printConsoleMessage(ply, msg)
if ply:EntIndex() == 0 then
print(msg)
else
ply:PrintMessage(HUD_PRINTCONSOLE, msg)
end
end
util.AddNetworkString("DarkRP_Chat")
function DarkRP.talkToRange(ply, PlayerName, Message, size)
local ents = player.GetHumans()
local col = team.GetColor(ply:Team())
local filter = {}
local plyPos = ply:EyePos()
local sizeSqr = size * size
for _, v in ipairs(ents) do
if (v:EyePos():DistToSqr(plyPos) <= sizeSqr) and (v == ply or hook.Run("PlayerCanSeePlayersChat", PlayerName .. ": " .. Message, false, v, ply) ~= false) then
table.insert(filter, v)
end
end
if PlayerName == ply:Nick() then PlayerName = "" end -- If it's just normal chat, why not cut down on networking and get the name on the client
net.Start("DarkRP_Chat")
net.WriteUInt(col.r, 8)
net.WriteUInt(col.g, 8)
net.WriteUInt(col.b, 8)
net.WriteString(PlayerName)
net.WriteEntity(ply)
net.WriteUInt(255, 8)
net.WriteUInt(255, 8)
net.WriteUInt(255, 8)
net.WriteString(Message)
net.Send(filter)
end
function DarkRP.talkToPerson(receiver, col1, text1, col2, text2, sender)
if not IsValid(receiver) then return end
if receiver:IsBot() then return end
local concatenatedText = (text1 or "") .. ": " .. (text2 or "")
if sender == receiver or hook.Run("PlayerCanSeePlayersChat", concatenatedText, false, receiver, sender) ~= false then
net.Start("DarkRP_Chat")
net.WriteUInt(col1.r, 8)
net.WriteUInt(col1.g, 8)
net.WriteUInt(col1.b, 8)
net.WriteString(text1)
sender = sender or Entity(0)
net.WriteEntity(sender)
col2 = col2 or Color(0, 0, 0)
net.WriteUInt(col2.r, 8)
net.WriteUInt(col2.g, 8)
net.WriteUInt(col2.b, 8)
net.WriteString(text2 or "")
net.Send(receiver)
end
end
function DarkRP.isEmpty(vector, ignore)
ignore = ignore or {}
local point = util.PointContents(vector)
local a = point ~= CONTENTS_SOLID
and point ~= CONTENTS_MOVEABLE
and point ~= CONTENTS_LADDER
and point ~= CONTENTS_PLAYERCLIP
and point ~= CONTENTS_MONSTERCLIP
if not a then return false end
local b = true
for _, v in ipairs(ents.FindInSphere(vector, 35)) do
if (v:IsNPC() or v:IsPlayer() or v:GetClass() == "prop_physics" or v.NotEmptyPos) and not table.HasValue(ignore, v) then
b = false
break
end
end
return a and b
end
function DarkRP.placeEntity(ent, tr, ply)
if IsValid(ply) then
local ang = ply:EyeAngles()
ang.pitch = 0
ang.yaw = ang.yaw + 180
ang.roll = 0
ent:SetAngles(ang)
end
local vFlushPoint = tr.HitPos - (tr.HitNormal * 512)
vFlushPoint = ent:NearestPoint(vFlushPoint)
vFlushPoint = ent:GetPos() - vFlushPoint
vFlushPoint = tr.HitPos + vFlushPoint
ent:SetPos(vFlushPoint)
end
--[[---------------------------------------------------------------------------
Find an empty position near the position given in the first parameter
pos - The position to use as a center for looking around
ignore - what entities to ignore when looking for the position (the position can be within the entity)
distance - how far to look
step - how big the steps are
area - the position relative to pos that should also be free
Performance: O(N^2) (The Lua part, that is, I don't know about the C++ counterpart)
Don't call this function too often or with big inputs.
---------------------------------------------------------------------------]]
function DarkRP.findEmptyPos(pos, ignore, distance, step, area)
if DarkRP.isEmpty(pos, ignore) and DarkRP.isEmpty(pos + area, ignore) then
return pos
end
for j = step, distance, step do
for i = -1, 1, 2 do -- alternate in direction
local k = j * i
-- Look North/South
if DarkRP.isEmpty(pos + Vector(k, 0, 0), ignore) and DarkRP.isEmpty(pos + Vector(k, 0, 0) + area, ignore) then
return pos + Vector(k, 0, 0)
end
-- Look East/West
if DarkRP.isEmpty(pos + Vector(0, k, 0), ignore) and DarkRP.isEmpty(pos + Vector(0, k, 0) + area, ignore) then
return pos + Vector(0, k, 0)
end
-- Look Up/Down
if DarkRP.isEmpty(pos + Vector(0, 0, k), ignore) and DarkRP.isEmpty(pos + Vector(0, 0, k) + area, ignore) then
return pos + Vector(0, 0, k)
end
end
end
return pos
end
local meta = FindMetaTable("Player")
function meta:applyPlayerClassVars(applyHealth)
local playerClass = baseclass.Get(player_manager.GetPlayerClass(self))
self:SetWalkSpeed(playerClass.WalkSpeed >= 0 and playerClass.WalkSpeed or GAMEMODE.Config.walkspeed)
self:SetRunSpeed(playerClass.RunSpeed >= 0 and playerClass.RunSpeed or (self:isCP() and GAMEMODE.Config.runspeedcp or GAMEMODE.Config.runspeed))
hook.Call("UpdatePlayerSpeed", GAMEMODE, self) -- Backwards compatitibly, do not use
self:SetCrouchedWalkSpeed(playerClass.CrouchedWalkSpeed)
self:SetDuckSpeed(playerClass.DuckSpeed)
self:SetUnDuckSpeed(playerClass.UnDuckSpeed)
self:SetJumpPower(playerClass.JumpPower)
self:AllowFlashlight(playerClass.CanUseFlashlight)
self:SetMaxHealth(playerClass.MaxHealth >= 0 and playerClass.MaxHealth or (tonumber(GAMEMODE.Config.startinghealth) or 100))
if applyHealth then
self:SetHealth(playerClass.StartHealth >= 0 and playerClass.StartHealth or (tonumber(GAMEMODE.Config.startinghealth) or 100))
end
self:SetArmor(playerClass.StartArmor)
self.dropWeaponOnDeath = playerClass.DropWeaponOnDie
self:SetNoCollideWithTeammates(playerClass.TeammateNoCollide)
self:SetAvoidPlayers(playerClass.AvoidPlayers)
hook.Call("playerClassVarsApplied", nil, self)
end
local function LookPersonUp(ply, cmd, args)
if not args[1] then
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("invalid_x", DarkRP.getPhrase("arguments"), ""))
return
end
local P = DarkRP.findPlayer(args[1])
if not IsValid(P) then
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("could_not_find", tostring(args[1])))
return
end
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("name", P:Nick()))
DarkRP.printConsoleMessage(ply, "Steam " .. DarkRP.getPhrase("name", P:SteamName()))
DarkRP.printConsoleMessage(ply, "Steam ID: " .. P:SteamID())
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("job", team.GetName(P:Team())))
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("kills", P:Frags()))
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("deaths", P:Deaths()))
CAMI.PlayerHasAccess(ply, "DarkRP_AdminCommands", function(access)
if not access then return end
DarkRP.printConsoleMessage(ply, DarkRP.getPhrase("wallet", DarkRP.formatMoney(P:getDarkRPVar("money")), ""))
end)
end
concommand.Add("rp_lookup", LookPersonUp)
|
function receive(message)
if(message.type == "init") then
last_trigger = 0
publish({node_id=node_id, type="label_get", key="core.location.room"})
deferred_block_for({node=node_id, type="label_response"}, 2000)
elseif(message.type == "label_response"
and message.key == "core.location.room") then
room_id = message.value
subscribe({gpio_pin=33, publisher_node_id=node_id, type="gpio_update"})
elseif(message.type == "gpio_update" and message.gpio_level == 0 and now() - last_trigger > 250) then
publish({type="light_control", command="switch", room=room_id})
last_trigger = now()
elseif(message.type == "timeout") then
print("received timeout instead of room information")
end
end |
ospath = require 'ospath'
osprocess = require 'osprocess'
local filefind = require 'filefind'
function io.writeall(filename, buffer)
local file = io.open(filename, 'wb')
file:write(buffer)
file:close()
end
rotatingCharacters = { '|', '/', '-', '\\' }
testsSucceeded = 0
totalTests = 0
function TestNumberUpdate(amount)
amount = amount or 1
testNumber = testNumber + amount
totalTests = totalTests + amount
io.write( rotatingCharacters[(testNumber % 4) + 1] .. '\b' )
end
function TestSucceeded(amount)
amount = amount or 1
testsSucceeded = testsSucceeded + amount
end
function RunJam(commandLine)
if not commandLine then commandLine = {} end
table.insert(commandLine, 1, 'jam')
table.insert(commandLine, 2, '-j1')
if Compiler then
table.insert(commandLine, 3, 'COMPILER=' .. Compiler)
end
commandLine.stderr_to_stdout = true
return osprocess.collectlines(commandLine)
end
function TestExpression(result, failMessage)
TestNumberUpdate()
if not result then
error(failMessage)
end
TestSucceeded()
end
function TestPattern(patterns, lines)
TestNumberUpdate()
if type(patterns) == 'string' then
local splitLines = {}
for line in (patterns .. '\n'):gmatch('(.-)\n') do
splitLines[#splitLines + 1] = line
end
if splitLines[#splitLines] == '' then
table.remove(splitLines, #splitLines)
end
patterns = splitLines
end
local lineIndex = 1
local patternIndex = 1
local oooGroupPatternsToFind = {}
local oooPatternsToFind = {}
local lastMatchedLineIndex = 0
while lineIndex <= #lines and (patternIndex - #oooPatternsToFind) <= #patterns do
local line = lines[lineIndex]:gsub('^%s+', ''):gsub('%s+$', '')
line = line:gsub('@%s*%d+%%', '@')
local pattern
local ooo
local ooogroup = oooGroupPatternsToFind[1] ~= nil
if not ooogroup then
pattern = patterns[patternIndex]
if pattern then
pattern = pattern:gsub('$%(SUFEXE%)', SUFEXE)
pattern = pattern:gsub('$%(COMPILER%)', COMPILER)
pattern = pattern:gsub('$%(C.ARCHIVE%)', C_ARCHIVE)
pattern = pattern:gsub('$%(C.LINK%)', C_LINK)
pattern = pattern:gsub('$%(PLATFORM%)', PlatformDir)
pattern = pattern:gsub('$%(PLATFORM_CONFIG%)', PlatformDir .. '!release')
pattern = pattern:gsub('$%(TOOLCHAIN_GRIST%)', 'c/' .. PlatformDir .. '/release')
pattern = pattern:gsub('$%(CWD%)', patterncwd)
end
end
local next
if pattern then
pattern = pattern:gsub('^%s+', ''):gsub('%s+$', '')
ooogroup = pattern:sub(1, 10) == '!OOOGROUP!'
if ooogroup then
-- Collect Out Of Order entries.
while patternIndex <= #patterns do
pattern = patterns[patternIndex]
pattern = pattern:gsub('^%s+', ''):gsub('%s+$', '')
if pattern:sub(1, 10) ~= '!OOOGROUP!' then break end
pattern = pattern:sub(11)
pattern = pattern:gsub('$%(SUFEXE%)', SUFEXE)
pattern = pattern:gsub('$%(COMPILER%)', COMPILER)
pattern = pattern:gsub('$%(C.ARCHIVE%)', C_ARCHIVE)
pattern = pattern:gsub('$%(C.LINK%)', C_LINK)
pattern = pattern:gsub('$%(PLATFORM%)', PlatformDir)
pattern = pattern:gsub('$%(PLATFORM_CONFIG%)', PlatformDir .. '!release')
pattern = pattern:gsub('$%(TOOLCHAIN_GRIST%)', 'c/' .. PlatformDir .. '/release')
pattern = pattern:gsub('$%(CWD%)', patterncwd)
oooGroupPatternsToFind[#oooGroupPatternsToFind + 1] = pattern
pattern = nil
patternIndex = patternIndex + 1
end
else
next = pattern:sub(1, 6) == '!NEXT!'
if next then
pattern = pattern:sub(7)
else
ooo = pattern:sub(1, 5) == '!OOO!'
if ooo then
pattern = pattern:sub(6)
end
end
end
else
hi = 5
end
local patternMatches = false
if pattern then
if pattern:sub(1, 1) == '&' then
patternMatches = not not line:match(pattern:sub(2))
else
patternMatches = line == pattern
end
end
if patternMatches then
lastMatchedLineIndex = lineIndex
else
if not next or not pattern then
if oooGroupPatternsToFind[1] then
local patternFoundIndex
for patternsToFindIndex = 1, #oooGroupPatternsToFind do
local testPattern = oooGroupPatternsToFind[patternsToFindIndex]
if testPattern:sub(1, 1) == '&' then
patternMatches = not not line:match(testPattern:sub(2))
else
patternMatches = line == testPattern
end
if patternMatches then
patternFoundIndex = patternsToFindIndex
break
end
end
if oooGroupPatternsToFind[1] and not patternFoundIndex then
if not ooo and pattern then
error('Found: ' .. line .. '\n\tExpected: ' .. (pattern or oooGroupPatternsToFind[1]) .. '\n\nFull output:\n' .. table.concat(lines, '\n'))
else
if pattern then
lineIndex = lineIndex - 1
else
patternIndex = patternIndex - 1
end
end
else
if patternFoundIndex then
lastMatchedLineIndex = lineIndex
table.remove(oooGroupPatternsToFind, patternFoundIndex)
end
patternIndex = patternIndex - 1
end
else
if ooo then
oooPatternsToFind[#oooPatternsToFind + 1] = pattern
end
local testPattern = oooPatternsToFind[1]
if testPattern and testPattern:sub(1, 1) == '&' then
patternMatches = not not line:match(testPattern:sub(2))
else
patternMatches = line == testPattern
end
if oooPatternsToFind[1] and not patternMatches then
if not ooo and pattern then
error('Found: ' .. line .. '\n\tExpected: ' .. (pattern or oooGroupPatternsToFind[1]) .. '\n\nFull output:\n' .. table.concat(lines, '\n'))
else
if pattern then
lineIndex = lineIndex - 1
else
patternIndex = patternIndex - 1
end
end
else
table.remove(oooPatternsToFind, 1)
patternIndex = patternIndex - 1
end
end
else
patternIndex = patternIndex - 1
end
end
lineIndex = lineIndex + 1
patternIndex = patternIndex + 1
end
if #oooGroupPatternsToFind > 0 then
error('\nExpecting the following output:\n' .. table.concat(oooGroupPatternsToFind, '\n'))
end
if #oooPatternsToFind > 0 then
error('\nExpecting the following output:\n' .. table.concat(oooPatternsToFind, '\n'))
end
if patternIndex <= #patterns then
local patternsExpected = {}
for index = patternIndex, #patterns do
patternsExpected[#patternsExpected + 1] = patterns[index]
end
local linesExpected = {}
for index = lastMatchedLineIndex + 1, #lines do
linesExpected[#linesExpected + 1] = lines[index]
end
error('\nExpected:\n' .. table.concat(patternsExpected, '\n') .. '\n\nFull output:\n' .. table.concat(linesExpected, '\n'))
end
TestSucceeded()
return true
end
function TestDirectories(expectedDirs)
TestNumberUpdate()
local expectedDirsMap = {}
local newExpectedDirs = {}
for _, dirName in ipairs(expectedDirs) do
dirName = dirName:gsub('$PlatformDir', PlatformDir)
dirName = dirName:gsub('$%(PLATFORM_CONFIG%)', PlatformDir .. '-release')
dirName = dirName:gsub('$%(TOOLCHAIN_PATH%)', '.build/' .. PlatformDir .. '-release/TOP')
--dirName = dirName:gsub('$%(TOOLCHAIN_PATH%)', PlatformDir .. '-release')
if dirName:sub(1, 1) == '?' then
expectedDirsMap[dirName:sub(2)] = '?'
else
expectedDirsMap[dirName] = true
end
newExpectedDirs[#newExpectedDirs + 1] = dirName
end
local foundDirsMap = {}
for entry in filefind.glob('**/') do
foundDirsMap[entry.filename] = true
end
local extraDirs = {}
local expectedSubDirs = {}
for expectedDir in pairs(expectedDirsMap) do
local path = ""
for component in expectedDir:gmatch('([^/]+)') do
path = path .. component .. '/'
expectedSubDirs[path] = true
end
end
for expectedSubDir in pairs(expectedSubDirs) do
if not foundDirsMap[expectedSubDir] then
extraDirs[#extraDirs + 1] = expectedDir
else
foundDirsMap[expectedSubDir] = nil
expectedDirsMap[expectedSubDir] = nil
end
end
for foundDir in pairs(foundDirsMap) do
if not expectedDirsMap[foundDir] then
local found = false
for _, dirName in ipairs(newExpectedDirs) do
local origDirName = dirName
dirName = dirName:gsub('%%%-', '\x02')
dirName = dirName:gsub('%%', '\x01')
dirName = dirName:gsub('%-', '%%-')
dirName = dirName:gsub('\x02', '%%-')
dirName = dirName:gsub('\x01', '%%')
if foundDir:match('^' .. dirName .. '$') then
expectedDirsMap[origDirName] = nil
found = true
break
end
end
if not found then
extraDirs[#extraDirs + 1] = foundDir
end
end
expectedDirsMap[foundDir] = nil
end
if #extraDirs > 0 then
table.sort(extraDirs)
error('These directories should not exist:\n\t\t' .. table.concat(extraDirs, '\n\t\t'))
end
local missingDirs = {}
for expectedFile, value in pairs(expectedDirsMap) do
if value ~= '?' then
missingDirs[#missingDirs + 1] = expectedFile
end
end
if #missingDirs > 0 then
error('These directories are missing:\n\t\t' .. table.concat(missingDirs, '\n\t\t'))
end
TestSucceeded()
end
function TestFiles(expectedFiles)
TestNumberUpdate()
local expectedFilesMap = {}
expectedFiles[#expectedFiles + 1] = '?.build/.depcache'
local newExpectedFiles = {}
for _, fileName in ipairs(expectedFiles) do
fileName = fileName:gsub('$PlatformDir', PlatformDir):gsub('$%(SUFEXE%)', SUFEXE)
fileName = fileName:gsub('$%(PLATFORM_CONFIG%)', PlatformDir .. '-release')
fileName = fileName:gsub('$%(TOOLCHAIN_PATH%)', '.build/' .. PlatformDir .. '-release/TOP')
--fileName = fileName:gsub('$%(TOOLCHAIN_PATH%)', PlatformDir .. '-release')
fileName = fileName:gsub('$%(CWD%)', patterncwd)
if fileName:match('vc.pdb$') then fileName = '?' .. fileName end
if fileName:sub(1, 1) == '?' then
expectedFilesMap[fileName:sub(2)] = '?'
else
expectedFilesMap[fileName] = true
end
newExpectedFiles[#newExpectedFiles + 1] = fileName
end
local foundFilesMap = {}
for entry in filefind.glob('**') do
foundFilesMap[entry.filename] = true
end
local extraFiles = {}
for foundFile in pairs(foundFilesMap) do
if foundFile ~= 'test.lua' and foundFile ~= 'test.out' and not foundFile:match('%.swp')
and not foundFile:match('~$') and not foundFile:match('%.swo') then
if not expectedFilesMap[foundFile] then
local found = false
for _, fileName in ipairs(newExpectedFiles) do
local origFileName = fileName
fileName = fileName:gsub('%%%-', '\x02')
fileName = fileName:gsub('%%', '\x01')
fileName = fileName:gsub('%-', '%%-')
fileName = fileName:gsub('\x02', '%%-')
fileName = fileName:gsub('\x01', '%%')
if foundFile:match('^' .. fileName .. '$') then
expectedFilesMap[origFileName] = nil
found = true
break
end
end
if not found then
extraFiles[#extraFiles + 1] = foundFile
end
end
end
expectedFilesMap[foundFile] = nil
end
if #extraFiles > 0 then
table.sort(extraFiles)
error('These files should not exist:\n\t\t' .. table.concat(extraFiles, '\n\t\t'))
end
local missingFiles = {}
for expectedFile, value in pairs(expectedFilesMap) do
if value ~= '?' then
missingFiles[#missingFiles + 1] = expectedFile
end
end
if #missingFiles > 0 then
error('These files are missing:\n\t\t' .. table.concat(missingFiles, '\n\t\t'))
end
TestSucceeded()
end
-- Detect OS
if os.getenv("OS") == "Windows_NT" then
Platform = 'win32'
PlatformDir = 'win32'
SUFEXE = '.exe'
COMPILER = 'vc'
C_ARCHIVE = 'C.vc.Archive'
C_LINK = 'C.vc.Link'
else
local f = io.popen('uname')
uname = f:read('*a'):lower():gsub('\n', '')
f:close()
if uname == 'darwin' then
Platform = 'macosx'
PlatformDir = 'macosx32'
COMPILER = 'clang'
C_ARCHIVE = 'C.macosx.clang.Archive'
C_LINK = 'C.macosx.clang.Link'
elseif uname == 'linux' then
Platform = 'linux'
PlatformDir = 'linux32'
COMPILER = 'gcc'
C_ARCHIVE = 'C.gcc.Archive'
C_LINK = 'C.gcc.Link'
end
SUFEXE = ''
end
local dirs
if arg and arg[1] == '--compiler' then
Compiler = arg[2]
table.remove(arg, 1)
table.remove(arg, 1)
end
if arg and arg[1] then
dirs = arg
else
dirs = {}
for entry in filefind.glob('**/') do
dirs[#dirs + 1] = entry.filename
end
end
table.sort(dirs)
function ErrorHandler(inMessage)
local message = {}
if inMessage then
table.insert(message, inMessage)
table.insert(message, ':\n')
end
ErrorTraceback = debug.traceback()
return table.concat(message)
end
cwd = ospath.getcwd()
for _, dir in ipairs(dirs) do
ospath.chdir(dir)
-- patterncwd = ospath.add_slash(ospath.make_slash(ospath.getcwd()))
patterncwd = ""
if ospath.exists('test.lua') then
local text = 'Running tests for ' .. dir:gsub('[\\/]$', '') .. '...'
io.write(('%-60s'):format(text))
io.flush()
local chunk, err = loadfile(ospath.make_absolute('test.lua'))
if chunk then
testNumber = 0
chunk()
local ret, err = xpcall(Test, ErrorHandler)
if not ret then
io.write('FAILED!\n')
io.write('\tFailed test #' .. testNumber)
local lineNumber = ErrorTraceback:match('test.lua:(%d-):')
if lineNumber then
io.write(' at line number ' .. lineNumber)
end
io.write('.\n\n')
err = err:gsub('^runtests.lua:%d-: ', '')
io.write('\t' .. err .. '\n')
print(ErrorTraceback)
os.exit()
else
io.write('OK\n')
end
if PostErrorMessage then
io.write('\t' .. PostErrorMessage .. '\n')
PostErrorMessage = nil
end
else
io.write('FAILED!\n')
io.write('\tError compiling test.lua!\n')
io.write('\t' .. err .. '\n')
end
end
ospath.chdir(cwd)
end
print()
print(('-> %d out of %d tests succeeded.'):format(testsSucceeded, totalTests))
|
--[[-- This file shows examples of settings you can adjust.
Configuration files with preferences are loaded in the following order:
1. cfg/user.lua (system-wide configuration)
2. HOME/.zbstudio/user.lua (per-user configuration)
3. -cfg <lua code fragment|filename> (command line configuration)
See [configuration](http://studio.zerobrane.com/doc-configuration.html) page for information about location of configuration files.
--]]--
-- to modify loaded configuration for recognized extensions for lua files
-- (no longer needed in v1.21+) local G = ... -- this now points to the global environment
local luaspec = ide.specs.lua
luaspec.exts[#luaspec.exts+1] = "luaz"
luaspec.keywords[1] = luaspec.keywords[1] .. ' foo'
-- to modify a key mapping; see the full list of IDs in src/editor/keymap.lua
-- starting from v0.95, ID.<menuid> can be used instead of G.ID_<menuid>
keymap[ID.STARTDEBUG] = "Ctrl-Shift-D"
-- to change font size to 12
editor.fontsize = 12 -- this is mapped to ide.config.editor.fontsize
editor.fontname = "Courier New"
filehistorylength = 20 -- this is mapped to ide.config.filehistorylength
-- to specify full path to love2d *executable*; this is only needed
-- if the game folder and the executable are NOT in the same folder.
path.love2d = 'd:/lua/love/love'
-- to specify full path to moai *executable* if it's not in one of PATH folders
path.moai = 'd:/lua/moai/moai'
-- Moai config.lua file is searched in the following places: (1) MOAI_CONFIG,
-- (2) project directory (if set) or folder with the current file,
-- (3) folder with the moai executable.
-- to specify full path to gideros *executable* if it's not in one of PATH folders
path.gideros = 'd:/Program Files/Gideros/GiderosPlayer.exe'
-- to specify full path to corona *executable* if it's not in one of PATH folders
path.corona = 'd:/path/to/Corona SDK/Corona Simulator.exe'
-- to specify full path to lua interpreter if you need to use your own version
path.lua = 'd:/lua/lua'
-- to specify full path to GSL-shell *executable* if it's not in one of PATH folders
path.gslshell = [[D:\Lua\gsl-shell\gsl-shell.exe]]
-- to provide output filter for those engines that support redirecting
-- of "print" output to the IDE (like Corona SDK or Gideros)
debugger.outputfilter = function(m) return #m < 124 and m or m:sub(1,120).."...\n" end
-- to fix an issue with 0d0d0a line endings in MOAI examples,
-- which may negatively affect breakpoints during debugging
editor.iofilter = "0d0d0aFix"
-- to have 4 spaces when TAB is used in the editor
editor.tabwidth = 4
-- to have TABs stored in the file (to allow mixing tabs and spaces)
editor.usetabs = true
-- to disable wrapping of long lines in the editor
editor.usewrap = false
-- to turn dynamic words on and to start suggestions after 4 characters
acandtip.nodynwords = false
acandtip.startat = 4
-- to automatically open files requested during debugging
editor.autoactivate = true
-- to specify a list of MOAI entrypoints
moai = { entrypoints = { "main.lua", "source/main.lua" } }
-- to specify language to use in the IDE (requires a file in cfg/i18n folder)
language = "ru"
-- to change background color (or other colors in the IDE);
-- see cfg/tomorrow.lua for example/details on what other colors to change
styles.text = {bg = {240,240,220}}
-- to change the default color scheme; check tomorrow.lua for the list
-- of supported schemes or use cfg/scheme-picker.lua to pick a scheme.
-- (no longer needed in v1.21+) local G = ... -- this now points to the global environment
styles = loadfile('cfg/tomorrow.lua')('Tomorrow')
-- also apply the same scheme to Output and Console windows
stylesoutshell = styles
-- to change markers used in console and output windows
styles.marker = styles.marker or {}
styles.marker.message = {ch = wxstc.wxSTC_MARK_ARROWS, fg = {0, 0, 0}, bg = {240, 240, 240}}
styles.marker.output = {ch = wxstc.wxSTC_MARK_BACKGROUND, fg = {0, 0, 0}, bg = {240, 240, 240}}
styles.marker.prompt = {ch = wxstc.wxSTC_MARK_CHARACTER+('>'):byte(), fg = {0, 0, 0}, bg = {240, 240, 240}}
stylesoutshell = styles
-- to disable indicators (underlining) on function calls
-- styles.indicator.fncall = nil
-- to change the color of the indicator used for function calls
styles.indicator.fncall.fg = {240,0,0}
-- to change the type of the indicator used for function calls
styles.indicator.fncall.st = wxstc.wxSTC_INDIC_PLAIN
--[[ other possible values are:
wxSTC_INDIC_DOTS Dotted underline; wxSTC_INDIC_PLAIN Single-line underline
wxSTC_INDIC_TT Line of Tshapes; wxSTC_INDIC_SQUIGGLE Squiggly underline
wxSTC_INDIC_STRIKE Strike-out; wxSTC_INDIC_SQUIGGLELOW Squiggly underline (2 pixels)
wxSTC_INDIC_BOX Box; wxSTC_INDIC_ROUNDBOX Rounded Box
wxSTC_INDIC_DASH Dashed underline; wxSTC_INDIC_STRAIGHTBOX Box with trasparency
wxSTC_INDIC_DOTBOX Dotted rectangle; wxSTC_INDIC_DIAGONAL Diagonal hatching
wxSTC_INDIC_HIDDEN No visual effect;
--]]
-- to enable additional spec files (like spec/glsl.lua)
-- (no longer needed in v1.51+) load.specs(function(file) return file:find('spec[/\\]glsl%.lua$') end)
-- to specify a default EOL encoding to be used for new files:
-- `wxstc.wxSTC_EOL_CRLF` or `wxstc.wxSTC_EOL_LF`;
-- `nil` means OS default: CRLF on Windows and LF on Linux/Unix and OSX.
-- (OSX had CRLF as a default until v0.36, which fixed it).
editor.defaulteol = wxstc.wxSTC_EOL_LF
-- to turn off checking for mixed end-of-line encodings in loaded files
editor.checkeol = false
-- to force execution to continue immediately after starting debugging;
-- set to `false` to disable (the interpreter will stop on the first line or
-- when debugging starts); some interpreters may use `true` or `false`
-- by default, but can be still reconfigured with this setting.
debugger.runonstart = true
-- to set compact fold that doesn't include empty lines after a block
editor.foldcompact = true
-- to disable zoom with mouse wheel as it may be too sensitive on OSX
editor.nomousezoom = true
-- to specify a skin for Corona simulator (OSX only);
-- you can also change it between runs from Local Console by executing
-- `ide.config.corona = {skin = 'iPad'}`
corona = { skin = "iPad" }
-- to style individual keywords; `return` and `break` are shown in red
-- (no longer needed in v1.21+) local G = ... -- this now points to the global environment
local luaspec = ide.specs.lua
local num = #luaspec.keywords
-- take a new slot in the list of keywords (starting from 1)
luaspec.keywords[num+1] = 'return break'
-- remove 'return' from the list of "regular" keywords
luaspec.keywords[1] = luaspec.keywords[1]:gsub(' return', ''):gsub(' break', '')
-- assign new style to the added slot (starting from 0)
styles["keywords"..num] = {fg = {240, 0, 0}, b = true}
-- enable `Opt+Shift+Left/Right` shortcut on OSX
editor.keymap[#editor.keymap+1] = {wxstc.wxSTC_KEY_LEFT, wxstc.wxSTC_SCMOD_ALT+wxstc.wxSTC_SCMOD_SHIFT, wxstc.wxSTC_CMD_WORDLEFTEXTEND, "Macintosh"}
editor.keymap[#editor.keymap+1] = {wxstc.wxSTC_KEY_RIGHT, wxstc.wxSTC_SCMOD_ALT+wxstc.wxSTC_SCMOD_SHIFT, wxstc.wxSTC_CMD_WORDRIGHTENDEXTEND, "Macintosh"}
-- enable Emacs bindings to use `Ctrl-A` and `Ctrl-E` to go to the line start/end
editor.keymap[#editor.keymap+1] = {('A'):byte(), wxstc.wxSTC_SCMOD_CTRL, wxstc.wxSTC_CMD_HOME}
editor.keymap[#editor.keymap+1] = {('E'):byte(), wxstc.wxSTC_SCMOD_CTRL, wxstc.wxSTC_CMD_LINEEND}
keymap[ID.SELECTALL] = nil -- remove `Ctrl-A` shortcut from `SelectAll`
-- updated shortcuts to use them as of v1.20
keymap[ID.BREAK] = "Shift-F9"
keymap[ID.BREAKPOINTTOGGLE] = "F9"
keymap[ID.BREAKPOINTNEXT] = ""
keymap[ID.BREAKPOINTPREV] = ""
|
local nonil = require 'without-check-nil'
local m = {}
function m.client()
nonil.enable()
local name = m.info.clientInfo.name
nonil.disable()
return name
end
function m.init(t)
m.info = t
end
return m
|
-- the range at which we consider outselves basically attacking them
local CLOSE_FOLLOW_RANGE = 300
-- range to follow (visible) enemies, targetting the closest first
-- a-walks towards them
local LONG_FOLLOW_RANGE = 1200
-- the max range away from the spot they were aggroed from where they should walk
-- when this leash limit is hit, the boss walks back to where they were aggroed originally
-- then follows long follow range
-- should be pretty high for stuff like sniper juggling
local MAX_LEASH_DISTANCE = 2000
-- the distance at which a returning boss will double back and keep attacking (unleash)
local MIN_LEASH_DISTANCE = 500
function Spawn( entityKeyValues )
if not thisEntity or not IsServer() then
return
end
thisEntity.hasSpawned = false
thisEntity.BossTier = thisEntity.BossTier or 2
thisEntity:SetContextThink("GrendelThink", GrendelThink, 1)
end
function GrendelThink ()
if GameRules:IsGamePaused() == true or GameRules:State_Get() == DOTA_GAMERULES_STATE_POST_GAME or thisEntity:IsAlive() == false then
return 1
end
if Duels:IsActive() then
thisEntity:Stop()
return 1
end
if not thisEntity.hasSpawned then
thisEntity.hasSpawned = true
StartWandering()
end
if Grendel.to_location ~= nil then
-- Reset Grendel caller when Grendel reaches the location he was called from
if (thisEntity:GetAbsOrigin() - Grendel.to_location):Length2D() < 200 then
Grendel:GoNearTeam(nil)
end
end
local hpPercent = thisEntity:GetHealth() / thisEntity:GetMaxHealth()
if thisEntity.wandering then
Wander()
else
if thisEntity:IsIdle() then
thisEntity.wanderCountdown = thisEntity.wanderCountdown - 1
-- Decrease wander cooldown if Grendel was called
if Grendel.was_called then
thisEntity.wanderCountdown = math.min(thisEntity.wanderCountdown, 5)
end
end
if thisEntity.wanderCountdown < 0 then
StartWandering()
end
end
-- Aggroed if its health is below 95%
local shouldAggro = hpPercent < 0.95
-- Check if it is aggroed but it shouldn't be aggroed
if thisEntity.isAggro and not shouldAggro then
-- giving up on aggro
thisEntity:Stop()
WalkTowardsSpot(thisEntity.aggroOrigin)
thisEntity.aggroOrigin = nil
thisEntity.isLeashing = false
end
-- Check if it is not aggroed but it should be aggroed
if not thisEntity.isAggro and shouldAggro then
thisEntity:Stop()
thisEntity.aggroOrigin = thisEntity:GetAbsOrigin()
end
-- end pre assign stuff
thisEntity.isAggro = shouldAggro
-- start post assign stuff
-- Set aggro origin
if thisEntity.isAggro and not thisEntity.aggroOrigin then
thisEntity.aggroOrigin = thisEntity:GetAbsOrigin()
end
-- Leashing
if thisEntity.aggroOrigin then
local distanceFromOrigin = (thisEntity:GetAbsOrigin() - thisEntity.aggroOrigin):Length2D()
local shouldLeash = distanceFromOrigin > MAX_LEASH_DISTANCE
if thisEntity.isLeashing and distanceFromOrigin < MIN_LEASH_DISTANCE then
thisEntity.isLeashing = false
end
if thisEntity.isLeashing or shouldLeash then
if not thisEntity.isLeashing or thisEntity:IsIdle() then
thisEntity:Stop()
thisEntity.isLeashing = true
WalkTowardsSpot(thisEntity.aggroOrigin)
end
return 1
end
end
if not thisEntity.isAggro then
--thisEntity:RemoveModifierByName("modifier_boss_regen_degen")
thisEntity:SetIdleAcquire(false)
thisEntity:SetAcquisitionRange(0)
else
local nearbyEnemies = FindUnitsInRadius(
thisEntity:GetTeamNumber(),
thisEntity:GetOrigin(),
nil,
CLOSE_FOLLOW_RANGE,
DOTA_UNIT_TARGET_TEAM_ENEMY,
DOTA_UNIT_TARGET_HERO,
DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES + DOTA_UNIT_TARGET_FLAG_FOW_VISIBLE,
FIND_CLOSEST,
false
)
local enemies = FindUnitsInRadius(
thisEntity:GetTeamNumber(),
thisEntity:GetOrigin(),
nil,
LONG_FOLLOW_RANGE,
DOTA_UNIT_TARGET_TEAM_ENEMY,
DOTA_UNIT_TARGET_HERO,
DOTA_UNIT_TARGET_FLAG_MAGIC_IMMUNE_ENEMIES + DOTA_UNIT_TARGET_FLAG_FOW_VISIBLE,
FIND_CLOSEST,
false
)
local nearestEnemy = nearbyEnemies[1]
if #nearbyEnemies == 0 and #enemies > 0 then
thisEntity.walking = true
nearestEnemy = enemies[1]
end
--thisEntity:SetIdleAcquire(true)
thisEntity:SetAcquisitionRange(128)
if thisEntity:IsIdle() then
if nearestEnemy then
ExecuteOrderFromTable({
UnitIndex = thisEntity:entindex(),
-- OrderType = DOTA_UNIT_ORDER_ATTACK_TARGET,
OrderType = DOTA_UNIT_ORDER_ATTACK_MOVE,
Position = nearestEnemy:GetAbsOrigin(),
Queue = 0,
})
ExecuteOrderFromTable({
UnitIndex = thisEntity:entindex(),
-- OrderType = DOTA_UNIT_ORDER_ATTACK_TARGET,
OrderType = DOTA_UNIT_ORDER_ATTACK_MOVE,
Position = thisEntity.aggroOrigin,
Queue = 1,
})
else
ExecuteOrderFromTable({
UnitIndex = thisEntity:entindex(),
-- OrderType = DOTA_UNIT_ORDER_ATTACK_TARGET,
OrderType = DOTA_UNIT_ORDER_ATTACK_MOVE,
Position = thisEntity.aggroOrigin,
Queue = 0,
})
end
end
end
return 1
end
function Wander ()
if not thisEntity.startPosition then
thisEntity.startPosition = thisEntity:GetAbsOrigin()
end
if not thisEntity.destination then
thisEntity.destination = GetNextWanderLocation()
end
if (thisEntity:GetAbsOrigin() - thisEntity.destination):Length2D() < 100 then
thisEntity.wandering = false
thisEntity.wanderCountdown = 30
Stop()
return
end
if thisEntity.destination and thisEntity:IsIdle() then
WalkTowardsSpot(thisEntity.destination)
end
end
function Stop ()
thisEntity.walking = false
thisEntity:Stop()
end
function WalkTowardsSpot (spot)
thisEntity.walking = true
ExecuteOrderFromTable({
UnitIndex = thisEntity:entindex(),
OrderType = DOTA_UNIT_ORDER_MOVE_TO_POSITION,
Position = spot
})
end
function GetNextWanderLocation ()
local maxY = 4100
local maxX = 5500
local minY = 0
local minX = 0
-- Change Grendel's destination if he was called by some team
if Grendel.was_called then
if Grendel.to_location ~= nil then
return Grendel.to_location
end
end
local position = Vector(RandomInt(minX, maxX), RandomInt(minY, maxY), 100)
if RandomInt(1, 2) == 1 then
position.y = 0 - position.y
end
if RandomInt(1, 2) == 1 then
position.x = 0 - position.x
end
return GetGroundPosition(position, nil)
end
function StartWandering ()
thisEntity:Stop()
thisEntity.startPosition = thisEntity:GetAbsOrigin()
thisEntity.destination = nil
thisEntity.wandering = true
thisEntity.walking = true
thisEntity.isAggro = false
end
|
highscore = Gamestate.new()
local atras=nil
local background=nil
local title=nil
local data=nil
function highscore:init()
background=love.graphics.newImage("assets/background.png")
atras=love.graphics.newImage("assets/atras.png")
title=love.graphics.newImage("assets/title2.png")
end
function highscore:enter()
if love.filesystem.getInfo("score.lua") then
data =love.filesystem.load("score.lua")()
end
end
function highscore:draw()
for i = 0, 700 / background:getWidth() do
for j = 0, 700 / background:getHeight() do
love.graphics.draw(background, i * background:getWidth(), j * background:getHeight())
end
end
love.graphics.draw(title,150,20)
love.graphics.draw(atras,150,600)
love.graphics.printf("N° " .. "Nombre " .. "Tiempo " .. "Puntuacion" ,150,160,600)
for i, d in ipairs(data) do
love.graphics.printf(i .. ". " .. d[3],150,200+(i-1)*40,300)
love.graphics.printf(string.format("%5.2f",d[1]),300,200+(i-1)*40,200)
love.graphics.printf(d[2],400,200+(i-1)*40,200)
end
if Gamestate.current() == highscore then
love.graphics.draw(mousei, love.mouse.getX() - mousei:getWidth() / 2, love.mouse.getY() - mousei:getHeight() / 2)
end
end
function highscore:mousepressed(x,y)
if x >150 and y >600 and x<150+156 and y<600+62 then
Gamestate.switch(menu)
end
end
return highscore |
local BaseInstance = import("./BaseInstance")
local InstanceProperty = import("../InstanceProperty")
local ModuleScript = BaseInstance:extend("ModuleScript", {
creatable = true,
})
ModuleScript.properties.Source = InstanceProperty.normal({
getDefault = function()
return ""
end,
})
return ModuleScript |
slot0 = class("PlayerInfoMediator", import("..base.ContextMediator"))
slot0.CHANGE_NAME = "PlayerInfoMediator:CHANGE_NAME"
slot0.CHANGE_PAINT = "PlayerInfoMediator:CHANGE_ICON"
slot0.CHANGE_PAINTS = "PlayerInfoMediator:CHANGE_ICONS"
slot0.CHANGE_MANIFESTO = "PlayerInfoMediator:CHANGE_MANIFESTO"
slot0.GO_BACKYARD = "PlayerInfoMediator:GO_BACKYARD"
slot0.GO_COLLECTION = "PlayerInfoMediator:GO_COLLECTION"
slot0.CHANGE_SKIN = "PlayerInfoMediator:CHANGE_SKIN"
slot0.ON_CHANGE_PLAYER_NAME = "PlayerInfoMediator:ON_CHANGE_PLAYER_NAME"
slot0.ON_CHANGE_MEDAL_DISPLAY = "PlayerInfoMediator:ON_CHANGE_MEDAL_DISPLAY"
slot0.ON_ATTIRE = "PlayerInfoMediator:ON_ATTIRE"
slot0.register = function (slot0)
slot0:bind(slot0.ON_CHANGE_PLAYER_NAME, function (slot0, slot1)
slot0:sendNotification(GAME.CHANGE_PLAYER_NAME, {
name = slot1
})
end)
slot0.viewComponent:setPlayer(slot2)
slot3 = getProxy(BayProxy)
slot0.viewComponent:setShipCount(slot3:getShipCount())
slot0.shipVO = slot3:getShipById(getProxy(PlayerProxy).getData(slot1).character)
slot0.viewComponent:setCurrentFlagship(slot4)
slot5 = getProxy(CollectionProxy)
slot0.viewComponent:setCollectionRate(slot5:getCollectionRate())
slot0.viewComponent:setTrophyList(slot5:getTrophys())
slot0.viewComponent:setMilitaryExercise(getProxy(MilitaryExerciseProxy).getSeasonInfo(slot6))
slot0:bind(slot0.CHANGE_PAINT, function (slot0, slot1)
slot2 = {}
slot0.contextData.showSelectCharacters = true
for slot6, slot7 in ipairs(slot0.viewComponent.player.characters) do
if not slot1 or slot7 ~= slot1.id then
table.insert(slot2, slot7)
end
end
slot0:sendNotification(GAME.GO_SCENE, SCENE.DOCKYARD, {
callbackQuit = true,
selectedMax = slot0.viewComponent.secretary_max,
hideTagFlags = ShipStatus.TAG_HIDE_ADMIRAL,
selectedIds = slot2,
ignoredIds = pg.ShipFlagMgr.GetInstance():FilterShips({
isActivityNpc = true
}),
onSelected = function (slot0, slot1)
slot0.contextData.showSelectCharacters = false
slot0:sendNotification(GAME.CHANGE_PLAYER_ICON, {
characterId = slot0,
callback = slot1
})
end
})
end)
slot0.bind(slot0, slot0.CHANGE_PAINTS, function (slot0, slot1)
slot0:sendNotification(GAME.CHANGE_PLAYER_ICON, {
characterId = slot1
})
end)
slot0.bind(slot0, slot0.GO_BACKYARD, function (slot0)
slot0:sendNotification(GAME.GO_SCENE, SCENE.BACKYARD)
end)
slot0.bind(slot0, slot0.CHANGE_SKIN, function (slot0, slot1)
slot0:addSubLayers(Context.New({
mediator = SwichSkinMediator,
viewComponent = SwichSkinLayer,
data = {
shipVO = slot1
}
}))
end)
slot0.bind(slot0, slot0.GO_COLLECTION, function (slot0)
slot0:sendNotification(GAME.GO_SCENE, SCENE.COLLECTSHIP)
end)
slot0.bind(slot0, slot0.CHANGE_MANIFESTO, function (slot0, slot1)
slot0:sendNotification(GAME.CHANGE_PLAYER_MANIFESTO, {
manifesto = slot1
})
end)
slot0.bind(slot0, slot0.ON_ATTIRE, function ()
slot0:sendNotification(GAME.GO_SCENE, SCENE.ATTIRE)
end)
slot0.viewComponent:setFleetGearScore(slot7)
slot0.viewComponent:updateFleetGSView()
slot0:bind(slot0.ON_CHANGE_MEDAL_DISPLAY, function (slot0, slot1)
slot0:sendNotification(GAME.CHANGE_PLAYER_MEDAL_DISPLAY, {
medalList = slot1
})
end)
slot0.viewComponent.updateAttireBtn(slot8, _.any(getProxy(AttireProxy):needTip(), function (slot0)
return slot0 == true
end))
if slot0.contextData.showSelectCharacters then
slot0.viewComponent.showCharacters(slot8)
slot0.contextData.showSelectCharacters = false
end
end
slot0.listNotificationInterests = function (slot0)
return {
SetShipSkinCommand.SKIN_UPDATED,
PlayerProxy.UPDATED,
GAME.CHANGE_PLAYER_ICON_DONE,
GAME.CHANGE_PLAYER_NAME_DONE,
GAME.CHANGE_PLAYER_MEDAL_DISPLAY_DONE,
GAME.CHANGE_PAINT,
BayProxy.SHIP_UPDATED,
GAME.UPDATE_SKINCONFIG
}
end
slot0.handleNotification = function (slot0, slot1)
slot3 = slot1:getBody()
if slot1:getName() == PlayerProxy.UPDATED then
slot0.viewComponent:setPlayer(slot3)
elseif slot2 == SetShipSkinCommand.SKIN_UPDATED then
slot0.shipVO = slot3.ship
slot0.viewComponent:updateCardByShip(slot3.ship)
elseif slot2 == GAME.CHANGE_PLAYER_ICON_DONE then
slot0.shipVO = slot3.ship
slot0.viewComponent:setCurrentFlagship(slot0.shipVO)
slot0.viewComponent:showCharacters()
slot0.contextData.shipIdToAdd = nil
elseif slot2 == GAME.CHANGE_PLAYER_NAME_DONE then
slot0.viewComponent:updatePlayerName()
slot0.viewComponent:closeChangePlayerNamePanel()
elseif slot2 == GAME.CHANGE_PLAYER_MEDAL_DISPLAY_DONE then
slot0.viewComponent:updateMedalDisplay(getProxy(PlayerProxy).getData(slot4).displayTrophyList)
slot0.viewComponent:closeAddMedalPanel()
elseif slot2 == BayProxy.SHIP_UPDATED then
if slot3.id == slot0.shipVO.id then
slot0.viewComponent:setCurrentFlagship(slot3)
end
elseif slot2 == GAME.UPDATE_SKINCONFIG and slot3.skinId == slot0.shipVO.skinId then
slot0.viewComponent:setCurrentFlagship(slot0.shipVO)
end
end
return slot0
|
local V = {
Name = "Toyota MR2 GT",
Class = "prop_vehicle_jeep",
Category = "TDM Cars",
Author = "TheDanishMaster, Turn 10",
Information = "A drivable Toyota MR2 GT by TheDanishMaster",
Model = "models/tdmcars/toy_mr2gt.mdl",
KeyValues = {
vehiclescript = "scripts/vehicles/TDMCars/mr2gt.txt"
}
}
list.Set("Vehicles", "mr2gttdm", V)
|
local t = require( "taptest" )
local getoptvalues = require( "getoptvalues" )
local same = require( "same" )
args = { "--add", "1", "2", "3", "--sub", "3", "123" }
opt, values, rest = getoptvalues( args )
t( opt, "--add" )
t( same( values, { "1", "2", "3" } ), true )
t( same( rest, { "--sub", "3", "123" } ), true )
opt, values, rest = getoptvalues( args, "--add" )
t( opt, "--add" )
t( same( values, { "1", "2", "3" } ), true )
t( same( rest, { "--sub", "3", "123" } ), true )
opt, values, rest = getoptvalues( args, "--add", 1 )
t( opt, "--add" )
t( same( values, { "1" } ), true )
t( same( rest, { "2", "3", "--sub", "3", "123" } ), true )
opt, values, rest = getoptvalues( args, "--add", 2 )
t( opt, "--add" )
t( same( values, { "1", "2" } ), true )
t( same( rest, { "3", "--sub", "3", "123" } ), true )
opt, values, rest = getoptvalues( args, "--add", 5 )
t( opt, "--add" )
t( same( values, { "1", "2", "3" } ), true )
t( same( rest, { "--sub", "3", "123" } ), true )
opt, values, rest = getoptvalues( args, "--div" )
t( opt, nil )
t( #values, 0 )
t( args, rest )
opt, values, rest = getoptvalues( { "-a", "x", "y" }, "-a", 5 )
t( opt, "-a" )
t( same( values, { "x", "y" } ), true )
t( same( rest, {} ), true )
t()
|
local K, C, L = unpack(select(2, ...))
-- Application Programming Interface for KkthnxUI (API)
-- Lua API
local _G = _G
local getmetatable = getmetatable
local math_floor = math.floor
local string_match = string.match
local type = type
local unpack, select = unpack, select
-- Wow API
local CreateFrame = _G.CreateFrame
local CUSTOM_CLASS_COLORS, RAID_CLASS_COLORS = _G.CUSTOM_CLASS_COLORS, _G.RAID_CLASS_COLORS
local UIParent = _G.UIParent
local UnitClass = _G.UnitClass
-- Global variables that we don"t cache, list them here for mikk"s FindGlobals script
-- GLOBALS: noHover, noPushed, noChecked, self, bordera
local Mult = 768 / string_match(K.Resolution, "%d+x(%d+)") / C.General.UIScale
local Scale = function(x)
return Mult * math_floor(x / Mult + 0.5)
end
K.Scale = function(x) return Scale(x) end
K.Mult = Mult
K.NoScaleMult = K.Mult * C.General.UIScale
-- frame to securely hide items (Goldpaw)
local UIFrameHider = CreateFrame("Frame", "UIFrameHider", UIParent)
UIFrameHider:Hide()
UIFrameHider:SetAllPoints()
UIFrameHider.children = {}
RegisterStateDriver(UIFrameHider, "visibility", "hide")
-- Petbattle frame to hide items when in petbattles
local PetBattleHider = CreateFrame("Frame", "PetBattleFrameHider", UIParent, "SecureHandlerStateTemplate")
PetBattleHider:SetAllPoints()
PetBattleHider:SetFrameStrata("LOW")
RegisterStateDriver(PetBattleHider, "visibility", "[petbattle] hide; show")
local function SetOutside(obj, anchor, xOffset, yOffset)
xOffset = xOffset or 2
yOffset = yOffset or 2
anchor = anchor or obj:GetParent()
if obj:GetPoint() then obj:ClearAllPoints() end
obj:SetPoint("TOPLEFT", anchor, "TOPLEFT", -xOffset, yOffset)
obj:SetPoint("BOTTOMRIGHT", anchor, "BOTTOMRIGHT", xOffset, -yOffset)
end
local function SetInside(obj, anchor, xOffset, yOffset)
xOffset = xOffset or 2
yOffset = yOffset or 2
anchor = anchor or obj:GetParent()
if obj:GetPoint() then obj:ClearAllPoints() end
obj:SetPoint("TOPLEFT", anchor, "TOPLEFT", xOffset, -yOffset)
obj:SetPoint("BOTTOMRIGHT", anchor, "BOTTOMRIGHT", -xOffset, yOffset)
end
local function CreateBorder(f, size)
if f.border then return end
if not size then size = 2 end
local border = CreateFrame("Frame", nil, f)
border:SetPoint("TOPLEFT", -size, size)
border:SetPoint("BOTTOMRIGHT", size, -size)
border:SetFrameLevel(f:GetFrameLevel() + 1)
border:SetBackdrop({
edgeFile = C.Media.Blizz, edgeSize = 14,
insets = {left = 2.5, right = 2.5, top = 2.5, bottom = 2.5}
})
border:SetBackdropBorderColor(C.Media.Border_Color[1], C.Media.Border_Color[2], C.Media.Border_Color[3])
f.border = border
end
-- Backdrop
local function CreateBackdrop(f, t, size)
if not t then t = "Default" end
if not size then size = 2 end
local b = CreateFrame("Frame", nil, f)
b:SetPoint("TOPLEFT", -size, size)
b:SetPoint("BOTTOMRIGHT", size, -size)
b:SetTemplate(t)
if f:GetFrameLevel() - 1 >= 0 then
b:SetFrameLevel(f:GetFrameLevel() - 1)
else
b:SetFrameLevel(0)
end
f.backdrop = b
end
-- Who doesn"t like shadows! More shadows!
local function CreateShadow(f, size)
if f.Shadow then return end
if not size then size = 3 end
local shadow = CreateFrame("Frame", nil, f)
shadow:SetFrameLevel(1)
shadow:SetFrameStrata(f:GetFrameStrata())
shadow:SetPoint("TOPLEFT", -size, size)
shadow:SetPoint("BOTTOMLEFT", -size, -size)
shadow:SetPoint("TOPRIGHT", size, size)
shadow:SetPoint("BOTTOMRIGHT", size, -size)
shadow:SetBackdrop( {
edgeFile = C.Media.Glow, edgeSize = K.Scale(3),
insets = {left = K.Scale(5), right = K.Scale(5), top = K.Scale(5), bottom = K.Scale(5)},
})
shadow:SetBackdropColor(C.Media.Backdrop_Color)
shadow:SetBackdropBorderColor(0, 0, 0, 0.9)
f.Shadow = shadow
end
local function CreateBlizzShadow(f, size)
if f.shadow then return end
if not size then size = 5 end
local shadow = f:CreateTexture(nil, "BACKGROUND")
shadow:SetPoint("TOPLEFT", -size, size)
shadow:SetPoint("BOTTOMLEFT", -size, -size)
shadow:SetPoint("TOPRIGHT", size, size)
shadow:SetPoint("BOTTOMRIGHT", size, -size)
shadow:SetTexture(C.Media.Border_Shadow)
shadow:SetVertexColor(0, 0, 0, 0.9)
f.shadow = shadow
end
local function SetTemplate(f, t, tex)
local balpha = C.Media.Backdrop_Color[4]
local borderr, borderg, borderb = unpack(C.Media.Border_Color)
local backdropr, backdropg, backdropb = unpack(C.Media.Backdrop_Color)
local backdropa = balpha
local texture = C.Media.Blank
if tex then
texture = C.Media.Texture
end
f:SetBackdrop({
bgFile = C.Media.Blank,
edgeFile = C.Media.Blizz,
tile = false, tileSize = 0, edgeSize = K.Scale(14),
insets = {left = 2.5, right = 2.5, top = 2.5, bottom = 2.5}
})
f:SetBackdropColor(backdropr, backdropg, backdropb, backdropa)
f:SetBackdropBorderColor(borderr, borderg, borderb)
if C.Blizzard.ColorTextures == true then
f:SetBackdropBorderColor(C.Blizzard.TexturesColor[1], C.Blizzard.TexturesColor[2], C.Blizzard.TexturesColor[3])
end
end
-- Create panel
local function CreatePanel(f, t, w, h, a1, p, a2, x, y)
local balpha = C.Media.Backdrop_Color[4]
local borderr, borderg, borderb = unpack(C.Media.Border_Color)
local backdropr, backdropg, backdropb = unpack(C.Media.Backdrop_Color)
local backdropa = balpha
f:SetFrameLevel(1)
f:SetSize(w, h)
f:SetFrameStrata("BACKGROUND")
f:SetPoint(a1, p, a2, x, y)
if t == "Transparent" then
backdropa = C.Media.Backdrop_Color[4]
f:CreateBorder()
f:SetBackdrop(K.BorderBackdrop)
elseif t == "CreateBackdrop" then
backdropa = C.Media.Backdrop_Color[4]
f:SetBackdrop(K.BorderBackdrop)
elseif t == "Invisible" then
backdropa = 0
else
backdropa = C.Media.Backdrop_Color[4]
end
if t == "CreateBackdrop" then
backdropa = C.Media.Backdrop_Color[4]
f:CreateBackdrop()
elseif t == "CreateBorder" then
f:SetBackdrop(K.BorderBackdrop)
backdropa = C.Media.Backdrop_Color[4]
K.CreateBorder(f, 1)
elseif t == "Invisible" then
backdropa = 0
else
backdropa = C.Media.Backdrop_Color[4]
end
f:SetBackdropColor(backdropr, backdropg, backdropb, backdropa)
f:SetBackdropBorderColor(borderr, borderg, borderb)
end
local function Kill(object)
if object.UnregisterAllEvents then
object:UnregisterAllEvents()
object:SetParent(UIFrameHider)
else
object.Show = object.Hide
end
object:Hide()
end
local function StripTextures(object, kill)
for i=1, object:GetNumRegions() do
local region = select(i, object:GetRegions())
if region and region:GetObjectType() == "Texture" then
if kill and type(kill) == "boolean" then
region:Kill()
elseif region:GetDrawLayer() == kill then
region:SetTexture(nil)
elseif kill and type(kill) == "string" and region:GetTexture() ~= kill then
region:SetTexture(nil)
else
region:SetTexture(nil)
end
end
end
end
-- Example --> Font:FontString("Text", C.Media.Font, 12)
local function FontString(parent, name, fontName, fontHeight, fontStyle)
local fs = parent:CreateFontString(nil, "OVERLAY")
fs:SetFont(fontName, fontHeight, fontStyle)
fs:SetJustifyH("LEFT")
fs:SetShadowColor(0, 0, 0)
fs:SetShadowOffset(K.Mult, -K.Mult)
if not name then
parent.Text = fs
else
parent[name] = fs
end
return fs
end
local function StyleButton(button, noHover, noPushed, noChecked)
if button.SetHighlightTexture and not button.hover and not noHover then
local hover = button:CreateTexture()
hover:SetColorTexture(1, 1, 1, 0.3)
hover:SetInside()
button.hover = hover
button:SetHighlightTexture(hover)
end
if button.SetPushedTexture and not button.pushed and not noPushed then
local pushed = button:CreateTexture()
pushed:SetColorTexture(0.9, 0.8, 0.1, 0.3)
pushed:SetInside()
button.pushed = pushed
button:SetPushedTexture(pushed)
end
if button.SetCheckedTexture and not button.checked and not noChecked then
local checked = button:CreateTexture()
checked:SetColorTexture(1, 1, 1, 0.3)
checked:SetInside()
button.checked = checked
button:SetCheckedTexture(checked)
end
local cooldown = button:GetName() and _G[button:GetName().."Cooldown"]
if cooldown then
cooldown:ClearAllPoints()
cooldown:SetInside()
cooldown:SetDrawEdge(false)
cooldown:SetSwipeColor(0, 0, 0, 1)
end
end
local function SkinButton(Frame, Strip)
if Frame:GetName() then
local Left = _G[Frame:GetName().."Left"]
local Middle = _G[Frame:GetName().."Middle"]
local Right = _G[Frame:GetName().."Right"]
if Left then Left:SetAlpha(0) end
if Middle then Middle:SetAlpha(0) end
if Right then Right:SetAlpha(0) end
end
if Frame.Left then Frame.Left:SetAlpha(0) end
if Frame.Right then Frame.Right:SetAlpha(0) end
if Frame.Middle then Frame.Middle:SetAlpha(0) end
if Frame.SetNormalTexture then Frame:SetNormalTexture("") end
if Frame.SetHighlightTexture then Frame:SetHighlightTexture("") end
if Frame.SetPushedTexture then Frame:SetPushedTexture("") end
if Frame.SetDisabledTexture then Frame:SetDisabledTexture("") end
if Strip then StripTextures(Frame) end
-- This is so hacky lmao. Using CreateBackdrop for the time being.
-- I need to make new textures for blizzard borders.
Frame:CreateBackdrop("Default", 4)
Frame:HookScript("OnEnter", function(self)
if not backdrop then return end
local Color = RAID_CLASS_COLORS[select(2, UnitClass("player"))]
Frame.backdrop:SetBackdropColor(Color.r * .15, Color.g * .15, Color.b * .15, C.Media.Backdrop_Color[4])
if C.Blizzard.ColorTextures == false then
Frame.backdrop:SetBackdropBorderColor(Color.r, Color.g, Color.b, C.Media.Border_Color[4])
end
end)
Frame:HookScript("OnLeave", function(self)
if not backdrop then return end
local Color = RAID_CLASS_COLORS[select(2, UnitClass("player"))]
Frame.backdrop:SetBackdropColor(C.Media.Backdrop_Color[1], C.Media.Backdrop_Color[2], C.Media.Backdrop_Color[3], C.Media.Backdrop_Color[4])
if C.Blizzard.ColorTextures == false then
Frame.backdrop:SetBackdropBorderColor(C.Media.Border_Color[1], C.Media.Border_Color[2], C.Media.Border_Color[3], C.Media.Border_Color[4])
end
end)
end
-- Fade in/out functions
local function FadeIn(frame)
K.UIFrameFadeIn(frame, 0.4, frame:GetAlpha(), 1)
end
local function FadeOut(frame)
K.UIFrameFadeOut(frame, 0.2, frame:GetAlpha(), 0)
end
-- Merge KkthnxUI API with Wows API
local function AddAPI(object)
local mt = getmetatable(object).__index
if not object.CreateBorder then mt.CreateBorder = CreateBorder end
if not object.SetOutside then mt.SetOutside = SetOutside end
if not object.SetInside then mt.SetInside = SetInside end
if not object.CreateBackdrop then mt.CreateBackdrop = CreateBackdrop end
if not object.SetTemplate then mt.SetTemplate = SetTemplate end
if not object.CreatePanel then mt.CreatePanel = CreatePanel end
if not object.CreateShadow then mt.CreateShadow = CreateShadow end
if not object.CreateBlizzShadow then mt.CreateBlizzShadow = CreateBlizzShadow end
if not object.StyleButton then mt.StyleButton = StyleButton end
if not object.FontString then mt.FontString = FontString end
if not object.Kill then mt.Kill = Kill end
if not object.SkinButton then mt.SkinButton = SkinButton end
if not object.StripTextures then mt.StripTextures = StripTextures end
if not object.FadeIn then mt.FadeIn = FadeIn end
if not object.FadeOut then mt.FadeOut = FadeOut end
end
local Handled = {["Frame"] = true}
local Object = CreateFrame("Frame")
AddAPI(Object)
AddAPI(Object:CreateTexture())
AddAPI(Object:CreateFontString())
Object = EnumerateFrames()
while Object do
if not Object:IsForbidden() and not Handled[Object:GetObjectType()] then
AddAPI(Object)
Handled[Object:GetObjectType()] = true
end
Object = EnumerateFrames(Object)
end
--Hacky fix for issue on 7.1 PTR where scroll frames no longer seem to inherit the methods from the "Frame" widget
local scrollFrame = CreateFrame("ScrollFrame")
AddAPI(scrollFrame) |
data:extend({
-- Range 10
{
type = "item",
name = "rrm-range10",
icon = "__Resource_Relocation_Machines__/graphics/Range10-Icon.png",
icon_size = 32,
place_result = "rrm-range10-building",
stack_size= 50,
},
-- Range 20
{
type = "item",
name = "rrm-range20",
icon = "__Resource_Relocation_Machines__/graphics/Range20-Icon.png",
icon_size = 32,
place_result = "rrm-range20-building",
stack_size= 50,
},
-- Range 30
{
type = "item",
name = "rrm-range30",
icon = "__Resource_Relocation_Machines__/graphics/Range30-Icon.png",
icon_size = 32,
place_result = "rrm-range30-building",
stack_size= 50,
},
})
|
function Client_PresentConfigureUI(rootParent)
local Stacklimitsizeinit = Mod.Settings.StackLimit;
if Stacklimitsizeinit == nil then Stacklimitsizeinit = 20; end
EffectsNeutralinit = Mod.Settings.EffectsNeutralinit;
if(EffectsNeutralinit == nil)then
EffectsNeutralinit = true;
end
local horz1 = UI.CreateHorizontalLayoutGroup(rootParent);
UI.CreateLabel(horz1).SetText('Max Stack Size:');
StackLimitInputfield = UI.CreateNumberInputField(horz1)
.SetSliderMinValue(2)
.SetSliderMaxValue(100)
.SetValue(Stacklimitsizeinit);
local horz2 = UI.CreateHorizontalLayoutGroup(rootParent);
EffectsNeutralCheckBox = UI.CreateCheckBox(horz2).SetText('Also apply stacklimit to neutral territories').SetIsChecked(EffectsNeutralinit);
end |
alert("Program Status", [[
Use the arrow keys to navigate the menus
Currently, only the default 4x4 board is supported
Note that tiles '2' and '4' are equally likely to spawn
Other Controls:
Esc = Exit Searches (after they are finished)
]]) |
local L = LibStub("AceLocale-3.0"):NewLocale("InFlight", "ptBR")
if not L then return end
L["Nighthaven"] = "Refúgio Noturno"
L["NighthavenGossipA"] = "Eu quero voar até a Vila de Rut'theran"
L["NighthavenGossipH"] = "Eu gostaria de voar para o Penhasco do Trovão"
L["Rut'theran Village"] = "Vila de Rut'theran"
L["Thunder Bluff"] = "Penhasco do Trovão"
|
-- all pins --
local LIGHTS = {
p = 8,
w = 2,
}
local BUTTON_PIN = 6
local WIFI_INDICATOR_PIN = 0
local client = require('client')
local function data_received(sck, data)
print('received: '..data)
for c in data:gmatch('.') do
print('process: '..c)
if c ~= 'x' then
for light, pin in pairs(LIGHTS) do
gpio.write(pin, light == c and gpio.HIGH or gpio.LOW)
end
end
end
end
local function wifi_disconnected()
gpio.write(WIFI_INDICATOR_PIN, gpio.LOW)
data_received(nil, '-')
end
local function wifi_connected()
gpio.write(WIFI_INDICATOR_PIN, gpio.HIGH)
end
local function button_pressed()
print('button pressed.')
client.send('x')
end
local function init_pins()
for _, pin in pairs(LIGHTS) do
gpio.mode(pin, gpio.OUTPUT)
gpio.write(pin, gpio.LOW)
end
gpio.mode(WIFI_INDICATOR_PIN, gpio.OUTPUT)
gpio.write(WIFI_INDICATOR_PIN, gpio.LOW)
gpio.mode(BUTTON_PIN, gpio.INT, gpio.PULLUP)
gpio.trig(BUTTON_PIN, 'down', button_pressed)
end
local function init_network()
client.connect_wifi_server({
ssid = 'traffic-light',
pwd = 'traffic-light',
server_ip = '192.168.20.1',
server_port = 8080,
cb_receive = data_received,
cb_connected = wifi_connected,
cb_disconnected = wifi_disconnected,
})
end
local function main()
init_pins()
init_network()
end
main()
|
local eonz = require 'eonz'
local table = eonz.pf.table
local string = eonz.pf.string
local console = require 'eonz.console'
local function readfile(file)
local f = assert(io.open(file, "rb"))
local content = f:read("*all")
f:close()
return content
end
local Stream = require 'eonz.lexer.stream'
local SyntaxNode = require 'eonz.lexer.syntax_node'
local Context = require 'eonz.lexer.context'
local info = require 'eonz.lexer.info'
local Source = info.Source
local lua_grammar = require 'eonz.reflect.lua_grammar'
local LuaParser = require 'eonz.reflect.lua_parser'
local target_roots = {}
local targets = string.split(eonz.platform.capture("find ../src -name \"*.lua\""), "\n")
local contracts = require('eonz.reflect.general-contracts')
local BUILTIN_NAMES = {
"syntax", "syntax_here", "syntax_next", "syntax_above"
}
local function get_builtin(node)
local expression = nil
if node:roles("function-invocation-statement") then
expression = node:rules()[1]
elseif node:roles("function-invocation-expression") then
expression = node
else
return nil -- not a valid builtin ast
end
local target = expression:rules()[1]
local name = nil
if not target:roles("invocation-target-construct") then
return nil -- not a valid builtin ast
else
target = target:rules()[1]
end
if not target:roles("variable-reference") then
return nil -- not a valid builtin ast
else
name = target:child(1):text()
end
if not table.contains(BUILTIN_NAMES, name) then
return nil -- not a valid builtin name
end
local args = expression:rules()[2]
if args:roles("list-arguments-construct") then
args = args:roles("empty") and {} or args:rules()[1]:rules()
elseif args:roles("string-arguments-construct") then
args = args:select("string-literal")
end
local results = {}
for i = 1, #args do
assert(SyntaxNode:is_instance(args[i]), type(args[i]))
results[i] = args[i]:tags('value')
end
--print( name, table.tostring(results))
return {
name = name;
args = results;
node = node;
}
end
local BUILTIN_HANDLERS = {}
local function evaluate_builtin(builtin)
BUILTIN_HANDLERS[builtin.name](builtin.node, table.unpack(builtin.args))
end
function BUILTIN_HANDLERS.syntax_here(node, test)
local container = node:parent()
assert_true(container:roles(test), string.format("node %s does not have role %s", container:context_string(), test))
end
function BUILTIN_HANDLERS.syntax_next(node, test)
local container = node:parent()
local position = table.index_of(container:rules(), node)
local next = container:rules()[position + 1]
assert_exists(next, "there is no \"next\" to check")
assert_true(next:roles(test), string.format("node %s does not have role %s", next:context_string(), test))
end
function BUILTIN_HANDLERS.syntax_above(node, ...)
local sequence = { ... }
local container = node:parent()
local position = table.index_of(container:rules(), node)
local target = container
while #sequence > 0 do
local next_test = table.remove(sequence, 1)
target = assert_exists(target:parent(), "attempted to match above the root node")
assert_true(target:roles(next_test), string.format("node %s does not have role %s", target:context_string(), next_test))
end
end
function BUILTIN_HANDLERS.syntax(node, ...)
local MOTIONS = {
here = function (node)
return node
end,
above = function (node)
return assert(assert(node.parent) and node:parent())
end,
previous = function (node)
return assert(assert(node, 'node was null') and assert(node.parent, "node.parent not defined") and node):parent():rules()[node:index() - 1]
end,
next = function (node)
return node:parent():rules()[node:index() + 1]
end,
first_child = function (node)
assert_true(#node:rules() > 0, "no children to walk")
return node:rules()[1]
end,
last_child = function (node)
assert_true(#node:rules() > 0, "no children to walk")
return node:rules()[#node:rules()]
end,
assert_first = function (node)
assert_equal(1, node:index(), "node was not the first rule in its parent rule")
return node
end,
assert_last = function (node)
assert_equal(#node:parent():rules(), node:index(), "node was not the last rule in its parent rule")
return node
end,
assert_only_child = function (node)
assert_equal(1, #node:parent():rules(), "parent has more than one child rule")
return node
end,
assert_leaf = function (node)
assert_true(#node:rules() == 0, "node is not a leaf")
return node
end,
assert_branch = function (node)
assert_true(#node:rules() > 0, "node is not a branch")
return node
end,
assert_root = function (node)
assert_not(node:parent(), "node is not the root")
return node
end
}
local sequence = { ... }
local target = node
while #sequence > 0 do
local next_term = table.remove(sequence, 1):trim()
if MOTIONS[next_term] then
target = MOTIONS[next_term](target)
assert_exists(target)
else
print("looking at: ", target:context_string(), "vs", next_term)
assert_true(target:roles(next_term), string.format("node %s does not have role %s", target:context_string(), next_term))
end
end
print(table.tostring(sequence))
end
do
local source = Source {
text = readfile("./eonz/reflect/plain-brown-fox.lua");
name = "./eonz/reflect/plain-brown-fox.lua";
}
local parser = LuaParser {
source = source
}
local chunk = parser:chunk()
local ast = chunk:link()
local builtins = {}
ast:each {
function (e, state)
local builtin = get_builtin(e)
if builtin then
state.continue = false
end
table.insert(builtins, builtin)
end
}
for i, builtin in ipairs(builtins) do
tests[string.format("%s at %s",
builtin.name, tostring(builtin.node:interval():start_position()))] = function ()
evaluate_builtin(builtin)
end
end
end
|
require('plugin-settings.telescope')
require('plugin-settings.lspconfig')
require('plugin-settings.cmp')
require('plugin-settings.gitsigns')
require('plugin-settings.ts')
--require('plugin-settings.go')
require('plugin-settings.treesitter')
--require('plugin-settings.bufferline')
require('plugin-settings.which-key')
require('plugin-settings.indent-blankline')
require('plugin-settings.tmux')
require('plugin-settings.git-worktree')
require('plugin-settings.harpoon')
P = function(v)
print(vim.inspect(v))
return v
end
if pcall(require, 'plenary') then
RELOAD = require('plenary.reload').reload_module
R = function(name)
RELOAD(name)
return require(name)
end
end
|
AddCSLuaFile()
hook.Add("EntityEmitSound", "mechassault", function(snd)
if snd.OriginalSoundName == "MA2_Mech.Step" then
snd.SoundName = string.format("mechassault_2/mechs/mech_step_%s.ogg", math.random(1, 4)) -- We just want something random, not mech_step_1 through 4 in order
return true
end
end)
sound.Add({
name = "MA2_Mech.Step",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = {
Sound("mechassault_2/mechs/mech_step_1.ogg"),
Sound("mechassault_2/mechs/mech_step_2.ogg"),
Sound("mechassault_2/mechs/mech_step_3.ogg"),
Sound("mechassault_2/mechs/mech_step_4.ogg")
}
})
sound.Add({
name = "MA2_BA.Step",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/battlearmor/battlearmor_step.ogg")
})
sound.Add({
name = "MA2_Mech.JJStart",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/jumpjets_start.ogg")
})
sound.Add({
name = "MA2_Mech.JJLoop",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/jumpjets_loop.wav")
})
sound.Add({
name = "MA2_Mech.JJEnd",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/jumpjets_end.ogg")
})
sound.Add({
name = "MA2_Mech.BJJStart",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/battlearmor/jumpjets_start.wav")
})
sound.Add({
name = "MA2_Mech.BJJLoop",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/battlearmor/jumpjets_loop.wav")
})
sound.Add({
name = "MA2_Mech.BJJEnd",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/mechs/battlearmor/jumpjets_stop.wav")
})
sound.Add({
name = "MA2_Misc.Salvage",
channel = CHAN_AUTO,
volume = 1,
level = 100,
pitch = {95, 110},
sound = Sound("mechassault_2/items/salvage.ogg")
})
local sounds = {
{"MA2_Weapon.Autocannon1", Sound("mechassault_2/weapons/autocannon_lvl1.ogg")},
{"MA2_Weapon.Autocannon2", Sound("mechassault_2/weapons/autocannon_lvl2.ogg")},
{"MA2_Weapon.Autocannon3", Sound("mechassault_2/weapons/autocannon_lvl3.ogg")},
{"MA2_Weapon.Crossbow1", Sound("mechassault_2/weapons/crossbow_lvl1.ogg")},
{"MA2_Weapon.Crossbow2", Sound("mechassault_2/weapons/crossbow_lvl2.ogg")},
{"MA2_Weapon.Crossbow3", Sound("mechassault_2/weapons/crossbow_lvl3.ogg")},
{"MA2_Weapon.Flame1", Sound("mechassault_2/weapons/flamer_lvl1.ogg")},
{"MA2_Weapon.Flame2", Sound("mechassault_2/weapons/flamer_lvl2.ogg")},
{"MA2_Weapon.Flame3", Sound("mechassault_2/weapons/flamer_lvl3.ogg")},
{"MA2_Weapon.Gauss1", Sound("mechassault_2/weapons/gauss_lvl1.ogg")},
{"MA2_Weapon.Gauss2", Sound("mechassault_2/weapons/gauss_lvl2.ogg")},
{"MA2_Weapon.Gauss3", Sound("mechassault_2/weapons/gauss_lvl3.ogg")},
{"MA2_Weapon.Hammer1", Sound("mechassault_2/weapons/hammer_lvl1.ogg")},
{"MA2_Weapon.Hammer2", Sound("mechassault_2/weapons/hammer_lvl2.ogg")},
{"MA2_Weapon.Hammer3", Sound("mechassault_2/weapons/hammer_lvl3.ogg")},
{"MA2_Weapon.Javelin1", Sound("mechassault_2/weapons/javelin_lvl1.ogg")},
{"MA2_Weapon.Javelin2", Sound("mechassault_2/weapons/javelin_lvl2.ogg")},
{"MA2_Weapon.Javelin3", Sound("mechassault_2/weapons/javelin_lvl3.ogg")},
{"MA2_Weapon.Laser1", Sound("mechassault_2/weapons/laser_lvl1.ogg")},
{"MA2_Weapon.Laser2", Sound("mechassault_2/weapons/laser_lvl2.ogg")},
{"MA2_Weapon.Laser3", Sound("mechassault_2/weapons/laser_lvl3.ogg")},
{"MA2_Weapon.Machinegun1", Sound("mechassault_2/weapons/machinegun_lvl1.ogg")},
{"MA2_Weapon.Machinegun2", Sound("mechassault_2/weapons/machinegun_lvl2.ogg")},
{"MA2_Weapon.Machinegun3", Sound("mechassault_2/weapons/machinegun_lvl3.ogg")},
{"MA2_Weapon.Mortar1", Sound("mechassault_2/weapons/mortar_lvl1.ogg")},
{"MA2_Weapon.Mortar2", Sound("mechassault_2/weapons/mortar_lvl2.ogg")},
{"MA2_Weapon.Mortar3", Sound("mechassault_2/weapons/mortar_lvl3.ogg")},
{"MA2_Weapon.PlasmaPPC1", Sound("mechassault_2/weapons/ppc_lvl3.ogg")},
{"MA2_Weapon.PlasmaPPC2", Sound("mechassault_2/weapons/ppc_lvl3.ogg")},
{"MA2_Weapon.PlasmaPPC3", Sound("mechassault_2/weapons/ppc_lvl3.ogg")},
{"MA2_Weapon.PPC1", Sound("mechassault_2/weapons/ppc_lvl1.ogg")},
{"MA2_Weapon.PPC2", Sound("mechassault_2/weapons/ppc_lvl2.ogg")},
{"MA2_Weapon.PPC3", Sound("mechassault_2/weapons/ppc_lvl3.ogg")},
{"MA2_Weapon.PPCChargeLoop", {Sound("mechassault_2/weapons/ppc_charge_loop_1.ogg"), Sound("mechassault_2/weapons/ppc_charge_loop_2.ogg")}, CHAN_AUTO},
{"MA2_Weapon.PPCCharging", {Sound("mechassault_2/weapons/ppc_charge.ogg"), Sound("mechassault_2/weapons/ppc_charge_1.ogg"), Sound("mechassault_2/weapons/ppc_charge_2.ogg")}},
{"MA2_Weapon.PulseLaser1", Sound("mechassault_2/weapons/pulse_laser_lvl1.ogg")},
{"MA2_Weapon.PulseLaser2", Sound("mechassault_2/weapons/pulse_laser_lvl2.ogg")},
{"MA2_Weapon.PulseLaser3", Sound("mechassault_2/weapons/pulse_laser_lvl3.ogg")}
}
for _, v in pairs(sounds) do
sound.Add({
name = v[1],
channel = v[3] or CHAN_WEAPON,
volume = 1,
level = 140,
pitch = {95, 110},
sound = v[2]
})
end
sound.Add({
name = "MA2_Weapon.MissileHit",
channel = CHAN_AUTO,
volume = 1,
level = 140,
pitch = {95, 110},
sound = {
Sound("mechassault_2/weapons/explosion_generic_1.ogg"),
Sound("mechassault_2/weapons/explosion_generic_2.ogg"),
Sound("mechassault_2/weapons/explosion_generic_3.ogg"),
Sound("mechassault_2/weapons/explosion_generic_4.ogg")
}
})
sound.Add({
name = "MA2_Weapon.HammerImpact",
channel = CHAN_AUTO,
volume = 1,
level = 90,
pitch = {95, 110},
sound = Sound("mechassault_2/weapons/hammer_impact.ogg")
})
sound.Add({
name = "MA2_Weapon.HammerExplode",
channel = CHAN_AUTO,
volume = 1,
level = 140,
pitch = {95, 110},
sound = Sound("mechassault_2/weapons/hammer_explode.ogg")
})
sound.Add({
name = "MA2_Weapon.MortarHit",
channel = CHAN_AUTO,
volume = 1,
level = 140,
pitch = {95, 110},
sound = {
Sound("mechassault_2/weapons/mortar_impact_1.ogg"),
Sound("mechassault_2/weapons/mortar_impact_2.ogg")
}
})
sound.Add({
name = "MA2_Weapon.LaserHit",
channel = CHAN_AUTO,
volume = 1,
level = 90,
pitch = {75, 90},
sound = Sound("mechassault_2/weapons/laser_impact_mech.ogg")
})
sound.Add({
name = "MA2_Weapon.AutocannonHit",
channel = CHAN_AUTO,
volume = 1,
level = 90,
pitch = {95, 110},
sound = {
Sound("mechassault_2/weapons/bullet_ric_4.ogg"),
Sound("mechassault_2/weapons/bullet_ric_11.ogg"),
Sound("mechassault_2/weapons/bullet_ric_17.ogg"),
Sound("mechassault_2/weapons/bullet_ric_18.ogg")
}
})
sound.Add({
name = "MA2_Weapon.PPCHit",
channel = CHAN_AUTO,
volume = 1,
level = 90,
pitch = {95, 110},
sound = Sound("mechassault_2/weapons/ppc_impact.ogg")
})
|
object_tangible_collection_rock_burning_08 = object_tangible_collection_shared_rock_burning_08:new {
gameObjectType = 8211,}
ObjectTemplates:addTemplate(object_tangible_collection_rock_burning_08, "object/tangible/collection/rock_burning_08.iff") |
--- Call a function the next tick. Optionally provide an object that must be valid when checked with IsValid
--- If the IsValid returns false then the callback wont be executed.
---@param callback function A function to be called the next tick
---@param objectValidForCallback any|nil An optional object that must be IsValid == true for the callback to be called
function Minigolf.WaitOneTick(callback, objectValidForCallback)
timer.Simple(0, function()
if(objectValidForCallback ~= nil and not IsValid(objectValidForCallback))then
return
end
callback()
end)
end |
--[=[
[Observable] utilities for [Cooldown] class.
@class RxCooldownUtils
]=]
local require = require(script.Parent.loader).load(script)
local RxBinderUtils = require("RxBinderUtils")
local RxCooldownUtils = {}
--[=[
Observes a cooldown
@param cooldownBinder Binder<Cooldown | CooldownClient>
@param parent Instance
@return Observable<Brio<Cooldown | CooldownClient>>
]=]
function RxCooldownUtils.observeCooldownBrio(cooldownBinder, parent)
return RxBinderUtils.observeBoundChildClassBrio(cooldownBinder, parent)
end
return RxCooldownUtils |
-- スプライトレンダラーモジュール
local SpriteRenderer = {}
-- 初期化
function SpriteRenderer:initializeSpriteRenderer(spriteSheet)
-- プライベート
self._spriteRenderer = {}
-- スプライトシート
self._spriteRenderer.spriteSheet = spriteSheet
end
-- スプライトの取得
function SpriteRenderer:getSpriteQuad(name)
return self._spriteRenderer.spriteSheet.quad[name]
end
-- スプライトのサイズの取得
function SpriteRenderer:getSpriteSize(name)
local quad = self:getSpriteQuad(name)
if quad == nil then return 0, 0 end
local _, __, w, h = quad:getViewport()
return w, h
end
-- スプライトの描画
function SpriteRenderer:drawSprite(name, x, y)
x = x or 0
y = y or 0
self._spriteRenderer.spriteSheet:draw(name, math.ceil(x), math.ceil(y))
end
-- スプライトバッチへ追加
function SpriteRenderer:addSpriteToBatch(spriteBatch, name, x, y)
spriteBatch:add(self:getSpriteQuad(name), math.ceil(x), math.ceil(y))
end
return SpriteRenderer
|
m = Map("mosdns")
m.title = translate("MosDNS")
m.description = translate("MosDNS is a 'programmable' DNS forwarder.")
m:section(SimpleSection).template = "mosdns/mosdns_status"
s = m:section(TypedSection, "mosdns")
s.addremove = false
s.anonymous = true
enable = s:option(Flag, "enabled", translate("Enable"))
enable.rmempty = false
redirect = s:option(Flag, "redirect", translate("Enable DNS Redirect"))
redirect.rmempty = false
autoconf = s:option(Flag, "autoconf", translate("Enable AutoConfiguration"))
autoconf.description = translate("Turning it on will make the necessary adjustments to other plug-in settings.")
autoconf.rmempty = false
return m
|
-- Generated By protoc-gen-lua Do not Edit
local protobuf = require "protobuf"
module('BseShop_pb', package.seeall)
local BUYPRICE = protobuf.Descriptor();
local BUYPRICE_PRICE_FIELD = protobuf.FieldDescriptor();
local BUYPRICE_VALIDTIMES_FIELD = protobuf.FieldDescriptor();
local SHOPDATA = protobuf.Descriptor();
local SHOPDATA_ID_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_TYPE_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_INFO_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_PROPINFOID_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_LEVEL_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_GOLDTYE_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_BUYPRICES_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_BANDED_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_DISCOUNT_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_SELL_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_HOT_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_LIMITCOUNT_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_LIMITGROUP_FIELD = protobuf.FieldDescriptor();
local SHOPDATA_SHOPID_FIELD = protobuf.FieldDescriptor();
local BSESHOP = protobuf.Descriptor();
local BSESHOP_SHOPS_FIELD = protobuf.FieldDescriptor();
BUYPRICE_PRICE_FIELD.name = "price"
BUYPRICE_PRICE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BuyPrice.price"
BUYPRICE_PRICE_FIELD.number = 1
BUYPRICE_PRICE_FIELD.index = 0
BUYPRICE_PRICE_FIELD.label = 1
BUYPRICE_PRICE_FIELD.has_default_value = false
BUYPRICE_PRICE_FIELD.default_value = 0
BUYPRICE_PRICE_FIELD.type = 5
BUYPRICE_PRICE_FIELD.cpp_type = 1
BUYPRICE_VALIDTIMES_FIELD.name = "validTimes"
BUYPRICE_VALIDTIMES_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BuyPrice.validTimes"
BUYPRICE_VALIDTIMES_FIELD.number = 2
BUYPRICE_VALIDTIMES_FIELD.index = 1
BUYPRICE_VALIDTIMES_FIELD.label = 1
BUYPRICE_VALIDTIMES_FIELD.has_default_value = false
BUYPRICE_VALIDTIMES_FIELD.default_value = 0
BUYPRICE_VALIDTIMES_FIELD.type = 5
BUYPRICE_VALIDTIMES_FIELD.cpp_type = 1
BUYPRICE.name = "BuyPrice"
BUYPRICE.full_name = ".com.xinqihd.sns.gameserver.proto.BuyPrice"
BUYPRICE.nested_types = {}
BUYPRICE.enum_types = {}
BUYPRICE.fields = {BUYPRICE_PRICE_FIELD, BUYPRICE_VALIDTIMES_FIELD}
BUYPRICE.is_extendable = false
BUYPRICE.extensions = {}
SHOPDATA_ID_FIELD.name = "id"
SHOPDATA_ID_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.id"
SHOPDATA_ID_FIELD.number = 1
SHOPDATA_ID_FIELD.index = 0
SHOPDATA_ID_FIELD.label = 1
SHOPDATA_ID_FIELD.has_default_value = false
SHOPDATA_ID_FIELD.default_value = ""
SHOPDATA_ID_FIELD.type = 9
SHOPDATA_ID_FIELD.cpp_type = 9
SHOPDATA_TYPE_FIELD.name = "type"
SHOPDATA_TYPE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.type"
SHOPDATA_TYPE_FIELD.number = 2
SHOPDATA_TYPE_FIELD.index = 1
SHOPDATA_TYPE_FIELD.label = 1
SHOPDATA_TYPE_FIELD.has_default_value = false
SHOPDATA_TYPE_FIELD.default_value = 0
SHOPDATA_TYPE_FIELD.type = 13
SHOPDATA_TYPE_FIELD.cpp_type = 3
SHOPDATA_INFO_FIELD.name = "info"
SHOPDATA_INFO_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.info"
SHOPDATA_INFO_FIELD.number = 3
SHOPDATA_INFO_FIELD.index = 2
SHOPDATA_INFO_FIELD.label = 1
SHOPDATA_INFO_FIELD.has_default_value = false
SHOPDATA_INFO_FIELD.default_value = ""
SHOPDATA_INFO_FIELD.type = 9
SHOPDATA_INFO_FIELD.cpp_type = 9
SHOPDATA_PROPINFOID_FIELD.name = "propInfoId"
SHOPDATA_PROPINFOID_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.propInfoId"
SHOPDATA_PROPINFOID_FIELD.number = 4
SHOPDATA_PROPINFOID_FIELD.index = 3
SHOPDATA_PROPINFOID_FIELD.label = 1
SHOPDATA_PROPINFOID_FIELD.has_default_value = false
SHOPDATA_PROPINFOID_FIELD.default_value = ""
SHOPDATA_PROPINFOID_FIELD.type = 9
SHOPDATA_PROPINFOID_FIELD.cpp_type = 9
SHOPDATA_LEVEL_FIELD.name = "level"
SHOPDATA_LEVEL_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.level"
SHOPDATA_LEVEL_FIELD.number = 5
SHOPDATA_LEVEL_FIELD.index = 4
SHOPDATA_LEVEL_FIELD.label = 1
SHOPDATA_LEVEL_FIELD.has_default_value = false
SHOPDATA_LEVEL_FIELD.default_value = 0
SHOPDATA_LEVEL_FIELD.type = 5
SHOPDATA_LEVEL_FIELD.cpp_type = 1
SHOPDATA_GOLDTYE_FIELD.name = "goldTye"
SHOPDATA_GOLDTYE_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.goldTye"
SHOPDATA_GOLDTYE_FIELD.number = 6
SHOPDATA_GOLDTYE_FIELD.index = 5
SHOPDATA_GOLDTYE_FIELD.label = 1
SHOPDATA_GOLDTYE_FIELD.has_default_value = false
SHOPDATA_GOLDTYE_FIELD.default_value = 0
SHOPDATA_GOLDTYE_FIELD.type = 13
SHOPDATA_GOLDTYE_FIELD.cpp_type = 3
SHOPDATA_BUYPRICES_FIELD.name = "buyPrices"
SHOPDATA_BUYPRICES_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.buyPrices"
SHOPDATA_BUYPRICES_FIELD.number = 7
SHOPDATA_BUYPRICES_FIELD.index = 6
SHOPDATA_BUYPRICES_FIELD.label = 3
SHOPDATA_BUYPRICES_FIELD.has_default_value = false
SHOPDATA_BUYPRICES_FIELD.default_value = {}
SHOPDATA_BUYPRICES_FIELD.message_type = BUYPRICE
SHOPDATA_BUYPRICES_FIELD.type = 11
SHOPDATA_BUYPRICES_FIELD.cpp_type = 10
SHOPDATA_BANDED_FIELD.name = "banded"
SHOPDATA_BANDED_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.banded"
SHOPDATA_BANDED_FIELD.number = 8
SHOPDATA_BANDED_FIELD.index = 7
SHOPDATA_BANDED_FIELD.label = 1
SHOPDATA_BANDED_FIELD.has_default_value = false
SHOPDATA_BANDED_FIELD.default_value = false
SHOPDATA_BANDED_FIELD.type = 8
SHOPDATA_BANDED_FIELD.cpp_type = 7
SHOPDATA_DISCOUNT_FIELD.name = "discount"
SHOPDATA_DISCOUNT_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.discount"
SHOPDATA_DISCOUNT_FIELD.number = 9
SHOPDATA_DISCOUNT_FIELD.index = 8
SHOPDATA_DISCOUNT_FIELD.label = 1
SHOPDATA_DISCOUNT_FIELD.has_default_value = true
SHOPDATA_DISCOUNT_FIELD.default_value = 100
SHOPDATA_DISCOUNT_FIELD.type = 13
SHOPDATA_DISCOUNT_FIELD.cpp_type = 3
SHOPDATA_SELL_FIELD.name = "sell"
SHOPDATA_SELL_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.sell"
SHOPDATA_SELL_FIELD.number = 10
SHOPDATA_SELL_FIELD.index = 9
SHOPDATA_SELL_FIELD.label = 1
SHOPDATA_SELL_FIELD.has_default_value = false
SHOPDATA_SELL_FIELD.default_value = false
SHOPDATA_SELL_FIELD.type = 8
SHOPDATA_SELL_FIELD.cpp_type = 7
SHOPDATA_HOT_FIELD.name = "hot"
SHOPDATA_HOT_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.hot"
SHOPDATA_HOT_FIELD.number = 11
SHOPDATA_HOT_FIELD.index = 10
SHOPDATA_HOT_FIELD.label = 1
SHOPDATA_HOT_FIELD.has_default_value = false
SHOPDATA_HOT_FIELD.default_value = 0
SHOPDATA_HOT_FIELD.type = 5
SHOPDATA_HOT_FIELD.cpp_type = 1
SHOPDATA_LIMITCOUNT_FIELD.name = "limitCount"
SHOPDATA_LIMITCOUNT_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.limitCount"
SHOPDATA_LIMITCOUNT_FIELD.number = 12
SHOPDATA_LIMITCOUNT_FIELD.index = 11
SHOPDATA_LIMITCOUNT_FIELD.label = 1
SHOPDATA_LIMITCOUNT_FIELD.has_default_value = false
SHOPDATA_LIMITCOUNT_FIELD.default_value = 0
SHOPDATA_LIMITCOUNT_FIELD.type = 5
SHOPDATA_LIMITCOUNT_FIELD.cpp_type = 1
SHOPDATA_LIMITGROUP_FIELD.name = "limitGroup"
SHOPDATA_LIMITGROUP_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.limitGroup"
SHOPDATA_LIMITGROUP_FIELD.number = 13
SHOPDATA_LIMITGROUP_FIELD.index = 12
SHOPDATA_LIMITGROUP_FIELD.label = 1
SHOPDATA_LIMITGROUP_FIELD.has_default_value = false
SHOPDATA_LIMITGROUP_FIELD.default_value = 0
SHOPDATA_LIMITGROUP_FIELD.type = 5
SHOPDATA_LIMITGROUP_FIELD.cpp_type = 1
SHOPDATA_SHOPID_FIELD.name = "shopId"
SHOPDATA_SHOPID_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData.shopId"
SHOPDATA_SHOPID_FIELD.number = 14
SHOPDATA_SHOPID_FIELD.index = 13
SHOPDATA_SHOPID_FIELD.label = 1
SHOPDATA_SHOPID_FIELD.has_default_value = false
SHOPDATA_SHOPID_FIELD.default_value = 0
SHOPDATA_SHOPID_FIELD.type = 5
SHOPDATA_SHOPID_FIELD.cpp_type = 1
SHOPDATA.name = "ShopData"
SHOPDATA.full_name = ".com.xinqihd.sns.gameserver.proto.ShopData"
SHOPDATA.nested_types = {}
SHOPDATA.enum_types = {}
SHOPDATA.fields = {SHOPDATA_ID_FIELD, SHOPDATA_TYPE_FIELD, SHOPDATA_INFO_FIELD, SHOPDATA_PROPINFOID_FIELD, SHOPDATA_LEVEL_FIELD, SHOPDATA_GOLDTYE_FIELD, SHOPDATA_BUYPRICES_FIELD, SHOPDATA_BANDED_FIELD, SHOPDATA_DISCOUNT_FIELD, SHOPDATA_SELL_FIELD, SHOPDATA_HOT_FIELD, SHOPDATA_LIMITCOUNT_FIELD, SHOPDATA_LIMITGROUP_FIELD, SHOPDATA_SHOPID_FIELD}
SHOPDATA.is_extendable = false
SHOPDATA.extensions = {}
BSESHOP_SHOPS_FIELD.name = "shops"
BSESHOP_SHOPS_FIELD.full_name = ".com.xinqihd.sns.gameserver.proto.BseShop.shops"
BSESHOP_SHOPS_FIELD.number = 1
BSESHOP_SHOPS_FIELD.index = 0
BSESHOP_SHOPS_FIELD.label = 3
BSESHOP_SHOPS_FIELD.has_default_value = false
BSESHOP_SHOPS_FIELD.default_value = {}
BSESHOP_SHOPS_FIELD.message_type = SHOPDATA
BSESHOP_SHOPS_FIELD.type = 11
BSESHOP_SHOPS_FIELD.cpp_type = 10
BSESHOP.name = "BseShop"
BSESHOP.full_name = ".com.xinqihd.sns.gameserver.proto.BseShop"
BSESHOP.nested_types = {}
BSESHOP.enum_types = {}
BSESHOP.fields = {BSESHOP_SHOPS_FIELD}
BSESHOP.is_extendable = false
BSESHOP.extensions = {}
BseShop = protobuf.Message(BSESHOP)
BuyPrice = protobuf.Message(BUYPRICE)
ShopData = protobuf.Message(SHOPDATA)
_G.BSESHOP_PB_BSESHOP = BSESHOP
_G.BUYPRICE_PB_BUYPRICE = BUYPRICE
_G.SHOPDATA_PB_SHOPDATA = SHOPDATA
|
--[[
Name: cl_npcs.lua
-----------------------------------------------------------------
-- @package VrZn - Custom Gamemode (SRP BASE)
-- @author Nodge
-- @build Beta 1
-----------------------------------------------------------------
]]--
GM.NPC = (GAMEMODE or GM).NPC or {}
GM.NPC.m_tblNPCRegister = (GAMEMODE or GM).NPC.m_tblNPCRegister or {}
function GM.NPC:LoadNPCs()
GM:PrintDebug( 0, "->LOADING NPCs" )
local foundFiles, foundFolders = file.Find( GM.Config.GAMEMODE_PATH.. "core/npcs/*.lua", "LUA" )
GM:PrintDebug( 0, "\tFound ".. #foundFiles.. " files." )
for k, v in pairs( foundFiles ) do
GM:PrintDebug( 0, "\tLoading ".. v )
include( GM.Config.GAMEMODE_PATH.. "core/npcs/".. v )
end
GM:PrintDebug( 0, "->NPCs LOADED" )
end
function GM.NPC:Register( tblNPC )
self.m_tblNPCRegister[tblNPC.UID] = tblNPC
if tblNPC.RegisterDialogEvents then
tblNPC:RegisterDialogEvents()
end
end
function GM.NPC:GetNPCMeta( strNPCUID )
return self.m_tblNPCRegister[strNPCUID]
end
function GM.NPC:Initialize()
for k, v in pairs( self.m_tblNPCRegister ) do
if v.Initialize then v:Initialize() end
end
end |
local util = require 'lspconfig.util'
local bin_name = 'marksman'
local cmd = { bin_name, 'server' }
return {
default_config = {
cmd = cmd,
filetypes = { 'markdown' },
root_dir = function(fname)
local root_files = { '.marksman.toml' }
return util.root_pattern(unpack(root_files))(fname) or util.find_git_ancestor(fname)
end,
},
docs = {
description = [[
https://github.com/artempyanykh/marksman
Marksman is a Markdown LSP server providing completion, cross-references, diagnostics, and more.
Marksman works on MacOS, Linux, and Windows and is distributed as a self-contained binary for each OS.
Pre-built binaries can be downloaded from https://github.com/artempyanykh/marksman/releases
]],
default_config = {
root_dir = [[root_pattern(".git", ".marksman.toml")]],
},
},
}
|
resource_manifest_version "44febabe-d386-4d18-afbe-5e627f4af937"
description "ESX Inventory HUD"
version "1.1"
ui_page "html/ui.html"
client_scripts {
"@es_extended/locale.lua",
"client/main.lua",
"client/trunk.lua",
"client/glovebox.lua",
"client/property.lua",
"client/player.lua",
"locales/cs.lua",
"locales/en.lua",
"locales/fr.lua",
"config.lua"
}
server_scripts {
"@es_extended/locale.lua",
"server/main.lua",
"locales/cs.lua",
"locales/en.lua",
"locales/fr.lua",
"config.lua"
}
files {
"html/ui.html",
"html/css/ui.css",
"html/css/jquery-ui.css",
"html/js/inventory.js",
"html/js/config.js",
-- JS LOCALES
"html/locales/cs.js",
"html/locales/en.js",
"html/locales/fr.js",
-- IMAGES
"html/img/*.png",
"html/img/items/*.png",
}
|
function fix_local_links(link)
if not string.find("://",link.target) then
link.target = string.gsub(link.target,"%.md$",".html")
link.target = string.gsub(link.target,"%.md#(.*)$",".html#%1")
end
return link
end
local first_header = true
local my_title = nil
function find_title(header)
if first_header == true then
if header.level == 1 then
my_title = header.content
end
first_header = false
end
return header
end
function do_metadata(m)
if m['title'] == nil and m['pagetitle'] == nil then
m['pagetitle'] = my_title
end
return m
end
return {{Link = fix_local_links, Header = find_title},
{Meta = do_metadata}}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.