diff --git a/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs index 73c05e052b6..64c002b609f 100644 --- a/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs +++ b/Content.Client/DeltaV/Overlays/UltraVisionOverlay.cs @@ -23,22 +23,29 @@ public UltraVisionOverlay() _ultraVisionShader = _prototypeManager.Index("UltraVision").Instance().Duplicate(); } + protected override bool BeforeDraw(in OverlayDrawArgs args) + { + if (_playerManager.LocalEntity is not { Valid: true } player + || !_entityManager.HasComponent(player)) + { + return false; + } + + return base.BeforeDraw(in args); + } + protected override void Draw(in OverlayDrawArgs args) { - if (ScreenTexture == null) + if (ScreenTexture is null) return; - if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} player) - return; - if (!_entityManager.HasComponent(player)) - return; - - _ultraVisionShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + _ultraVisionShader.SetParameter("SCREEN_TEXTURE", ScreenTexture); var worldHandle = args.WorldHandle; var viewport = args.WorldBounds; worldHandle.SetTransform(Matrix3.Identity); worldHandle.UseShader(_ultraVisionShader); worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); // important - as of writing, construction overlay breaks without this } } diff --git a/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs index b89ffd15263..828ca9e5215 100644 --- a/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs +++ b/Content.Client/DeltaV/Overlays/UltraVisionSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.DeltaV.CCVars; using Robust.Client.Graphics; using Robust.Shared.Configuration; +using Robust.Shared.Player; namespace Content.Client.DeltaV.Overlays; @@ -9,6 +10,7 @@ public sealed partial class UltraVisionSystem : EntitySystem { [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ISharedPlayerManager _playerMan = default!; private UltraVisionOverlay _overlay = default!; @@ -18,6 +20,8 @@ public override void Initialize() SubscribeLocalEvent(OnUltraVisionInit); SubscribeLocalEvent(OnUltraVisionShutdown); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); Subs.CVar(_cfg, DCCVars.NoVisionFilters, OnNoVisionFiltersChanged); @@ -26,11 +30,23 @@ public override void Initialize() private void OnUltraVisionInit(EntityUid uid, UltraVisionComponent component, ComponentInit args) { - if (!_cfg.GetCVar(DCCVars.NoVisionFilters)) + if (uid == _playerMan.LocalEntity && !_cfg.GetCVar(DCCVars.NoVisionFilters)) _overlayMan.AddOverlay(_overlay); } private void OnUltraVisionShutdown(EntityUid uid, UltraVisionComponent component, ComponentShutdown args) + { + if (uid == _playerMan.LocalEntity) + _overlayMan.RemoveOverlay(_overlay); + } + + private void OnPlayerAttached(EntityUid uid, UltraVisionComponent component, LocalPlayerAttachedEvent args) + { + if (!_cfg.GetCVar(DCCVars.NoVisionFilters)) + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, UltraVisionComponent component, LocalPlayerDetachedEvent args) { _overlayMan.RemoveOverlay(_overlay); } diff --git a/Content.Client/Nyanotrasen/Overlays/DogVisionOverlay.cs b/Content.Client/Nyanotrasen/Overlays/DogVisionOverlay.cs index 95cfc683e09..01fa35fc609 100644 --- a/Content.Client/Nyanotrasen/Overlays/DogVisionOverlay.cs +++ b/Content.Client/Nyanotrasen/Overlays/DogVisionOverlay.cs @@ -23,22 +23,29 @@ public DogVisionOverlay() _dogVisionShader = _prototypeManager.Index("DogVision").Instance().Duplicate(); } + protected override bool BeforeDraw(in OverlayDrawArgs args) + { + if (_playerManager.LocalEntity is not { Valid: true } player + || !_entityManager.HasComponent(player)) + { + return false; + } + + return base.BeforeDraw(in args); + } + protected override void Draw(in OverlayDrawArgs args) { - if (ScreenTexture == null) + if (ScreenTexture is null) return; - if (_playerManager.LocalPlayer?.ControlledEntity is not {Valid: true} player) - return; - if (!_entityManager.HasComponent(player)) - return; - - _dogVisionShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + _dogVisionShader.SetParameter("SCREEN_TEXTURE", ScreenTexture); var worldHandle = args.WorldHandle; var viewport = args.WorldBounds; worldHandle.SetTransform(Matrix3.Identity); worldHandle.UseShader(_dogVisionShader); worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); // important - as of writing, construction overlay breaks without this } } diff --git a/Content.Client/Nyanotrasen/Overlays/DogVisionSystem.cs b/Content.Client/Nyanotrasen/Overlays/DogVisionSystem.cs index 2da90e877ed..b52d23f1958 100644 --- a/Content.Client/Nyanotrasen/Overlays/DogVisionSystem.cs +++ b/Content.Client/Nyanotrasen/Overlays/DogVisionSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.DeltaV.CCVars; using Robust.Client.Graphics; using Robust.Shared.Configuration; +using Robust.Shared.Player; namespace Content.Client.Nyanotrasen.Overlays; @@ -9,6 +10,7 @@ public sealed partial class DogVisionSystem : EntitySystem { [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly ISharedPlayerManager _playerMan = default!; private DogVisionOverlay _overlay = default!; @@ -18,6 +20,8 @@ public override void Initialize() SubscribeLocalEvent(OnDogVisionInit); SubscribeLocalEvent(OnDogVisionShutdown); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); Subs.CVar(_cfg, DCCVars.NoVisionFilters, OnNoVisionFiltersChanged); @@ -26,11 +30,23 @@ public override void Initialize() private void OnDogVisionInit(EntityUid uid, DogVisionComponent component, ComponentInit args) { - if (!_cfg.GetCVar(DCCVars.NoVisionFilters)) + if (uid == _playerMan.LocalEntity && !_cfg.GetCVar(DCCVars.NoVisionFilters)) _overlayMan.AddOverlay(_overlay); } private void OnDogVisionShutdown(EntityUid uid, DogVisionComponent component, ComponentShutdown args) + { + if (uid == _playerMan.LocalEntity) + _overlayMan.RemoveOverlay(_overlay); + } + + private void OnPlayerAttached(EntityUid uid, DogVisionComponent component, LocalPlayerAttachedEvent args) + { + if (!_cfg.GetCVar(DCCVars.NoVisionFilters)) + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, DogVisionComponent component, LocalPlayerDetachedEvent args) { _overlayMan.RemoveOverlay(_overlay); } diff --git a/Resources/Audio/Lobby/Patricia_Taxxon_-_Chipshop.ogg b/Resources/Audio/Lobby/Patricia_Taxxon_-_Chipshop.ogg new file mode 100644 index 00000000000..6ac7c01e7fb Binary files /dev/null and b/Resources/Audio/Lobby/Patricia_Taxxon_-_Chipshop.ogg differ diff --git a/Resources/Audio/Lobby/Patricia_Taxxon_-_Minute.ogg b/Resources/Audio/Lobby/Patricia_Taxxon_-_Minute.ogg new file mode 100644 index 00000000000..7d8dcd596bd Binary files /dev/null and b/Resources/Audio/Lobby/Patricia_Taxxon_-_Minute.ogg differ diff --git a/Resources/Audio/Lobby/attributions.yml b/Resources/Audio/Lobby/attributions.yml index e37196494fb..e5130c53995 100644 --- a/Resources/Audio/Lobby/attributions.yml +++ b/Resources/Audio/Lobby/attributions.yml @@ -58,6 +58,16 @@ copyright: "Flip Flap by X-ceed is licensed under a short but clear license (see flip-flap.txt in this directory) and is free for non-commercial use. It was converted from MOD to WAV using Schism Tracker, in 16 Bit, Non-Interpolated mode, no output equalizer settings, Ramp volume at start of sample enabled. From there it was converted to OGG Vorbis with `ffmpeg -i flip-flap.wav -q 2.9 flip-flap-renc.ogg` (quality scale chosen to match size of the OGG file being replaced). Non-interpolated mode was chosen as the module has a high enough sample rate to balance it out, but seems muffled in other interpolation modes. If 'Ramp volume at start of sample' is not enabled, a clicking phenomenon results." source: "http://aminet.net/package/mods/xceed/Flipflap" +- files: ["Patricia_Taxxon_-_Chipshop.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Chipshop by Patricia Taxxon off the album 'Bicycle'" + source: "https://patriciataxxon.bandcamp.com/track/chipshop" + +- files: ["Patricia_Taxxon_-_Minute.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Minute by Patricia Taxxon off the album 'Aeroplane'" + source: "https://patriciataxxon.bandcamp.com/track/minute" + - files: ["psirius_-_nights_of_orion.xm.ogg"] license: "CC-BY-NC-SA-4.0" copyright: "Nights of Orion by Psirius" diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index bdd407aa45e..f0ad637e49d 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -2148,3 +2148,29 @@ id: 324 time: '2024-04-25T21:27:43.0000000+00:00' url: https://github.com/DeltaV-Station/Delta-v/pull/1137 +- author: adeinitas + changes: + - message: Added a new piece of lobby art and 2 new tracks. + type: Add + id: 325 + time: '2024-04-28T16:15:51.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1143 +- author: TadJohnson00 + changes: + - message: Vulcans now receive a fire selector and vastly improved ergonomics. Ask + your warden for some .30 practice and try it out! + type: Tweak + id: 326 + time: '2024-04-28T20:37:31.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1139 +- author: pissdemon + changes: + - message: Vulpkanins or harpies getting gibbed/meatspiked no longer cures the colorblindness + of vulpkanins/harpies nearby. + type: Fix + - message: Species vision filters no longer break the construction overlay. Vulp + and harpy engineers rejoice! + type: Fix + id: 327 + time: '2024-04-28T22:09:58.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1150 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index cc9963fb286..1ba343f4bde 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, adeinitas, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, nuke-haus, NULL882, NullWanderer, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, Slava0135, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, adeinitas, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, clement-or, Clyybber, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EdenTheLiznerd, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, exincore, exp111, Fahasor, FairlySadPanda, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, Guess-My-Name, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, NullWanderer, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, pigeonpeas, pissdemon, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Psychpsyo, psykzz, PuroSlavKing, PursuitInAshes, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, superjj18, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem diff --git a/Resources/Maps/lighthouse.yml b/Resources/Maps/lighthouse.yml index 22aa1ea8aad..07f4b45b12f 100644 --- a/Resources/Maps/lighthouse.yml +++ b/Resources/Maps/lighthouse.yml @@ -159,7 +159,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADNAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABcQAAAAADNAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAcQAAAAACNAAAAAAANAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAAAcQAAAAABcQAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACUAAAAAAAcQAAAAAAcQAAAAABfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADcQAAAAAAcQAAAAACfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAABXgAAAAABfwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADcQAAAAABcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAACXgAAAAABfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAABfwAAAAAAIAAAAAADIAAAAAABIAAAAAACfwAAAAAAcQAAAAACcQAAAAADUAAAAAAAcQAAAAAAUAAAAAAAcQAAAAACcQAAAAACUAAAAAAAUAAAAAAAcQAAAAAB + tiles: PQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAADNAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABcQAAAAADNAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAAcQAAAAACNAAAAAAANAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAAPQAAAAAAPQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAALwAAAAAAfwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAcQAAAAAAcQAAAAABcQAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACUAAAAAAAcQAAAAAAcQAAAAABfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAADcQAAAAAAcQAAAAACfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAABXgAAAAABfwAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADcQAAAAABcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAACXgAAAAABfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAADIAAAAAABcQAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAABfwAAAAAAIAAAAAADIAAAAAABIAAAAAACfwAAAAAAcQAAAAACcQAAAAADUAAAAAAAcQAAAAAAUAAAAAAAcQAAAAACcQAAAAACUAAAAAAAUAAAAAAAcQAAAAAB version: 6 -3,0: ind: -3,0 @@ -4564,2282 +4564,2466 @@ entities: version: 2 data: tiles: - -1,-3: + -4,-4: + 0: 33791 + -4,-5: + 0: 8191 + -5,-4: + 0: 28668 + -4,-3: + 0: 35067 + -4,-2: + 0: 4092 + -5,-2: + 0: 49151 + -4,-1: + 0: 4095 + -5,-1: + 0: 29115 + -4,0: + 0: 36863 + -3,-4: + 0: 61679 + -3,-3: 0: 65535 + -3,-2: + 0: 45025 + -3,-1: + 0: 44859 + -3,0: + 0: 65521 + -3,-5: + 0: 57462 + -2,-4: + 0: 47551 + -2,-3: + 0: 48123 + -2,-2: + 0: 62392 + -2,-1: + 0: 48011 + -2,-5: + 0: 45755 + -1,-4: + 0: 65519 + -1,-3: + 0: 65278 -1,-2: - 0: 65535 + 0: 61694 -1,-1: 0: 65535 + -1,-5: + 0: 61951 + -1,0: + 0: 65422 + 0,-4: + 0: 65535 0,-3: 0: 65535 0,-2: - 0: 65535 + 0: 61695 0,-1: 0: 65535 + 0,-5: + 0: 63679 + 0,0: + 0: 65327 + 1,-4: + 0: 64427 1,-3: - 0: 65535 + 0: 45746 1,-2: - 0: 65535 + 0: 63666 1,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - -1,-4: - 0: 65535 - 0,-4: - 0: 65535 - 1,-4: - 0: 65535 + 0: 48059 + 1,-5: + 0: 40023 + 2,-4: + 0: 14199 + 2,-2: + 0: 65392 2,-1: 0: 65535 - 2,0: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 + 2,-5: + 0: 15119 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - 2,1: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 53247 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -2,-4: - 0: 65535 - 2,-4: - 0: 65535 + 0: 43688 3,-4: - 0: 65535 + 0: 56733 3,-3: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -4,-5: - 0: 65535 - -4,-6: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-6: - 0: 63351 - -2,-5: - 0: 65535 - -1,-6: - 0: 65262 - -1,-5: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65535 + 0: 61917 + 3,-2: + 0: 65103 + 3,-1: + 0: 32767 3,-5: - 0: 65535 - -5,-5: - 0: 65535 + 0: 56797 + 3,0: + 0: 65522 4,-4: - 0: 65535 + 0: 29595 4,-3: - 0: 65535 + 0: 61183 4,-2: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - -4,0: - 0: 65535 + 0: 61167 + -5,0: + 0: 24575 -4,1: + 0: 53494 + -5,1: 0: 65535 -4,2: + 0: 64797 + -5,2: 0: 65535 -4,3: + 0: 40445 + -5,3: 0: 65535 + -4,4: + 0: 61427 + -3,1: + 0: 47352 -3,2: - 0: 65535 + 0: 65423 -3,3: 0: 65535 + -2,0: + 0: 65520 + -2,1: + 0: 48954 -2,2: - 0: 65535 + 0: 65523 -2,3: 0: 65535 + -1,1: + 0: 32527 + -1,2: + 0: 65520 -1,3: 0: 65535 + -1,4: + 0: 65525 + 0,1: + 0: 65295 + 0,2: + 0: 49073 0,3: - 0: 65535 + 0: 65523 + 1,0: + 0: 65504 + 1,1: + 0: 65411 + 1,2: + 0: 5460 1,3: - 0: 65535 + 0: 56828 + 2,0: + 0: 65520 + 2,1: + 0: 36336 2,2: - 0: 65535 + 0: 36858 2,3: 0: 65535 - 3,2: - 0: 65535 + 2,4: + 0: 65523 + 3,1: + 0: 65262 3,3: - 0: 65535 + 0: 39865 + 3,2: + 0: 52974 + 3,4: + 0: 61420 + 4,0: + 0: 16383 + 4,2: + 0: 62398 + 4,3: + 0: 30583 -8,-4: + 0: 7632 + -9,-4: 0: 65535 -8,-3: - 0: 65535 + 0: 55551 + -9,-3: + 0: 62463 -8,-2: - 0: 65535 + 0: 61661 -8,-1: - 0: 65535 - -7,-4: - 0: 65535 + 0: 4095 + -9,-1: + 0: 2039 + -8,0: + 0: 8191 + -8,-5: + 0: 43695 -7,-3: - 0: 65535 + 0: 64733 -7,-2: - 0: 65535 + 0: 64767 -7,-1: - 0: 65535 + 0: 53213 + -7,-5: + 0: 55738 + -7,-4: + 0: 52972 + -7,0: + 0: 4095 -6,-4: - 0: 65535 + 0: 8179 -6,-3: - 0: 65535 + 0: 56797 -6,-2: - 0: 65535 + 0: 56799 -6,-1: - 0: 65535 - -5,-1: - 0: 65535 - -4,-7: - 0: 65535 + 0: 63345 + -6,-5: + 0: 48059 + -6,0: + 0: 4095 + -5,-3: + 0: 30583 + -5,-5: + 0: 30711 -4,-8: + 0: 64973 + -4,-9: + 0: 56796 + -5,-8: + 0: 65372 + -4,-7: 0: 65535 + -5,-7: + 0: 65423 + -4,-6: + 0: 20425 + -5,-6: + 0: 20253 -3,-8: - 0: 65535 + 0: 61183 + -3,-6: + 0: 4080 + -3,-9: + 0: 65523 -3,-7: - 0: 65535 + 0: 28206 -2,-8: 0: 65535 -2,-7: - 0: 65535 + 0: 16128 + -2,-6: + 0: 9011 + -2,-9: + 0: 16371 -1,-8: 0: 65535 -1,-7: - 0: 65535 + 0: 18190 + -1,-9: + 0: 61427 + -1,-6: + 0: 3268 0,-8: - 0: 65535 + 0: 65520 0,-7: - 0: 2303 + 0: 15 + 0,-6: + 0: 33776 + 0,-9: + 0: 65523 1,-8: - 0: 65535 + 0: 65532 1,-7: + 0: 12031 + 1,-6: + 0: 29950 + 1,-9: 0: 65535 + 2,-6: + 0: 53724 2,-8: - 0: 65535 + 0: 61156 2,-7: - 0: 65535 + 0: 61166 + 2,-9: + 0: 61438 3,-8: - 0: 65535 + 0: 63964 3,-7: 0: 65535 - -8,-5: - 0: 65535 - -7,-5: - 0: 65535 + 3,-6: + 0: 64767 + 3,-9: + 0: 56797 + 4,-8: + 0: 29491 + 4,-7: + 0: 65399 + 4,-6: + 0: 63351 + 4,-5: + 0: 64435 + -8,-8: + 0: 65527 + -8,-9: + 0: 30579 + -9,-8: + 0: 56829 + -8,-7: + 0: 30591 + -9,-7: + 0: 65501 + -8,-6: + 0: 52999 + -9,-6: + 0: 65295 + -9,-5: + 0: 3820 + -7,-8: + 0: 65520 -7,-7: - 0: 65535 + 0: 65407 -7,-6: - 0: 65535 + 0: 44687 + -7,-9: + 0: 65520 -6,-7: - 0: 65535 + 0: 65486 -6,-6: - 0: 65535 - -6,-5: - 0: 65535 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 + 0: 16383 + -6,-8: + 0: 61152 + -6,-9: + 0: 61152 + -5,-9: + 0: 65520 4,-1: - 0: 65535 + 0: 61166 5,-4: - 0: 65535 - 5,-3: - 0: 65535 + 0: 26487 5,-2: - 0: 65535 + 0: 61183 + 5,-5: + 0: 32624 + 5,-3: + 0: 61156 5,-1: - 0: 65535 + 0: 36430 + 5,0: + 0: 11195 6,-4: - 0: 65535 + 0: 62365 6,-3: - 0: 65535 + 0: 29582 6,-2: 0: 65535 6,-1: - 0: 65535 + 0: 3823 + 6,-5: + 0: 57309 + 6,0: + 0: 36863 7,-4: - 0: 65535 + 0: 12415 + 1: 32768 7,-3: - 0: 65535 + 0: 9011 + 1: 34952 7,-2: - 0: 65527 - 7,-1: + 0: 65282 + 7,-5: 0: 65535 + 7,-1: + 0: 8736 + 1: 34944 + 7,0: + 0: 4403 + 1: 51336 + 8,-4: + 0: 1 + 1: 16192 + 8,-2: + 0: 61422 + 4,-9: + 0: 13183 + 5,-7: + 0: 65280 + 1: 4 5,-6: - 0: 65535 - 5,-5: - 0: 65535 + 0: 65295 + 5,-8: + 1: 8192 + 0: 34952 + 5,-9: + 0: 32783 + 1: 9216 + 6,-8: + 0: 61422 + 6,-7: + 0: 65280 6,-6: + 0: 7951 + 6,-9: + 0: 57359 + 7,-8: 0: 65535 - 6,-5: - 0: 65535 + 7,-7: + 0: 65280 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - -8,0: + 0: 2703 + 7,-9: + 0: 61999 + 8,-8: + 0: 883 + 8,-7: + 0: 13056 + 1: 2176 + 8,-6: + 0: 3 + 1: 11904 + 8,-5: + 0: 4368 + 1: 196 + -9,0: 0: 65535 -8,1: - 0: 65535 + 0: 60941 + -9,1: + 0: 61166 -8,2: - 0: 65535 + 0: 55358 + -9,2: + 0: 61166 -8,3: - 0: 65535 - -7,0: + 0: 64397 + -9,3: + 0: 30590 + -8,4: 0: 65535 -7,1: - 0: 65535 + 0: 65519 -7,2: - 0: 65535 + 0: 60975 -7,3: - 0: 65535 - -6,0: - 0: 65535 + 0: 56558 + -7,4: + 0: 65301 -6,1: - 0: 65535 + 0: 48123 -6,2: - 0: 65535 + 0: 48011 -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - 4,0: - 0: 65535 + 0: 47295 + -6,4: + 0: 16376 + -5,4: + 0: 4095 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 + 0: 43690 + 4,4: + 0: 16255 5,1: 0: 65535 5,2: - 0: 65535 + 0: 63743 5,3: 0: 65535 - 6,0: - 0: 65535 + 5,4: + 0: 16143 6,1: - 0: 65535 + 0: 48063 6,2: - 0: 65535 + 0: 40091 6,3: + 0: 48059 + 6,4: + 0: 12043 + 7,1: + 0: 4881 + 7,2: + 0: 30481 + 1: 12 + 7,3: + 0: 21607 + 7,4: + 0: 33655 + 8,0: + 1: 1795 + 0: 34944 + 8,2: + 1: 287 + -4,-12: + 0: 65487 + -4,-13: + 0: 61443 + -5,-12: + 0: 63247 + -4,-11: + 0: 64735 + -4,-10: + 0: 56797 + -5,-11: + 0: 61815 + -5,-10: 0: 65535 - 7,0: - 0: 65535 - -4,-9: - 0: 65535 - -3,-9: - 0: 65535 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: + -3,-12: + 0: 3823 + -3,-10: + 0: 65326 + -3,-13: + 0: 65024 + -3,-11: + 0: 61158 + -2,-12: + 0: 32767 + -2,-11: + 0: 30576 + -2,-10: + 0: 65287 + -2,-13: + 0: 63240 + -1,-12: + 0: 3823 + -1,-10: + 0: 65294 + -1,-13: + 0: 65279 + -1,-11: + 0: 61166 + 0,-12: + 0: 36863 + 0,-11: + 0: 48063 + 0,-10: + 0: 65423 + 0,-13: 0: 65535 - 1,-9: + 1,-12: 0: 65535 - 2,-9: + 1,-11: + 0: 65523 + 1,-10: + 0: 65343 + 1,-13: + 0: 15291 + 2,-12: 0: 65535 - 3,-9: + 2,-11: + 0: 57343 + 2,-10: + 0: 4095 + 2,-13: + 0: 36345 + 3,-12: 0: 65535 + 3,-11: + 0: 32639 + 3,-10: + 0: 33663 + 4,-11: + 0: 18278 + 4,-10: + 0: 65349 0,4: - 0: 65535 + 0: 65520 0,5: - 0: 65535 + 0: 65287 + -1,5: + 0: 47935 0,6: 0: 65535 + -1,6: + 0: 48127 + 0,7: + 0: 4080 + 0,8: + 0: 28919 1,4: - 0: 65535 + 0: 65520 1,5: - 0: 65535 + 0: 65520 1,6: 0: 65535 - 2,4: + 1,7: + 0: 61176 + 1,8: 0: 65535 2,5: - 0: 65535 + 0: 61170 + 2,7: + 0: 63550 2,6: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 + 0: 60942 + 2,8: + 0: 57343 3,6: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: - 0: 65535 - -3,4: - 0: 65535 - -3,5: + 0: 28646 + 3,7: + 0: 63334 + 3,5: + 0: 26214 + 3,8: 0: 65399 - -3,6: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65416 - -2,6: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - -1,6: - 0: 65535 - -7,4: - 0: 65535 - -6,4: - 0: 65535 - -5,4: - 0: 65535 - 4,4: - 0: 65535 4,5: - 0: 65535 + 0: 48059 4,6: + 0: 10226 + 4,7: + 0: 28791 + -4,5: + 0: 26158 + -5,5: 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 5,6: - 0: 65535 - 6,4: - 0: 65535 - 0,7: - 0: 65535 - 1,7: - 0: 65535 - 2,7: - 0: 65535 - 3,7: + -4,6: + 0: 32759 + -5,6: 0: 65535 -4,7: + 0: 30583 + -5,7: + 0: 65535 + -3,4: + 0: 16368 + -3,5: + 0: 62259 + -3,6: 0: 65535 -3,7: + 0: 65399 + -3,8: + 0: 65532 + -2,4: + 0: 4080 + -2,5: + 0: 61440 + -2,6: 0: 65535 -2,7: - 0: 65535 + 0: 65419 -1,7: - 0: 65535 - -8,4: - 0: 65535 - -7,5: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - 4,7: - 0: 65535 + 0: 30579 + -1,8: + 0: 30583 + -9,4: + 0: 65399 -8,5: 0: 65535 + -9,5: + 0: 30591 -8,6: - 0: 65535 + 0: 49151 -8,7: - 0: 65399 - 1: 136 - -7,6: + 0: 29491 + 2: 136 + -9,6: + 0: 63351 + -8,8: 0: 65535 + -9,7: + 0: 63351 + -7,5: + 0: 29439 + -7,6: + 0: 33655 -7,7: - 1: 819 - 0: 64716 + 2: 819 + 0: 35008 + -7,8: + 0: 24025 + -6,5: + 0: 32271 + -6,6: + 0: 65535 -6,7: + 0: 64988 + -6,8: + 0: 1873 + 4,8: + 0: 65287 + 5,5: + 0: 29627 + 5,6: + 0: 14199 + 5,7: + 0: 56823 + 5,8: + 0: 32205 + 6,5: + 0: 65403 + 6,6: + 0: 65295 + 6,7: + 0: 57598 + 6,8: + 0: 50791 + 7,7: + 0: 28673 + 1: 110 + 7,5: + 0: 28258 + 7,6: + 0: 6 + 1: 57856 + 7,8: + 0: 12407 + 1: 32768 + 8,4: + 1: 3 + 0: 4352 + 8,5: 0: 65535 + 8,7: + 1: 12559 -4,8: - 0: 65535 + 0: 61152 + -5,8: + 0: 65520 -4,9: - 0: 65535 + 0: 28399 + -5,9: + 0: 45055 -4,10: - 0: 65535 + 0: 32751 + -5,10: + 0: 32571 -4,11: - 0: 65535 - -3,8: - 0: 65535 + 0: 10239 + -5,11: + 0: 36848 + -4,12: + 0: 9958 -3,9: - 0: 65535 + 0: 36863 -3,10: - 0: 65535 + 0: 52701 -3,11: - 0: 65535 + 0: 4095 + -3,12: + 0: 4095 -2,8: - 0: 65535 + 0: 63344 -2,9: - 0: 65535 + 0: 10111 -2,10: - 0: 65535 + 0: 30583 -2,11: - 0: 65535 - -1,8: - 0: 65535 + 0: 1911 + -2,12: + 0: 52701 -1,9: - 0: 65535 + 0: 65399 -1,10: - 0: 65535 + 0: 14199 -1,11: - 0: 65535 - 0,8: - 0: 65535 + 0: 30711 + -1,12: + 0: 37751 0,9: - 0: 65535 + 0: 65295 0,10: - 0: 65535 + 0: 65319 0,11: - 0: 65535 - 1,8: - 0: 65535 + 0: 30719 1,9: - 0: 65535 + 0: 47935 1,10: - 0: 65535 + 0: 65323 1,11: - 0: 65535 - -8,8: - 0: 65535 + 0: 61695 + 1,12: + 0: 52991 + 2,9: + 0: 46056 + 2,10: + 0: 65163 + 2,11: + 0: 63743 + 2,12: + 0: 5119 + 1: 32768 + 3,9: + 0: 62719 + 3,10: + 0: 61006 + 3,11: + 0: 51404 + 3,12: + 0: 61068 + 4,9: + 0: 47359 + 4,10: + 0: 48027 + 4,11: + 0: 28825 -8,9: - 0: 65535 + 0: 57599 + -9,9: + 0: 61303 -8,10: - 0: 65535 + 0: 48686 + -9,10: + 0: 61166 -8,11: - 0: 65535 - -7,8: - 0: 65535 + 0: 56792 + -9,11: + 0: 52990 + -8,12: + 0: 14801 -7,9: - 0: 65535 + 0: 62719 -7,10: - 0: 65535 + 0: 63239 -7,11: - 0: 65535 - -6,8: - 0: 65535 + 0: 6129 + -7,12: + 0: 4092 -6,9: - 0: 65535 + 0: 7423 -6,10: - 0: 65535 + 0: 48059 -6,11: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -5,11: - 0: 65535 + 0: 12275 + -6,12: + 0: 3003 + -5,12: + 0: 36863 + -12,0: + 0: 47288 + -12,-1: + 0: 16383 + -13,0: + 0: 61937 + -12,1: + 0: 62395 + -13,1: + 0: 18205 + -12,2: + 0: 30576 + -12,3: + 0: 56604 + -13,3: + 0: 29926 + -12,4: + 0: 65501 -11,0: 0: 65535 -11,1: - 0: 65535 + 0: 32759 -11,2: - 0: 65535 + 0: 30583 -11,3: - 0: 65535 + 0: 65407 + -11,-1: + 0: 40415 + -11,4: + 0: 65407 -10,0: 0: 65535 -10,1: - 0: 65535 + 0: 65520 -10,2: - 0: 65535 + 0: 65295 -10,3: + 0: 30529 + -10,4: + 0: 65287 + -10,-1: + 0: 18423 + -12,5: + 0: 26127 + -13,5: + 0: 65134 + -12,6: + 0: 28174 + -13,6: 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -11,4: - 0: 65535 + -12,7: + 0: 20582 + -13,7: + 0: 62395 -11,5: 0: 65535 -11,6: - 0: 65535 + 0: 63351 -11,7: - 0: 65535 - -10,4: - 0: 65535 + 0: 30711 + -11,8: + 0: 65527 -10,5: 0: 65535 -10,6: - 0: 65535 + 0: 22384 -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -11,8: - 0: 65535 + 0: 14100 + -10,8: + 0: 65528 + -9,8: + 0: 30583 + -12,8: + 0: 65520 + -13,8: + 0: 53475 + -12,9: + 0: 51056 + -12,10: + 0: 2033 + -12,11: + 0: 15 + -13,11: + 0: 30495 -11,9: - 0: 65535 + 0: 30711 -11,10: - 0: 65535 - -10,8: - 0: 65535 + 0: 61823 + -11,11: + 0: 65411 + -11,12: + 0: 4095 -10,9: - 0: 65535 + 0: 1904 -10,10: + 0: 61695 + -10,11: + 0: 7630 + -10,12: + 0: 52509 + -9,12: + 0: 57293 + -12,-4: + 0: 26127 + -12,-5: + 0: 61559 + -13,-4: + 0: 3276 + 1: 304 + -12,-3: + 0: 36590 + -13,-3: + 0: 20479 + -12,-2: 0: 65535 - -9,8: - 0: 65535 - -9,9: + -13,-2: 0: 65535 - -9,10: + -13,-1: 0: 65535 - -9,11: + -11,-4: + 0: 57343 + -11,-3: + 0: 52701 + -11,-2: 0: 65535 + -11,-5: + 0: 65524 + -10,-4: + 0: 52735 -10,-3: - 0: 65535 + 0: 57599 -10,-2: - 0: 65535 - -10,-1: - 0: 65535 - -9,-3: - 0: 65535 + 0: 28926 -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -4,12: - 0: 65535 + 0: 29815 -4,13: - 0: 65535 - -3,12: - 0: 65535 + 0: 16383 + -5,13: + 0: 36863 + -4,14: + 0: 64442 + -5,14: + 0: 35771 + -4,15: + 0: 11195 + -5,15: + 0: 34952 + -4,16: + 0: 62395 -3,13: + 0: 4095 + -3,14: 0: 65535 - -2,12: - 0: 65535 + -3,15: + 0: 4095 + -3,16: + 0: 61695 -2,13: - 0: 65535 - -1,12: - 0: 65535 - -8,12: - 0: 65535 + 0: 4095 + -2,14: + 0: 26214 + -2,15: + 0: 60942 + -2,16: + 0: 61670 + -1,13: + 0: 8191 + -1,14: + 0: 53245 + -1,15: + 0: 32717 + 0,12: + 0: 63344 + 0,13: + 0: 311 + 1: 18432 -8,13: - 0: 65535 - -7,12: - 0: 65535 + 0: 36863 + -9,13: + 0: 7645 + -8,14: + 0: 43963 + -9,14: + 0: 3820 + -8,15: + 0: 6399 + -9,15: + 0: 61951 + -8,16: + 0: 14557 -7,13: - 0: 65535 - -6,12: - 0: 65535 + 0: 8191 + -7,14: + 0: 65501 + -7,15: + 0: 8191 + -7,16: + 0: 273 + 1: 16460 -6,13: - 0: 65535 - -5,12: - 0: 65535 - -5,13: - 0: 65535 - -9,12: - 0: 65535 - -9,13: - 0: 65535 - 0,12: - 0: 65535 - 7,1: - 0: 13107 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 5,7: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 2,10: - 0: 65535 - 2,11: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 65535 - 3,10: - 0: 65535 - 3,11: - 0: 65535 - -1,13: - 0: 65535 - 1,12: - 0: 65535 + 0: 4095 + -6,14: + 0: 7645 + -6,15: + 0: 273 + 1: 4 + -5,16: + 0: 49032 + -12,12: + 0: 30464 + -12,13: + 0: 62800 + -12,14: + 0: 28399 + -13,14: + 0: 11878 + -12,15: + 0: 61183 + -13,15: + 0: 59135 + -12,16: + 0: 61166 + -11,13: + 0: 61069 + -11,15: + 0: 46079 + -11,14: + 0: 3822 + -11,16: + 0: 53691 + -10,13: + 0: 65487 + -10,14: + 0: 4095 + -10,15: + 0: 63743 + -10,16: + 0: 61951 + -9,16: + 0: 63743 + 0,14: + 1: 8738 + 0,15: + 1: 8418 + 0,16: + 1: 61719 1,13: - 0: 479 - 2,12: - 0: 65535 + 1: 464 + 1,15: + 1: 241 2,13: - 0: 20223 - 3,12: - 0: 65535 + 1: 20028 + 2,15: + 1: 144 + 2,14: + 1: 128 + 3,14: + 1: 467 + 3,15: + 1: 4369 3,13: - 0: 65535 - 4,8: - 0: 65535 - 4,9: - 0: 65535 - 4,10: - 0: 65535 - 4,11: - 0: 65535 - 5,8: - 0: 65535 + 0: 142 + 1: 36864 + 3,16: + 1: 57619 + 0: 4096 + 4,12: + 0: 65319 + 4,13: + 0: 63 + 1: 12288 + 4,14: + 1: 376 5,9: - 0: 65535 + 0: 57109 5,10: - 0: 65535 + 0: 56529 5,11: - 0: 65535 - 6,8: - 0: 65535 + 0: 57567 + 5,12: + 0: 2054 + 1: 8192 + 6,9: + 0: 30477 6,10: - 0: 65535 + 0: 65520 6,11: 0: 65535 + 6,12: + 0: 65522 + 7,9: + 0: 47891 + 1: 8 7,10: - 0: 65535 + 0: 64442 7,11: + 0: 48059 + 8,8: + 1: 17 + 8,9: + 1: 3 + 0: 65024 + 8,10: + 0: 16142 + 8,11: 0: 65535 - 4,12: - 0: 65535 - 4,13: - 0: 65535 - 5,12: - 0: 65535 - 6,12: - 0: 65535 + 5,13: + 1: 48646 + 5,14: + 1: 10 + 6,13: + 0: 61167 + 6,14: + 0: 238 + 1: 57344 7,12: + 0: 65520 + 7,13: + 0: 30719 + 7,14: + 0: 119 + 1: 61440 + 7,15: + 1: 7 + 8,12: + 0: 30708 + 8,13: + 0: 247 + 1: 61440 + 8,14: + 1: 787 + 4,-13: 0: 65535 - -8,-7: - 0: 65535 - -8,-6: - 0: 65535 - -5,-8: - 0: 65535 - 4,-8: - 0: 65399 - 4,-7: - 0: 65535 - 5,-7: - 0: 65532 - 5,-8: - 0: 60620 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 7,-8: - 0: 65535 - 7,-7: - 0: 65535 - -4,-10: - 0: 65535 - 3,-10: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -9,-4: - 0: 65535 - 4,-10: - 0: 65535 - 4,-9: - 0: 32767 - 5,-10: - 0: 65535 - 5,-9: - 0: 60671 - 6,-10: - 0: 65535 - 6,-9: + 4,-12: + 0: 61152 + 5,-12: + 0: 45938 + 5,-11: + 0: 65528 + 5,-10: + 0: 65295 + 5,-13: + 0: 36863 + 6,-12: + 0: 57599 + 6,-10: + 0: 65390 + 6,-13: 0: 65535 + 6,-11: + 0: 61166 + 7,-12: + 0: 28415 + 7,-11: + 0: 30576 7,-10: + 0: 65287 + 7,-13: 0: 65535 - 7,-9: + 8,-12: + 0: 4095 + 8,-11: 0: 65535 - 8,-8: - 0: 32767 - 8,-7: - 0: 32753 - 8,-6: - 0: 16375 - 8,-5: - 0: 13303 8,-10: 0: 65535 8,-9: - 0: 29183 + 0: 15 + 9,-7: + 1: 1792 + 9,-6: + 1: 9984 + 9,-5: + 1: 26112 + 9,-4: + 1: 10018 + 8,-13: + 0: 65535 + 9,-12: + 0: 1911 + 9,-11: + 0: 5895 9,-10: - 0: 30583 + 0: 1809 + 1: 4 9,-9: - 0: 119 - 8,-4: - 0: 16243 - -12,-5: - 0: 65535 - -11,-5: - 0: 65535 - -10,-5: - 0: 65535 - -9,-5: - 0: 65535 - -8,-10: - 0: 65535 - -8,-9: - 0: 65535 - -7,-10: - 0: 65535 - -7,-9: - 0: 65535 - -6,-10: - 0: 65535 - -6,-9: - 0: 65535 - -5,-10: - 0: 65535 - -5,-9: - 0: 65535 - -15,-1: - 0: 65535 - -14,-1: - 0: 65535 - -14,-2: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -13,-4: - 0: 65020 - -13,-5: - 0: 52474 - -14,0: - 0: 52975 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -8,-8: - 0: 65535 - -7,-8: - 0: 65535 - -6,-8: - 0: 65535 - 6,6: - 0: 65535 - 7,6: - 0: 62463 - 7,7: - 0: 65407 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,7: - 0: 65535 - -12,8: - 0: 65535 - -12,9: - 0: 65535 - -12,10: - 0: 65535 - -12,11: - 0: 35071 - -11,11: - 0: 65535 - -10,11: - 0: 65535 - -4,14: - 0: 65535 - -4,15: - 0: 65535 - -3,14: - 0: 65535 - -3,15: - 0: 65535 - -2,14: - 0: 65535 - -2,15: - 0: 65535 - -1,14: - 0: 65535 - -1,15: - 0: 65535 - -8,14: - 0: 65535 - -8,15: - 0: 65535 - -7,14: - 0: 65535 - -7,15: - 0: 65535 - -6,14: - 0: 65535 - -6,15: - 0: 13107 - -5,14: - 0: 65535 - -5,15: - 0: 52428 - -12,12: - 0: 65528 - -12,13: - 0: 65535 - -12,14: - 0: 65535 - -12,15: - 0: 65535 - -11,12: - 0: 65535 - -11,13: - 0: 65535 - -11,14: - 0: 65535 - -11,15: - 0: 65535 - -10,12: - 0: 65535 - -10,13: - 0: 65535 - -10,14: - 0: 65535 - -10,15: - 0: 65535 - -9,14: - 0: 65535 - -9,15: - 0: 65535 + 0: 7 + 9,-13: + 0: 30513 + 8,-3: + 0: 60544 + 8,-1: + 0: 36078 + 9,-3: + 0: 65392 + 9,-2: + 0: 30583 + 9,-1: + 0: 32759 + 10,-3: + 0: 4096 + 1: 38 + 10,-2: + 0: 4369 + 1: 49352 + 10,-1: + 0: 16 + 1: 8 + 11,-2: + 1: 12339 + 11,-1: + 1: 3 + -12,-8: + 0: 60934 + -13,-8: + 0: 64767 -12,-7: - 0: 65535 + 0: 40390 + -13,-7: + 0: 32767 + 1: 32768 -12,-6: - 0: 63694 + 1: 28738 + -13,-6: + 1: 63724 + -13,-5: + 1: 2186 + 0: 50288 + -12,-9: + 0: 61007 + -11,-8: + 0: 45927 -11,-7: - 0: 65535 + 0: 56792 -11,-6: + 0: 65309 + -11,-9: + 0: 15247 + -10,-8: 0: 65535 -10,-7: 0: 65535 -10,-6: + 0: 47663 + -10,-9: 0: 65535 - -9,-7: - 0: 65535 - -9,-6: + -10,-5: + 0: 3822 + -9,-9: + 0: 56799 + -8,-12: + 0: 61183 + -8,-13: + 0: 45311 + -9,-12: + 0: 61183 + -8,-11: + 0: 61438 + -9,-11: + 0: 65262 + -8,-10: + 0: 40175 + -9,-10: + 0: 65519 + -7,-12: + 0: 48059 + -7,-11: + 0: 62395 + -7,-10: 0: 65535 - -9,-8: + -7,-13: + 0: 45167 + -6,-12: + 0: 65335 + -6,-11: + 0: 65279 + -6,-10: + 0: 65423 + -6,-13: + 0: 28927 + -5,-13: + 0: 62271 + -16,-3: + 1: 24320 + -16,-2: + 0: 4064 + -16,-1: + 0: 239 + 1: 20480 + -16,0: + 1: 143 + -15,-3: + 1: 496 + -15,-2: + 0: 61422 + -15,-1: + 0: 3823 + -15,0: + 1: 60153 + -15,-4: + 1: 746 + -15,-5: + 1: 44556 + 0: 226 + -14,-4: + 1: 8944 + -14,-3: + 1: 626 + -14,-2: + 0: 65467 + -14,-1: + 0: 35775 + -14,0: + 1: 547 + 0: 34944 + -15,-6: + 1: 60138 + -15,-8: + 0: 12 + 1: 16448 + -15,-9: + 0: 52870 + -15,-7: + 0: 1228 + 1: 34816 + -14,-8: + 0: 10015 + -14,-7: 0: 65535 - -13,-7: + -14,-6: + 1: 29699 + -14,-5: + 0: 240 + -14,-9: + 0: 65295 + -13,-9: + 0: 65295 + -15,1: + 1: 8874 + -15,2: + 1: 8742 + -15,3: + 1: 6 + 0: 32768 + -15,4: + 0: 140 + -14,2: 0: 65535 - -13,-6: - 0: 63724 -14,3: - 0: 65535 + 0: 45311 + -14,4: + 0: 447 + 1: 49152 -14,1: - 0: 65228 - -13,3: - 0: 65535 + 1: 512 + 0: 2184 -13,2: - 0: 65535 + 0: 26486 + -13,4: + 0: 1655 + -12,-12: + 0: 46079 + -12,-13: + 0: 64042 + -13,-12: + 0: 48351 + -12,-11: + 0: 64443 + -13,-11: + 0: 48059 -12,-10: - 0: 65535 - -12,-9: + 0: 65339 + -13,-10: + 0: 65163 + -11,-12: + 0: 61695 + -11,-11: 0: 65535 -11,-10: - 0: 65535 - -11,-9: + 0: 65343 + -11,-13: + 0: 62279 + 1: 136 + -10,-12: + 0: 61695 + -10,-11: 0: 65535 -10,-10: + 0: 65295 + -10,-13: + 0: 61440 + 1: 248 + -9,-13: + 0: 61568 + 1: 32 + -15,-12: + 0: 61678 + -15,-10: + 0: 65295 + -15,-13: + 0: 59531 + -15,-11: + 0: 61166 + -14,-12: + 0: 61695 + -14,-11: 0: 65535 - -10,-9: - 0: 65535 - -9,-10: - 0: 65535 - -9,-9: - 0: 65535 - -13,-10: - 0: 65535 - -13,-9: - 0: 65535 - -14,4: - 0: 53247 + -14,-10: + 0: 65295 + -14,-13: + 0: 62122 + -13,-13: + 0: 55483 + -15,6: + 1: 1032 + -15,5: + 1: 32768 + -14,6: + 0: 4076 -14,7: - 0: 65535 - -13,4: - 0: 65535 - -13,6: - 0: 65535 - -13,7: - 0: 65535 - -13,5: - 0: 65535 + 0: 28791 + -16,9: + 1: 43711 + -17,9: + 1: 15 + -16,10: + 1: 4522 + 0: 49152 + -16,11: + 1: 4113 + 0: 52684 + -17,11: + 1: 3840 + -16,12: + 1: 12049 + 0: 12 + -16,8: + 1: 32768 + -15,8: + 1: 29760 + -15,9: + 1: 9287 + 0: 8 + -15,11: + 0: 30583 + -15,10: + 0: 20200 + -15,12: + 0: 7 + 1: 40704 -14,8: - 0: 65535 + 0: 65392 -14,9: - 0: 65535 + 0: 4095 -14,10: - 0: 65535 - -13,8: - 0: 65535 + 0: 30493 + -14,11: + 0: 7 -13,9: - 0: 65535 + 0: 17781 -13,10: - 0: 65535 - -13,11: - 0: 65535 - -4,16: - 0: 65535 + 0: 30533 + -13,12: + 0: 26215 -4,17: - 0: 65535 - -3,16: - 0: 65535 - -8,16: - 0: 65535 - -7,16: - 0: 64511 - -7,17: - 0: 52425 - -7,18: - 0: 52431 - -6,16: - 0: 65520 - -6,17: - 0: 65535 - -6,18: - 0: 65535 - -5,16: - 0: 65532 + 0: 48015 -5,17: - 0: 65535 - -5,18: - 0: 65535 - -12,16: - 0: 65535 - -11,16: - 0: 65535 - -10,16: - 0: 65535 - -9,16: - 0: 65535 - -13,12: - 0: 65535 - -13,13: - 0: 65535 + 0: 47931 -4,18: - 0: 65535 + 0: 65528 + -5,18: + 0: 61152 -4,19: 0: 65535 + -5,19: + 0: 61166 -3,17: 0: 65535 -3,18: - 0: 65535 + 0: 65528 -3,19: 0: 65535 - -2,16: - 0: 65535 - -2,17: - 0: 65535 + -4,20: + 0: 136 + 1: 37168 + -3,20: + 0: 255 + 1: 61440 -2,18: - 0: 65535 + 0: 65520 -2,19: 0: 65535 + -2,17: + 0: 60942 + -1,16: + 0: 12848 + 1: 34944 + -1,17: + 0: 8739 + 1: 34816 -1,18: - 0: 65535 + 0: 13104 + 1: 34952 -1,19: - 0: 65535 - -6,19: - 0: 35580 - -5,19: - 0: 65535 - -6,20: - 0: 8 - -5,20: - 0: 4479 - -4,20: - 0: 40447 - -3,20: - 0: 65535 - -2,20: - 0: 895 + 0: 13107 + 1: 34952 + 0,17: + 1: 61986 + 0,19: + 1: 4593 -1,20: - 0: 50303 - -4,-11: - 0: 65535 - -3,-11: - 0: 65535 - -3,-10: - 0: 65535 - -3,-12: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -2,-10: + 1: 50296 + -8,17: + 0: 13107 + 1: 32904 + -9,17: 0: 65535 - -1,-12: + -8,18: + 0: 13107 + 1: 2184 + -9,18: 0: 65535 - -1,-11: + -8,19: + 0: 819 + 1: 34944 + -9,19: + 0: 4095 + -8,20: + 1: 4375 + -7,17: + 1: 17473 + -7,18: + 1: 17479 + -7,19: + 1: 248 + -6,16: + 0: 48896 + -6,17: + 0: 65528 + -6,18: + 0: 4088 + -6,19: + 1: 35580 + -6,20: + 1: 8 + -13,16: + 0: 64751 + -12,17: + 1: 4368 + 0: 52428 + -12,18: + 1: 4369 + 0: 52428 + -13,18: + 1: 37361 + -12,19: + 1: 1 + 0: 65484 + -13,19: + 1: 4893 + 0: 34816 + -12,20: + 0: 511 + -11,17: + 0: 56796 + -11,18: + 0: 56797 + -11,19: + 0: 3549 + -11,20: + 1: 2190 + -10,17: 0: 65535 - -1,-10: + -10,18: 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-11: - 0: 65535 - 1,-10: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 3,-11: - 0: 65535 - -5,-11: - 0: 65535 - -3,-13: - 0: 65535 - -2,-13: - 0: 65535 - -1,-13: - 0: 65535 - 0,-13: - 0: 65535 - 0,13: - 0: 32767 - 1,-12: - 0: 65535 - 6,5: - 0: 65535 - 7,5: - 0: 65535 - 0,14: - 0: 13107 - 6,9: - 0: 65535 - 5,-11: - 0: 65535 - 7,-11: - 0: 65535 - 9,-7: - 0: 1792 - 8,-1: - 0: 61439 - -8,-11: - 0: 65535 - -15,-2: - 0: 65535 - -13,-3: - 0: 65535 - -14,-6: - 0: 29699 - -15,0: - 0: 60153 - -15,3: - 0: 52366 - -14,-10: - 0: 65535 - -13,-11: - 0: 65535 - -14,5: - 0: 59392 - -14,6: - 0: 65535 - -1,16: - 0: 65535 - -1,17: - 0: 65399 - -10,17: - 0: 65535 - -14,13: - 0: 65535 - -13,15: - 0: 65535 - -3,21: - 0: 62542 - -2,-14: - 0: 53199 - 2: 12288 - 3: 48 - 0,-14: - 0: 65535 - -13,16: - 0: 65535 - 0,16: - 0: 61719 - 0,17: - 0: 61986 - 0,19: - 0: 4593 - 8,4: - 0: 62259 - 8,0: - 0: 36751 - 8,2: - 0: 287 - -15,4: - 0: 3276 - 8,7: - 0: 12559 - 8,6: - 0: 15 - 9,6: - 0: 35 - 9,7: - 0: 8751 - 10,6: - 0: 34952 - 10,7: - 0: 15 - 11,6: - 0: 52367 - 11,7: - 0: 3276 - 9,8: - 0: 57856 - 10,8: - 0: 64512 - 11,8: - 0: 65280 - -4,-12: - 0: 65535 - 2,-12: - 0: 65535 - 4,-11: - 0: 65535 - 5,-12: - 0: 65535 - 6,-11: - 0: 65535 - 7,-12: - 0: 65535 - 9,-6: - 0: 9984 - 8,-11: - 0: 65535 - 9,-11: - 0: 30583 - -6,-11: - 0: 65535 - -6,-12: - 0: 65535 - -5,-12: - 0: 65535 - -15,5: - 0: 32768 - -1,-15: - 0: 65535 - -1,-14: - 0: 65535 - 0,-15: - 0: 65535 - 1,-13: - 0: 65535 - 2,-13: - 0: 65535 - 12,6: - 0: 56719 - 12,7: - 0: 3551 - 13,6: - 0: 56719 - 13,7: - 0: 3551 - 12,8: - 0: 13056 - 13,8: - 0: 34816 - -12,-8: - 0: 65535 - -11,-8: - 0: 65535 - -10,-8: - 0: 65535 - -8,-12: - 0: 65535 - -7,-12: - 0: 65535 - -13,-8: - 0: 65535 - -12,-12: - 0: 65535 - -12,-11: - 0: 65535 - -9,-12: - 0: 65535 - -9,-11: - 0: 65535 - -14,-11: - 0: 65535 - -13,-12: - 0: 65535 - -16,9: - 0: 43711 - -16,10: - 0: 65450 - -16,8: - 0: 32768 - -15,8: - 0: 64712 - -15,9: - 0: 60623 - -15,10: - 0: 65535 - -4,-13: - 0: 65535 - -4,-15: - 0: 65535 - -4,-14: - 0: 65535 - -3,-15: - 0: 32639 - 4: 32768 - 5: 128 - -3,-14: - 0: 32639 - 3: 128 - 2: 32768 - -2,-15: - 0: 53199 - 4: 12288 - 5: 48 - -20,6: - 0: 256 - -20,7: - 0: 30464 - -19,7: - 0: 30464 - -12,-14: - 0: 63232 - -12,-13: - 0: 65535 - -9,-13: - 0: 65440 - -8,-16: - 0: 51200 - -8,-15: - 0: 52974 - -8,-14: - 0: 35052 - -8,-13: - 0: 65535 - -7,-15: - 0: 13119 - 5: 52416 - -7,-14: - 0: 65331 - 5: 204 - -14,-14: - 0: 65280 - -13,-14: - 0: 65280 - -13,-13: - 0: 65535 - -20,8: - 0: 10111 - -20,9: - 0: 30511 - -20,10: - 0: 1919 - -20,11: - 0: 3840 - -19,8: - 0: 10103 - -19,9: - 0: 30511 - -19,10: - 0: 1911 - -19,11: - 0: 3840 - -18,9: - 0: 15 - -18,11: - 0: 3840 - -17,9: - 0: 15 - -17,8: - 0: 9760 - -21,9: - 0: 30511 - -15,-10: - 0: 65535 - -15,-9: - 0: 52991 - -14,-9: - 0: 65535 - 3,-12: - 0: 65535 - 0,15: - 0: 12787 - 1,15: - 0: 241 - 2,15: - 0: 144 - 3,14: - 0: 479 - 3,15: - 0: 4369 - 5,13: - 0: 49151 - 6,13: - 0: 65535 - 7,13: - 0: 65535 - 4,-12: - 0: 65535 - 6,-12: - 0: 65535 - 9,-5: - 0: 26112 - 8,-12: - 0: 65535 - 9,-4: - 0: 10018 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - -7,-11: - 0: 65535 - -15,-8: - 0: 51404 - -15,-7: - 0: 36044 - -14,-8: - 0: 65535 - -14,-7: - 0: 65535 - -15,1: - 0: 41642 - -15,2: - 0: 43694 - -14,2: - 0: 65535 - -15,6: - 0: 35976 - -15,7: - 0: 34952 - -15,11: - 0: 65535 - -14,11: - 0: 35071 - -8,19: - 0: 65527 - -7,19: - 0: 248 - -11,17: - 0: 65535 - -9,18: - 0: 65535 - -9,17: - 0: 65535 - -9,19: - 0: 65535 - -15,13: - 0: 52360 - -15,12: - 0: 40959 + -10,19: + 0: 4095 + -10,20: + 1: 207 + -9,20: + 1: 15 + -16,13: + 1: 18 + 0: 32 + -17,13: + 1: 17632 + -16,14: + 1: 208 + 0: 8750 + -17,14: + 1: 39348 + 0: 64 + -16,15: + 1: 208 + 0: 8738 + -17,15: + 1: 47519 + -16,16: + 0: 8738 + 1: 13 -15,14: - 0: 52991 + 0: 2187 + 1: 560 -15,15: - 0: 65208 + 1: 7864 + -15,16: + 1: 4369 + 0: 3276 + -15,13: + 0: 32768 + 1: 136 + -14,13: + 0: 61454 -14,14: - 0: 65535 + 0: 53247 -14,12: - 0: 65528 - -13,14: - 0: 65535 + 0: 60928 + -14,15: + 0: 57582 + -14,16: + 0: 58622 + -13,13: + 0: 26214 + -8,23: + 1: 1103 + -9,23: + 1: 8749 + 0: 2 + -7,23: + 1: 13 + 0: 2 -7,21: - 0: 57344 + 1: 57344 + -7,22: + 1: 8736 -6,21: - 0: 61713 + 0: 4096 + 1: 57617 -6,23: - 0: 15 - -6,22: - 0: 34816 + 1: 7 + 0: 8 -5,21: - 0: 12561 + 1: 12561 + -6,22: + 1: 34816 -5,22: - 0: 4881 + 1: 4881 -5,23: - 0: 4369 + 1: 4369 + -5,20: + 1: 4464 + -5,24: + 1: 4353 -4,21: - 0: 61952 + 1: 61952 + -3,21: + 1: 62542 -3,22: - 0: 8802 + 1: 8802 -3,23: - 0: 8738 + 1: 8738 + -3,24: + 1: 8742 -2,21: - 0: 4096 + 1: 4096 + -2,20: + 1: 608 -1,21: - 0: 62540 + 1: 46156 + 0: 16384 -1,23: - 0: 53060 + 1: 53060 -1,22: - 0: 50244 + 1: 50244 + -1,24: + 1: 17604 + 0,21: + 1: 61440 -4,-16: - 0: 65535 - -3,-16: - 0: 65535 - -2,-16: - 0: 65535 - -1,-16: - 0: 65535 - 0,-16: - 0: 65535 - 1,-16: - 0: 65535 - 1,-15: - 0: 65535 - 1,-14: - 0: 65535 - 2,-16: - 0: 65535 - 2,-15: - 0: 65535 - 2,-14: - 0: 65535 - 3,-16: - 0: 65535 - 3,-15: - 0: 65535 - 3,-14: - 0: 65535 - 3,-13: - 0: 65535 - -15,16: - 0: 65535 - -14,16: - 0: 65535 - 1,16: - 0: 61712 - 1,19: - 0: 3314 - 2,16: - 0: 61440 - 2,19: - 0: 496 - 2,17: - 0: 4 - 3,16: - 0: 61715 - 3,17: - 0: 4369 - 3,18: - 0: 12545 - 3,19: - 0: 12561 - 9,4: - 0: 29216 - 9,5: - 0: 13107 - 8,1: - 0: 8 - 9,0: - 0: 32639 - 9,2: - 0: 11811 - 9,1: - 0: 8194 - 8,10: - 0: 65535 - 8,9: - 0: 65523 - 9,9: - 0: 65394 - 9,10: - 0: 65535 - 9,11: - 0: 65535 - -7,-16: - 0: 65224 - -7,-13: - 0: 65535 - -6,-16: - 0: 65535 - -6,-15: - 0: 34959 - 5: 30576 - -6,-14: - 5: 119 - 0: 65416 - -6,-13: - 0: 65535 + 0: 65520 + -4,-17: + 0: 30576 -5,-16: - 0: 65535 + 0: 65528 + -4,-15: + 0: 48051 -5,-15: 0: 65535 + -4,-14: + 0: 48059 -5,-14: 0: 65535 - -5,-13: - 0: 65535 - -6,-17: - 0: 56524 - -6,-18: - 0: 34952 - -5,-18: - 0: 65280 - -5,-17: - 0: 65535 - -4,-18: - 0: 65512 - -4,-17: + -3,-16: 0: 65535 - -3,-18: - 0: 65534 + -3,-15: + 0: 13104 + 3: 128 + 4: 32768 + -3,-14: + 0: 13107 + 5: 128 + 6: 32768 -3,-17: - 0: 65535 - -2,-18: - 0: 65467 + 0: 61457 + 1: 238 + -2,-16: + 0: 47935 + -2,-15: + 3: 48 + 4: 12288 + 0: 34952 + -2,-14: + 5: 48 + 6: 12288 + 0: 32904 -2,-17: + 0: 47308 + 1: 51 + -1,-16: + 0: 65518 + -1,-15: 0: 65535 - -2,-19: - 0: 43760 - -1,-19: - 0: 4096 - -1,-18: - 0: 65395 + -1,-14: + 0: 61695 -1,-17: + 0: 61183 + 0,-16: 0: 65535 - 0,-18: - 0: 65534 - 0,-17: - 0: 65535 - 1,-18: - 0: 65535 - 1,-17: - 0: 65535 - 2,-17: - 0: 65535 - 2,-18: - 0: 65535 - 3,-19: - 0: 13056 - 3,-18: - 0: 65527 - 3,-17: - 0: 65535 - 4,-17: - 0: 12593 - 4,-16: - 0: 65535 - 4,-15: - 0: 65535 - 4,-14: - 0: 65535 - 4,-13: - 0: 65535 - 5,-16: - 0: 65523 - 5,-15: - 0: 65535 - 5,-14: - 0: 65535 - 5,-13: - 0: 65535 - 6,-16: - 0: 28928 - 6,-15: - 0: 65399 - 6,-14: - 0: 65535 - 6,-13: - 0: 65535 - 7,-14: - 0: 65523 - 7,-13: - 0: 65535 - 8,12: - 0: 65535 - 8,13: - 0: 65535 - 9,12: - 0: 65535 - 9,13: - 0: 30579 - 0,21: - 0: 61440 - 1,21: - 0: 61696 - 2,21: - 0: 45056 - 2,22: - 0: 1 - 2,20: - 0: 128 - 3,20: - 0: 4369 - 3,21: - 0: 4369 - -9,20: - 0: 15 - -4,24: - 0: 29218 - -4,25: - 0: 15 - -3,25: - 0: 15 - -3,24: - 0: 8742 - -2,25: - 0: 12 - -2,24: - 0: 32768 - -1,25: - 0: 7 - -1,24: - 0: 17604 - -6,25: - 0: 8 - -5,24: - 0: 4353 - -5,25: - 0: 15 - -12,17: - 0: 65535 - -14,15: - 0: 65535 - -14,17: - 0: 53247 - 7,15: - 0: 7 - 7,14: - 0: 65535 - 11,4: - 0: 52224 - 11,5: - 0: 36044 - 11,9: - 0: 65535 - 11,10: - 0: 65407 - 12,4: - 0: 56576 - 12,5: - 0: 36319 - 13,4: - 0: 56576 - 12,9: - 0: 32759 - 12,10: - 0: 63255 - 13,9: - 0: 35064 - 9,14: - 0: 26338 - 9,15: - 0: 11810 - 4,16: - 0: 63488 - 4,17: - 0: 12 - 5,16: - 0: 63624 - 6,16: - 0: 61440 - 6,17: - 0: 8 - 7,16: - 0: 61440 - 8,16: - 0: 61704 - 9,16: - 0: 15907 - 12,3: - 0: 3840 - -11,-12: - 0: 65535 - -10,-12: - 0: 65535 - -15,-12: - 0: 65535 - -15,-11: - 0: 61166 - -14,-12: - 0: 65535 - -11,-13: - 0: 65535 - -10,-13: - 0: 65528 - -15,-13: - 0: 65535 - -14,-13: - 0: 65535 - 1,-19: - 0: 65024 - 2,-19: - 0: 65280 - 4,14: - 0: 383 - 2,14: - 0: 128 - 5,14: - 0: 10 - -14,-3: - 0: 64250 - 9,-12: - 0: 30583 - 8,-3: - 0: 65516 - 8,-2: - 0: 65535 - 10,-3: - 0: 13110 - 10,-2: - 0: 62459 - 10,-1: - 0: 4923 - 11,-2: - 0: 12339 - 11,-1: - 0: 3 - 10,0: - 0: 256 - 7,9: - 0: 65535 - -15,-6: - 0: 60138 - -15,-5: - 0: 44782 - -11,-11: - 0: 65535 - -10,-11: - 0: 65535 - 8,11: - 0: 65535 - 8,-14: - 0: 63280 - 8,-13: - 0: 65535 - 9,-13: - 0: 30513 - -11,-14: - 0: 12288 - -10,-14: - 0: 32768 - -15,-14: - 0: 60416 - 0,-19: - 0: 49152 - 4,-18: - 0: 4352 - 7,8: - 0: 65535 - 6,14: - 0: 61439 - 10,10: - 0: 65535 - 10,11: - 0: 65535 - 10,9: - 0: 61439 - 11,11: - 0: 65535 - 12,11: - 0: 30583 - 13,10: - 0: 63624 - 13,11: - 0: 34952 - 14,10: - 0: 12800 - 8,14: - 0: 787 - 10,12: - 0: 65535 - 10,13: - 0: 9778 - 10,14: - 0: 242 - 10,15: - 0: 256 - 11,12: - 0: 511 - 11,14: - 0: 8948 - 11,15: - 0: 546 - 11,13: - 0: 16384 - 5,17: - 0: 17476 - 8,17: - 0: 25669 - 8,18: - 0: 4 - 10,16: - 0: 9984 - 12,12: - 0: 17535 - 12,14: - 0: 116 - 12,13: - 0: 50244 - 13,12: - 0: 34959 - 13,13: - 0: 63624 - 13,14: - 0: 4 - 14,12: - 0: 28722 - -16,11: - 0: 65535 - -8,17: - 0: 63487 - -8,18: - 0: 32767 - -12,19: - 0: 65535 - -11,19: - 0: 65535 - -11,18: - 0: 65535 - -10,18: + 0,-15: 0: 65535 - -10,19: + 0,-14: + 0: 61695 + 0,-17: 0: 65535 - -16,13: - 0: 50 - -16,14: - 0: 8958 - -16,12: - 0: 12287 - -8,20: - 0: 4375 - -8,23: - 0: 1103 - -7,23: - 0: 15 - -7,22: - 0: 8736 - -16,18: + 1,-16: + 0: 65399 + 1,-15: 0: 65535 - -16,19: + 1,-14: + 0: 13567 + 1,-17: + 0: 18150 + 2,-16: + 0: 30477 + 2,-15: + 0: 30583 + 2,-14: + 0: 45311 + 2,-17: + 0: 54655 + 3,-16: + 0: 28877 + 3,-15: + 0: 2047 + 3,-14: + 0: 47359 + 3,-13: + 0: 2491 + 3,-17: + 0: 55483 + 4,-16: + 0: 14591 + 4,-15: + 0: 57335 + 4,-14: 0: 65535 + -17,16: + 1: 34713 + 0: 2048 -16,17: - 0: 65470 + 1: 52636 + 0: 34 + -17,17: + 1: 4088 + -16,18: + 0: 61986 + 1: 3276 + -17,18: + 0: 62719 + -16,19: + 0: 12531 + 1: 52224 + -17,19: + 0: 62719 + -16,20: + 0: 51 + 1: 65484 -15,17: - 0: 12175 + 1: 12175 -15,18: - 0: 62450 + 1: 49394 + 0: 12288 -15,19: - 0: 53247 + 0: 35004 + 1: 17472 + -15,20: + 1: 62580 + 0: 2184 + -14,18: + 1: 4592 -14,19: - 0: 37361 + 1: 37361 + -14,17: + 0: 238 + 1: 49152 + -14,20: + 1: 12337 + 0: 50112 -13,17: - 0: 14335 - -13,19: - 0: 65501 + 0: 21 + 1: 13312 + -13,20: + 0: 64764 + 1,16: + 1: 61712 + 1,19: + 1: 3314 + 2,16: + 1: 61440 + 2,19: + 1: 496 + 2,17: + 1: 4 + 3,19: + 1: 8465 + 0: 4096 + 3,17: + 1: 4369 + 3,18: + 1: 12545 + 3,20: + 1: 4369 + 4,16: + 1: 30720 + 0: 32768 + 9,7: + 1: 8751 + 9,4: + 1: 25120 + 9,5: + 1: 8738 + 9,6: + 1: 34 + 10,7: + 1: 15 + 10,6: + 1: 34952 + 11,6: + 1: 34959 + 0: 17408 + 11,4: + 0: 17408 + 1: 34816 + 11,5: + 0: 1092 + 1: 34952 + 11,7: + 0: 1092 + 1: 2184 + 12,4: + 0: 21760 + 1: 34952 + 12,5: + 0: 1365 + 1: 34954 + 12,6: + 1: 34959 + 0: 21760 + 12,7: + 0: 1365 + 1: 2186 + 9,0: + 0: 32624 + 8,1: + 1: 8 + 9,2: + 1: 11779 + 0: 32 + 9,1: + 0: 2 + 1: 8192 + 10,0: + 0: 256 10,2: - 0: 36608 + 1: 34560 + 0: 2048 10,3: - 0: 3976 + 1: 1928 + 0: 2048 11,3: - 0: 3840 + 1: 3840 + 12,3: + 1: 36608 -24,8: - 0: 10111 + 0: 1365 + 1: 8746 + -24,7: + 0: 21760 + 1: 8750 + -25,8: + 1: 16057 -24,9: - 0: 30511 + 1: 8751 + 0: 21760 + -25,9: + 1: 48702 -24,10: - 0: 1919 + 0: 1365 + 1: 554 + -25,10: + 1: 6553 -24,11: - 0: 3840 + 1: 3840 + -25,11: + 1: 3601 + 0: 256 -23,8: - 0: 10111 + 0: 1365 + 1: 8746 -23,9: - 0: 30511 + 1: 8751 + 0: 21760 -23,10: - 0: 1919 + 0: 1365 + 1: 554 -23,11: - 0: 3840 + 1: 3840 + -23,7: + 0: 21760 + 1: 8739 -22,8: - 0: 10111 + 0: 1365 + 1: 8746 -22,9: - 0: 30511 + 1: 8751 + 0: 21760 -22,10: - 0: 1919 + 0: 1365 + 1: 554 -22,11: - 0: 3840 + 1: 3840 + -22,7: + 0: 21760 + 1: 8750 -21,8: - 0: 10111 + 0: 1365 + 1: 8746 + -21,9: + 1: 8751 + 0: 21760 -21,10: - 0: 1919 + 0: 1365 + 1: 554 -21,11: - 0: 3840 - 8,8: - 0: 17 + 1: 3328 + 0: 512 + -21,7: + 0: 21760 + 1: 8739 + -20,8: + 0: 1365 + 1: 8746 + -20,9: + 1: 8751 + 0: 21760 + -20,10: + 0: 1365 + 1: 554 + -20,11: + 1: 3840 + 9,9: + 0: 13056 + 1: 34818 + 9,10: + 0: 26115 + 1: 8 + 9,11: + 0: 36852 + 9,8: + 1: 57856 + 9,12: + 0: 238 + 1: 61440 + 10,10: + 1: 15 + 0: 47872 + 10,11: + 0: 12273 + 10,9: + 0: 2222 + 1: 8192 + 10,12: + 0: 102 + 1: 61440 + 10,8: + 0: 32768 + 11,8: + 0: 61440 + 11,9: + 0: 2047 + 11,10: + 1: 3143 + 0: 4352 + 11,11: + 0: 53213 + 11,12: + 1: 497 + 12,8: + 0: 4096 + 12,9: + 0: 12561 + 1: 2244 + 12,10: + 0: 1 + 1: 34576 + 12,11: + 0: 13107 + 13,4: + 0: 21760 + 1: 34816 13,5: - 0: 36319 + 0: 1365 + 1: 34954 + 13,6: + 1: 34959 + 0: 21760 + 13,7: + 0: 1365 + 1: 34954 14,4: - 0: 56576 + 0: 21760 + 1: 34816 14,5: - 0: 36319 + 0: 1365 + 1: 34954 14,6: - 0: 56719 + 1: 34959 + 0: 21760 14,7: - 0: 3551 + 0: 1365 + 1: 2186 + 13,8: + 1: 32904 + 0: 2048 15,4: - 0: 56576 + 0: 21760 + 1: 34816 15,5: - 0: 36319 + 0: 1365 + 1: 34954 15,6: - 0: 56719 + 1: 34959 + 0: 21760 15,7: - 0: 3551 + 0: 1365 + 1: 2186 + 16,4: + 0: 21760 + 1: 34816 + 16,5: + 0: 1365 + 1: 34954 + 16,6: + 1: 34959 + 0: 21760 + 16,7: + 0: 1365 + 1: 2186 + 13,9: + 1: 35064 + 13,10: + 1: 63616 + 0: 8 14,8: - 0: 3840 + 1: 3840 + 13,11: + 1: 34952 + 14,10: + 1: 12800 + 13,12: + 1: 32911 + 0: 2048 14,11: - 0: 8738 + 0: 2 + 1: 8736 + 14,12: + 1: 28722 15,8: - 0: 1792 - -17,11: - 0: 3840 + 1: 1792 + -12,-14: + 0: 41472 + -13,-14: + 0: 47104 + -11,-14: + 0: 12288 + -10,-14: + 1: 32768 + -8,-15: + 0: 52974 + -8,-14: + 0: 35052 + -8,-16: + 0: 51200 + -7,-16: + 0: 30272 + -7,-15: + 0: 17 + 1: 4352 + 3: 52416 + -7,-14: + 1: 1 + 0: 29968 + 3: 204 + -6,-16: + 0: 65520 + -6,-15: + 3: 30576 + -6,-14: + 3: 119 + 0: 61440 + -6,-17: + 1: 4096 + 0: 52428 + -5,-17: + 0: 61152 + -15,-14: + 0: 34816 + -14,-14: + 0: 41472 + -6,-19: + 1: 32768 + -6,-18: + 1: 8 + 0: 34944 + -5,-19: + 1: 61440 + -5,-18: + 0: 65280 + -4,-19: + 1: 63616 + -4,-18: + 0: 65504 + 1: 8 + -20,7: + 0: 21760 + 1: 8704 + -19,8: + 0: 1365 + 1: 8738 + -19,9: + 1: 8751 + 0: 21760 + -19,10: + 0: 1365 + 1: 546 + -19,11: + 1: 3840 + -19,7: + 0: 21760 + 1: 8704 + -18,9: + 1: 15 + -18,11: + 1: 3840 + -17,8: + 1: 9760 + -20,6: + 1: 256 + -21,6: + 1: 11520 + 0: 512 -24,6: - 0: 12032 - -24,7: - 0: 30510 + 1: 12032 + -25,6: + 1: 7680 + 0: 256 + -25,7: + 1: 39185 -23,6: - 0: 12032 - -23,7: - 0: 30499 + 1: 12032 -22,6: - 0: 12032 - -22,7: - 0: 30510 - -21,6: - 0: 12032 - -21,7: - 0: 30499 - -12,20: - 0: 16383 - -12,21: - 0: 1 + 1: 12032 + -3,-19: + 1: 240 + -3,-18: + 1: 61438 + 0: 4096 + -2,-19: + 1: 10992 + 0: 32768 + -2,-18: + 1: 13107 + 0: 52360 + -1,-19: + 0: 4096 + -1,-18: + 0: 65395 + 0,-18: + 0: 15282 + 0,-19: + 1: 49152 + 1,-19: + 0: 45056 + 1: 512 + 1,-18: + 0: 11194 + 2,-19: + 0: 28672 + 2,-18: + 0: 16247 + 3,-19: + 0: 13056 + 3,-18: + 0: 36295 + 4,-18: + 0: 4352 + 4,-17: + 0: 12593 + 5,-16: + 0: 65523 + 5,-15: + 0: 52700 + 5,-14: + 0: 65535 + 6,-16: + 0: 28928 + 6,-15: + 0: 65399 + 6,-14: + 0: 65535 + 7,-14: + 0: 65523 + 8,-14: + 0: 63280 + 9,13: + 1: 29794 + 9,14: + 1: 18146 + 0: 8192 + 9,15: + 1: 11810 + 9,16: + 1: 7715 + 0: 8192 + 10,14: + 1: 242 + 10,15: + 1: 256 + 10,13: + 1: 9778 + 11,14: + 1: 8916 + 0: 32 + 11,15: + 1: 546 + 11,13: + 1: 16384 + 12,12: + 1: 17528 + 12,14: + 1: 116 + 1,21: + 1: 61696 + 2,21: + 1: 45056 + 2,22: + 1: 1 + 2,20: + 1: 128 + 3,21: + 0: 4096 + 1: 273 -12,22: - 0: 4368 + 1: 4368 -12,23: - 0: 8751 + 0: 1 + 1: 8750 + -13,23: + 1: 12 + -12,24: + 0: 2 + 1: 1 -11,23: - 0: 15 - -11,20: - 0: 2463 - -10,20: - 0: 207 - -10,22: - 0: 4352 + 1: 15 -10,23: - 0: 15 - -9,23: - 0: 8751 - 16,4: - 0: 56576 - 16,5: - 0: 36319 - 16,6: - 0: 56719 - 16,7: - 0: 3551 + 1: 15 + -10,22: + 1: 4352 + -9,24: + 1: 8738 + -4,24: + 1: 29218 + -4,25: + 1: 15 + -5,25: + 1: 14 + 0: 1 + -3,25: + 1: 15 + -2,25: + 1: 12 + -2,24: + 1: 32768 + -1,25: + 1: 3 + 0: 4 + -6,25: + 1: 8 + 4,17: + 1: 12 + 5,16: + 1: 63624 + 5,17: + 1: 17476 + 6,16: + 1: 61440 + 6,17: + 1: 8 + 7,16: + 1: 53248 + 0: 8192 + 8,16: + 1: 61704 + 8,17: + 1: 25669 + 8,18: + 1: 4 + 10,16: + 1: 9984 17,4: - 0: 13282 + 0: 4384 + 1: 8898 17,5: - 0: 36787 + 0: 273 + 1: 36514 17,6: - 0: 49039 + 1: 44687 + 0: 4352 17,7: - 0: 58163 + 0: 8465 + 1: 49698 + 17,3: + 1: 8448 + 0: 512 + 17,8: + 1: 290 + 0: 512 18,4: - 0: 4368 + 0: 16 + 1: 4352 18,5: - 0: 14577 + 0: 16 + 1: 14561 18,6: - 0: 63550 + 1: 59454 + 0: 4096 18,7: - 0: 4369 + 0: 4096 + 1: 273 19,5: - 0: 4352 + 1: 4352 19,6: - 0: 273 + 0: 1 + 1: 272 + 12,13: + 1: 50244 + 13,13: + 0: 4096 + 1: 59528 + 13,14: + 1: 4 16,8: - 0: 3840 - 17,8: - 0: 802 + 1: 3840 16,3: - 0: 3840 - 17,3: - 0: 8960 + 1: 3840 + 15,3: + 1: 3840 13,3: - 0: 3840 + 1: 1792 + 0: 2048 14,3: - 0: 3840 - 15,3: - 0: 3840 + 1: 3840 -26,8: - 0: 37856 + 1: 37856 -26,9: - 0: 58271 - -25,8: - 0: 16057 - -25,9: - 0: 48702 - -25,10: - 0: 6553 - -25,11: - 0: 3857 - -25,6: - 0: 7936 - -25,7: - 0: 39185 - -17,13: - 0: 17632 - -17,14: - 0: 39412 - -17,15: - 0: 47519 - -18,16: - 0: 20036 - -17,16: - 0: 36761 - -17,17: - 0: 65528 - -17,18: - 0: 65535 - -17,19: - 0: 65535 - -18,20: - 0: 65535 - -17,20: - 0: 65535 - -17,21: - 0: 248 - -16,20: - 0: 65535 - -14,20: - 0: 65533 - -14,21: - 0: 12 - -13,21: - 0: 15 - -13,23: - 0: 12 - -13,22: - 0: 17408 - -12,24: - 0: 3 - -9,24: - 0: 8738 - -14,-5: - 0: 240 - 8,5: - 0: 65535 - -12,18: - 0: 65535 - -13,18: - 0: 37361 - -14,24: - 0: 15 - -13,24: - 0: 15 - -13,20: - 0: 65535 - -15,-3: - 0: 61936 - -16,-3: - 0: 24320 - -16,-2: - 0: 65535 - -16,-1: - 0: 24575 - -14,-4: - 0: 41712 - -16,0: - 0: 143 - -16,15: - 0: 8946 - -16,16: - 0: 8751 - -14,18: - 0: 4592 - -6,-19: - 0: 32768 - -5,-19: - 0: 61440 - -4,-19: - 0: 63616 - -3,-19: - 0: 240 + 1: 58271 -18,15: - 0: 50252 + 1: 50252 + -18,16: + 1: 20036 -20,17: - 0: 22350 + 1: 22350 -20,18: - 0: 54653 + 1: 54653 -20,19: - 0: 55133 + 1: 55133 + -20,20: + 1: 36629 -19,17: - 0: 65327 + 1: 65327 -19,18: - 0: 65535 + 1: 1 + 0: 19648 + -19,20: + 1: 20465 -19,19: - 0: 65535 + 0: 52300 -18,17: - 0: 65524 + 1: 65524 -18,18: - 0: 65535 + 0: 18288 -18,19: - 0: 65535 + 0: 30535 + -17,20: + 0: 255 + 1: 65280 + -14,24: + 1: 13 + 0: 2 + -13,24: + 1: 15 -16,21: - 0: 116 - -15,20: - 0: 64764 - -20,20: - 0: 36629 + 1: 116 + -17,21: + 1: 248 + -13,22: + 1: 17408 -20,21: - 0: 12 - -19,20: - 0: 20479 + 1: 12 -19,21: - 0: 199 + 1: 199 + -18,20: + 1: 65520 -18,21: - 0: 244 - -15,-4: - 0: 746 + 1: 244 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6856,6 +7040,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -6875,7 +7074,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -6889,10 +7088,10 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -6904,10 +7103,10 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 6666.982 - 0 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -6920,7 +7119,7 @@ entities: temperature: 293.15 moles: - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -8307,9 +8506,10 @@ entities: parent: 100 - type: DeviceList devices: - - 15328 - 15362 - 10688 + - 15078 + - 20869 - uid: 17378 components: - type: Transform @@ -8338,6 +8538,7 @@ entities: - 10819 - 6219 - 6125 + - 20869 - uid: 17385 components: - type: Transform @@ -13442,11 +13643,6 @@ entities: - type: Transform pos: -5.5,43.5 parent: 100 - - uid: 5678 - components: - - type: Transform - pos: -18.5,40.5 - parent: 100 - uid: 8923 components: - type: Transform @@ -24817,11 +25013,21 @@ entities: - type: Transform pos: -39.5,-7.5 parent: 100 + - uid: 15328 + components: + - type: Transform + pos: -22.5,-59.5 + parent: 100 - uid: 15329 components: - type: Transform pos: 5.5,51.5 parent: 100 + - uid: 15343 + components: + - type: Transform + pos: -22.5,-58.5 + parent: 100 - uid: 15442 components: - type: Transform @@ -43129,27 +43335,6 @@ entities: - type: Transform pos: -8.5,-8.5 parent: 100 -- proto: ClosetL3VirologyFilled - entities: - - uid: 4361 - components: - - type: Transform - pos: -17.5,43.5 - parent: 100 - - type: ContainerContainer - containers: - EntityStorageComponent: !type:Container - showEnts: False - occludes: True - ents: [] - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetLegalFilled entities: - uid: 815 @@ -44441,6 +44626,13 @@ entities: - type: Transform pos: -51.475582,40.437363 parent: 100 +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 20865 + components: + - type: Transform + pos: -17.628553,43.528503 + parent: 100 - proto: ClothingNeckScarfStripedRed entities: - uid: 18618 @@ -46243,12 +46435,6 @@ entities: parent: 100 - proto: CryogenicSleepUnit entities: - - uid: 1471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,40.5 - parent: 100 - uid: 3057 components: - type: Transform @@ -46267,11 +46453,11 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,6.5 parent: 100 - - uid: 11793 + - uid: 5678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,42.5 + rot: -1.5707963267948966 rad + pos: -5.5,41.5 parent: 100 - proto: CryogenicSleepUnitSpawnerLateJoin entities: @@ -46288,6 +46474,25 @@ entities: - type: Transform pos: 48.5,47.5 parent: 100 +- proto: CryoPod + entities: + - uid: 15149 + components: + - type: Transform + pos: -20.5,43.5 + parent: 100 + - uid: 15150 + components: + - type: Transform + pos: -20.5,41.5 + parent: 100 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 20864 + components: + - type: Transform + pos: -18.691053,43.826614 + parent: 100 - proto: CultAltarSpawner entities: - uid: 9448 @@ -46554,6 +46759,13 @@ entities: - type: Transform pos: 3.5,24.5 parent: 100 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 20867 + components: + - type: Transform + pos: -19.5,42.5 + parent: 100 - proto: DefaultStationBeaconCryosleep entities: - uid: 1193 @@ -47047,6 +47259,12 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 100 + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,40.5 + parent: 100 - uid: 6864 components: - type: Transform @@ -47353,12 +47571,6 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-43.5 parent: 100 - - uid: 15151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 100 - uid: 15237 components: - type: Transform @@ -49993,23 +50205,6 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-42.5 parent: 100 - - uid: 15149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,41.5 - parent: 100 - - uid: 15150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,41.5 - parent: 100 - - uid: 15264 - components: - - type: Transform - pos: -8.5,40.5 - parent: 100 - uid: 15280 components: - type: Transform @@ -50536,6 +50731,12 @@ entities: - type: Transform pos: -12.5,62.5 parent: 100 + - uid: 4361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,40.5 + parent: 100 - uid: 9150 components: - type: Transform @@ -50646,12 +50847,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-27.5 parent: 100 - - uid: 15078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,41.5 - parent: 100 - uid: 15279 components: - type: Transform @@ -50777,6 +50972,11 @@ entities: - type: Transform pos: -38.5,-7.5 parent: 100 + - uid: 6124 + components: + - type: Transform + pos: -7.5,40.5 + parent: 100 - uid: 7365 components: - type: Transform @@ -50867,11 +51067,6 @@ entities: - type: Transform pos: 18.5,-27.5 parent: 100 - - uid: 15074 - components: - - type: Transform - pos: -5.5,41.5 - parent: 100 - uid: 16726 components: - type: Transform @@ -51332,6 +51527,11 @@ entities: parent: 100 - proto: DrinkHotCoco entities: + - uid: 15151 + components: + - type: Transform + pos: -18.222303,43.403503 + parent: 100 - uid: 18740 components: - type: Transform @@ -55733,6 +55933,15 @@ entities: - 17214 - 17222 - 17215 + - uid: 20869 + components: + - type: Transform + pos: -18.5,39.5 + parent: 100 + - type: DeviceNetwork + deviceLists: + - 17376 + - 17383 - proto: Fireplace entities: - uid: 324 @@ -56494,6 +56703,15 @@ entities: - type: Transform pos: 33.5,31.5 parent: 100 +- proto: GasFilter + entities: + - uid: 15321 + components: + - type: Transform + pos: -18.5,41.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - proto: GasMinerNitrogen entities: - uid: 13933 @@ -56617,6 +56835,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 1228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 1311 components: - type: Transform @@ -56625,6 +56851,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 1513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 2129 components: - type: Transform @@ -57169,14 +57403,6 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' - - uid: 6159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,37.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6183 components: - type: Transform @@ -57728,6 +57954,13 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9209 + components: + - type: Transform + pos: -18.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 9211 components: - type: Transform @@ -58018,6 +58251,22 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,37.5 + parent: 100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,40.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 15376 components: - type: Transform @@ -58763,6 +59012,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,40.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 1479 components: - type: Transform @@ -58962,10 +59219,11 @@ entities: - uid: 3067 components: - type: Transform - pos: -19.5,41.5 + rot: 1.5707963267948966 rad + pos: -19.5,42.5 parent: 100 - type: AtmosPipeColor - color: '#990000FF' + color: '#0099FFFF' - uid: 3085 components: - type: Transform @@ -62751,22 +63009,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' - - uid: 6160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,38.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 6161 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,39.5 + pos: -18.5,41.5 parent: 100 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#0099FFFF' - uid: 6172 components: - type: Transform @@ -69256,6 +69506,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11795 components: - type: Transform @@ -70678,6 +70936,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 15074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15114 components: - type: Transform @@ -70892,38 +71158,6 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,40.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,41.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,42.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,39.5 - parent: 100 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15324 components: - type: Transform @@ -70996,13 +71230,6 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15343 - components: - - type: Transform - pos: -14.5,42.5 - parent: 100 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 15344 components: - type: Transform @@ -76450,10 +76677,11 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6124 + - uid: 6162 components: - type: Transform - pos: -17.5,37.5 + rot: 3.141592653589793 rad + pos: -17.5,42.5 parent: 100 - type: AtmosPipeColor color: '#0055CCFF' @@ -77749,6 +77977,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#990000FF' + - uid: 15264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15273 components: - type: Transform @@ -77788,6 +78024,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,41.5 + parent: 100 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15327 components: - type: Transform @@ -78531,6 +78775,14 @@ entities: targetPressure: 300 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,42.5 + parent: 100 + - type: AtmosPipeColor + color: '#0099FFFF' - uid: 12147 components: - type: Transform @@ -78614,6 +78866,11 @@ entities: - type: Transform pos: -55.5,13.5 parent: 100 + - uid: 20870 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 100 - proto: GasThermoMachineFreezerEnabled entities: - uid: 3219 @@ -78624,6 +78881,23 @@ entities: parent: 100 - type: GasThermoMachine targetTemperature: 253.15 + - uid: 20861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,40.5 + parent: 100 + - type: GasThermoMachine + targetTemperature: 150 + - type: AtmosPipeColor + color: '#0099FFFF' +- proto: GasThermoMachineHeater + entities: + - uid: 20871 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 100 - proto: GasVentPump entities: - uid: 16 @@ -79688,11 +79962,14 @@ entities: parent: 100 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15328 + - uid: 15078 components: - type: Transform - pos: -18.5,43.5 + pos: -17.5,43.5 parent: 100 + - type: DeviceNetwork + deviceLists: + - 17376 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15334 @@ -82248,11 +82525,6 @@ entities: - type: Transform pos: -32.5,21.5 parent: 100 - - uid: 1228 - components: - - type: Transform - pos: -18.5,39.5 - parent: 100 - uid: 1264 components: - type: Transform @@ -90623,11 +90895,6 @@ entities: parent: 100 - proto: MedicalBed entities: - - uid: 1513 - components: - - type: Transform - pos: -18.5,40.5 - parent: 100 - uid: 1587 components: - type: Transform @@ -104245,12 +104512,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,19.5 parent: 100 - - uid: 6162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,39.5 - parent: 100 - uid: 6269 components: - type: Transform @@ -107141,6 +107402,13 @@ entities: - type: Transform pos: 2.5,21.5 parent: 100 +- proto: SignCryogenicsMed + entities: + - uid: 20866 + components: + - type: Transform + pos: -16.5,43.5 + parent: 100 - proto: SignDanger entities: - uid: 12648 @@ -107195,12 +107463,6 @@ entities: rot: 1.5707963267948966 rad pos: -40.5,7.5 parent: 100 - - uid: 9209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,43.5 - parent: 100 - proto: SignDirectionalDorms entities: - uid: 7324 @@ -107727,6 +107989,19 @@ entities: rot: 3.141592653589793 rad pos: -28.5,64.5 parent: 100 + - uid: 20860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,36.5 + parent: 100 +- proto: SmartFridge + entities: + - uid: 20868 + components: + - type: Transform + pos: -18.5,39.5 + parent: 100 - proto: SMESBasic entities: - uid: 5009 @@ -113445,6 +113720,18 @@ entities: - type: Transform pos: -48.5,66.5 parent: 100 + - uid: 20862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,43.5 + parent: 100 + - uid: 20863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,43.5 + parent: 100 - proto: TableStone entities: - uid: 13417 diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index 5dba7d27f1e..92eda08624b 100644 --- a/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -2,7 +2,7 @@ name: Vulcan parent: BaseWeaponRifle id: WeaponRifleVulcan - description: One of the first firearms modified for space usage, this rifle was purpose-designed to punch holes in Cargonian "combat mechs." Uses .30 rifle ammo. + description: One of the heaviest small arms to grace Security's armory, this rifle is a modern take on a classic, informally dubbed the "Right Arm of the Free World". Uses .30 rifle ammo. components: - type: Sprite sprite: DeltaV/Objects/Weapons/Guns/Rifles/vulcan.rsi @@ -12,10 +12,15 @@ - state: mag-0 map: ["enum.GunVisualLayers.Mag"] - type: Gun - fireRate: 2 + minAngle: 1 + maxAngle: 24 + angleIncrease: 6 + angleDecay: 24 + fireRate: 5 selectedMode: SemiAuto availableModes: - SemiAuto + - FullAuto - type: ChamberMagazineAmmoProvider - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 9981bb8bd92..b7c95126b85 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -607,6 +607,10 @@ name: ghost-role-information-Shiva-name description: ghost-role-information-Shiva-description rules: ghost-role-information-Shiva-rules + requirements: # Delta V - No raiders + - !type:DepartmentTimeRequirement + department: Security + time: 14400 # DeltaV - 4 hours - type: GhostTakeoverAvailable # DeltaV - type: InteractionPopup successChance: 0.5 # spider is mean @@ -779,6 +783,10 @@ allowMovement: true name: ghost-role-information-punpun-name description: ghost-role-information-punpun-description + requirements: # Delta V - No raiders + - !type:RoleTimeRequirement + role: JobBartender + time: 14400 # Delta V - 4 hours - type: GhostTakeoverAvailable - type: Butcherable butcheringType: Spike diff --git a/Resources/Prototypes/SoundCollections/lobby.yml b/Resources/Prototypes/SoundCollections/lobby.yml index 263ea386450..d596925f914 100644 --- a/Resources/Prototypes/SoundCollections/lobby.yml +++ b/Resources/Prototypes/SoundCollections/lobby.yml @@ -13,8 +13,10 @@ - /Audio/Lobby/melcom-cyberpunk.it.ogg - /Audio/Lobby/midori_-_conundrum_final.it.ogg - /Audio/Lobby/mod.flip-flap.ogg + - /Audio/Lobby/Patricia_Taxxon_-_Minute.ogg + - /Audio/Lobby/Patricia_Taxxon_-_Chipshop.ogg - /Audio/Lobby/psirius_-_nights_of_orion.xm.ogg - #- /Audio/Lobby/psirius_-_nymphs_of_the_forest.mptm.ogg + - /Audio/Lobby/psirius_-_nymphs_of_the_forest.mptm.ogg - /Audio/Lobby/superposition.ogg - /Audio/Lobby/hackers.ogg - /Audio/Lobby/every_light_is_blinking_at_once.ogg diff --git a/Resources/Prototypes/lobbyscreens.yml b/Resources/Prototypes/lobbyscreens.yml index bd5fe50e99d..4471c334fcb 100644 --- a/Resources/Prototypes/lobbyscreens.yml +++ b/Resources/Prototypes/lobbyscreens.yml @@ -37,3 +37,7 @@ - type: lobbyBackground id: TechnologicalProgress background: /Textures/LobbyScreens/DeltaV__Technological_Progress_by_threlo.png + +- type: lobbyBackground + id: OperatorPlush + background: /Textures/LobbyScreens/OperatorPlush.webp diff --git a/Resources/Textures/LobbyScreens/OperatorPlush.webp b/Resources/Textures/LobbyScreens/OperatorPlush.webp new file mode 100644 index 00000000000..96de6600305 Binary files /dev/null and b/Resources/Textures/LobbyScreens/OperatorPlush.webp differ diff --git a/Resources/Textures/LobbyScreens/attributions.yml b/Resources/Textures/LobbyScreens/attributions.yml index c0866c3374a..406461b7d92 100644 --- a/Resources/Textures/LobbyScreens/attributions.yml +++ b/Resources/Textures/LobbyScreens/attributions.yml @@ -47,3 +47,8 @@ license: "Custom" copyright: "CC-BY-NC-ND-4.0 / threlo on discord / @threlo on itaku" source: "https://linktr.ee/threlo" + +- files: ["OperatorPlush.webp"] + license: "CC-BY-4.0" + copyright: "Commission adapted to fit the format by Leonardo_DaBepis on discord / @leonardo-dabepis on Tumblr. Template was filled in by Adeinitas @ DeltaV" + source: "https://leonardo-dabepis.tumblr.com/"